From 47c00995706380f9827a7e98bd242ffc6e4a7f01 Mon Sep 17 00:00:00 2001 From: Brian Curtis <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Wed, 17 Apr 2024 15:59:48 -0400 Subject: [PATCH 01/16] Add bash linting to CI. Cleanup .sh scripts a bit. Address .sh bugs. Adds -v Verbose option. (#2218) Remove nowarn Intel compiler flag (#2225) * UFSWM - Add bash linting to CI: - uses superlinter to check for consistent bash code writing - Cleans up .sh scripts to comply with superlinter - Cleans up .sh scripts to be more consistent, easier to read. - Add's -v verbose option if debugging outputs needed, otherwise simplifies rt.sh run echo's. - Addresses smaller bugs - quota/timeout search logic adjusted. - check for dirs existing (DISKNM, STMP, PTMP) before starting. - adjustments/cleanup to ecflow/rocoto sections - rt.sh will attempt to start ecflow, and only stop ecflow if it started from rt.sh. - fix for issue where run_dir will not delete properly. * FV3: Address compiler warnings * atmos_cubed_sphere: Address compiler warnings. --- .github/workflows/superlinter.yml | 37 + .shellcheckrc | 16 + FV3 | 2 +- build.sh | 24 +- cmake/Intel.cmake | 8 +- stochastic_physics | 2 +- tests/compile.sh | 97 +- tests/default_vars.sh | 3034 +++++++++-------- tests/fv3_conf/compile_slurm.IN_hera | 17 +- tests/fv3_conf/fv3_slurm.IN_hera | 22 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_derecho.log | 592 ++-- tests/logs/RegressionTests_gaea.log | 546 ++- tests/logs/RegressionTests_hera.log | 720 ++-- tests/logs/RegressionTests_hercules.log | 725 ++-- tests/logs/RegressionTests_jet.log | 480 ++- tests/logs/RegressionTests_orion.log | 547 ++- tests/logs/RegressionTests_wcoss2.log | 464 ++- tests/module-setup.sh | 22 +- tests/opnReqTest | 2 +- tests/rt.conf | 2 +- tests/rt.sh | 1352 ++++---- tests/rt_utils.sh | 663 ++-- tests/run_compile.sh | 69 +- tests/run_test.sh | 306 +- 27 files changed, 5135 insertions(+), 4710 deletions(-) create mode 100644 .github/workflows/superlinter.yml create mode 100644 .shellcheckrc diff --git a/.github/workflows/superlinter.yml b/.github/workflows/superlinter.yml new file mode 100644 index 0000000000..4b1ffea8d2 --- /dev/null +++ b/.github/workflows/superlinter.yml @@ -0,0 +1,37 @@ +--- +name: Super-Linter + +on: + push: null + pull_request: null + +jobs: + build: + name: Lint + runs-on: ubuntu-latest + + permissions: + contents: read + packages: read + statuses: write + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Super-Linter + uses: super-linter/super-linter@v6.3.0 + env: + LINTER_RULES_PATH: / + DEFAULT_BRANCH: origin/develop + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + FILTER_REGEX_EXCLUDE: .*(tests/fv3_conf/.*|tests/ci/.*|tests/auto/.*|tests/auto-jenkins/.*|tests/opnReqTests/.*|tests/opnReqTest|tests/atparse.bash).* + VALIDATE_BASH: true + BASH_SEVERITY: style + #VALIDATE_GITHUB_ACTIONS: true + #VALIDATE_LUA: true + #VALIDATE_MARKDOWN: true + #VALIDATE_PYTHON_PYLINT: true + #VALIDATE_YAML: true diff --git a/.shellcheckrc b/.shellcheckrc new file mode 100644 index 0000000000..95525eb590 --- /dev/null +++ b/.shellcheckrc @@ -0,0 +1,16 @@ +# Global settings for Shellcheck (https://github.com/koalaman/shellcheck) +enable=all + +external-sources=true + +# Disable variable referenced but not assigned +disable=SC2154 + +# Disable following non-constant source +disable=SC1090 + +# Disable non-existent binary +disable=SC1091 + +# Disable -p -m only applies to deepest directory +disable=SC2174 \ No newline at end of file diff --git a/FV3 b/FV3 index 37e7d4859d..979bcab28f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 37e7d4859db4eb75472091abc650831060037715 +Subproject commit 979bcab28f63b37411698cd9d23d04d0b0fe3a7e diff --git a/build.sh b/build.sh index 6b6e5e1249..a92ee521f2 100755 --- a/build.sh +++ b/build.sh @@ -1,21 +1,29 @@ #!/bin/bash set -eu - -if [[ $(uname -s) == Darwin ]]; then - readonly UFS_MODEL_DIR=$(cd "$(dirname "$(greadlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) +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 - readonly UFS_MODEL_DIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) + 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}" +readonly UFS_MODEL_DIR export CC=${CC:-mpicc} export CXX=${CXX:-mpicxx} export FC=${FC:-mpif90} BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} -mkdir -p ${BUILD_DIR} +mkdir -p "${BUILD_DIR}" -cd ${BUILD_DIR} -cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} +cd "${BUILD_DIR}" +ARR_CMAKE_FLAGS=() +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:-} +OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-1}" \ No newline at end of file diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index 0982761bfe..a18ff15fc2 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -1,6 +1,12 @@ -set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback -fpp -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align") +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback -fpp -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -sox -align array64byte -qno-opt-dynamic-align") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -qno-opt-dynamic-align -sox -fp-model source") +# warning #5462: Global name too long. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 5462") + +# remark #7712: This variable has not been used. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 7712") + if(CMAKE_Platform STREQUAL "derecho.intel") set(CMAKE_Fortran_LINK_FLAGS "-Wl,--copy-dt-needed-entries") endif() diff --git a/stochastic_physics b/stochastic_physics index 7dc4d9ba48..31e4e3e57b 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 7dc4d9ba48dea57f88f4f10091c8c2042105954e +Subproject commit 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a diff --git a/tests/compile.sh b/tests/compile.sh index 3cf536428b..458d985a88 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -7,73 +7,82 @@ function trim { var="${var#"${var%%[![:space:]]*}"}" # remove trailing whitespace characters var="${var%"${var##*[![:space:]]}"}" - echo -n "$var" + echo -n "${var}" } SECONDS=0 -if [[ $(uname -s) == Darwin ]]; then - readonly MYDIR=$(cd "$(dirname "$(greadlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) +uname_s=$(uname -s) +if [[ ${uname_s} == Darwin ]]; then + greadlnk=$(greadlink -f -n "${BASH_SOURCE[0]}" ) + MYDIR=$(cd "$(dirname "${greadlnk}" )" && pwd -P) else - readonly MYDIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) + readlnk=$(readlink -f -n "${BASH_SOURCE[0]}" ) + MYDIR=$(cd "$(dirname "${readlnk}" )" && pwd -P) fi +readonly MYDIR # ---------------------------------------------------------------------- # Parse arguments. readonly ARGC=$# -if [[ $ARGC -lt 2 ]]; then - echo "Usage: $0 MACHINE_ID [ MAKE_OPT [ COMPILE_ID ] [ RT_COMPILER ] [ clean_before ] [ clean_after ] ]" +if [[ ${ARGC} -lt 2 ]]; then + echo "Usage: $0 MACHINE_ID [ MAKE_OPT ] [ COMPILE_ID ] [ RT_COMPILER ] [ clean_before ] [ clean_after ]" echo Valid MACHINE_IDs: - echo $( ls -1 ../cmake/configure_* | sed s:.*configure_::g | sed s:\.cmake:: ) | fold -sw72 + echostuff=$( ls -1 ../cmake/configure_* ) + echostuff=${echostuff/:.*configure_::g} + echostuff=${echostuff/:\.cmake::} + echostuff=$( fold -sw72 <<< "${echostuff}" ) exit 1 else MACHINE_ID=$1 MAKE_OPT=${2:-} - COMPILE_ID=${3:+_$3} + COMPILE_ID=${3:+$3} RT_COMPILER=${4:-intel} clean_before=${5:-YES} clean_after=${6:-YES} fi -BUILD_NAME=fv3${COMPILE_ID} +BUILD_NAME=fv3_${COMPILE_ID} -PATHTR=${PATHTR:-$( cd ${MYDIR}/.. && pwd )} +PATHTR=${PATHTR:-$( cd "${MYDIR}/.." && pwd )} BUILD_DIR=${BUILD_DIR:-$(pwd)/build_${BUILD_NAME}} # ---------------------------------------------------------------------- # Make sure we have reasonable number of threads. -if [[ $MACHINE_ID == derecho ]]; then +if [[ ${MACHINE_ID} == derecho ]]; then BUILD_JOBS=${BUILD_JOBS:-3} fi BUILD_JOBS=${BUILD_JOBS:-8} -hostname +#hostname set +x -if [[ $MACHINE_ID == macosx ]] || [[ $MACHINE_ID == linux ]]; then - source $PATHTR/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER} -else - # Activate lua environment for gaea c5 - if [[ $MACHINE_ID == gaea ]]; then - module reset - fi - # Load fv3 module - module use $PATHTR/modulefiles - modulefile="ufs_${MACHINE_ID}.${RT_COMPILER}" - module load $modulefile - module list -fi +case ${MACHINE_ID} in + macosx|linux) + source "${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}" + ;; + *) + # Activate lua environment for gaea c5 + if [[ ${MACHINE_ID} == gaea ]]; then + module reset + fi + # Load fv3 module + module use "${PATHTR}/modulefiles" + modulefile="ufs_${MACHINE_ID}.${RT_COMPILER}" + module load "${modulefile}" + module list +esac set -x -echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID" +echo "Compiling ${MAKE_OPT} into ${BUILD_NAME}.exe on ${MACHINE_ID}" # set CMAKE_FLAGS based on $MAKE_OPT -CMAKE_FLAGS=$MAKE_OPT +CMAKE_FLAGS=${MAKE_OPT} CMAKE_FLAGS+=" -DMPI=ON" if [[ ${MAKE_OPT} == *-DDEBUG=ON* ]]; then @@ -87,15 +96,11 @@ fi # Check if suites argument is provided or not set +ex -TEST=$( echo $MAKE_OPT | grep -e "-DCCPP_SUITES=" ) -if [[ $? -eq 0 ]]; then - SUITES=$( echo $MAKE_OPT | sed 's/.*-DCCPP_SUITES=//' | sed 's/ .*//' ) - echo "Compiling suites ${SUITES}" -fi +SUITES=$(grep -Po "\-DCCPP_SUITES=\K[^ ]*" <<< "${MAKE_OPT}") +export SUITES set -ex # Valid applications - if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then CMAKE_FLAGS+=" -DMOM6SOLO=ON" fi @@ -104,31 +109,27 @@ if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then CMAKE_FLAGS+=" -DMOM6SOLO=ON" fi -CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") +CMAKE_FLAGS=$(set -e; trim "${CMAKE_FLAGS}") echo "CMAKE_FLAGS = ${CMAKE_FLAGS}" -if [ $clean_before = YES ] ; then - rm -rf ${BUILD_DIR} -fi +[[ ${clean_before} = YES ]] && rm -rf "${BUILD_DIR}" export BUILD_VERBOSE=1 export BUILD_DIR export BUILD_JOBS export CMAKE_FLAGS -bash -x ${PATHTR}/build.sh +bash -x "${PATHTR}/build.sh" -mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe -if [[ $MACHINE_ID == linux ]]; then - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER} ${PATHTR}/tests/modules.${BUILD_NAME} +mv "${BUILD_DIR}/ufs_model" "${PATHTR}/tests/${BUILD_NAME}.exe" +if [[ ${MACHINE_ID} == linux ]]; then + cp "${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}" "${PATHTR}/tests/modules.${BUILD_NAME}" else - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua + cp "${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}.lua" "${PATHTR}/tests/modules.${BUILD_NAME}.lua" fi -if [ $clean_after = YES ] ; then - rm -rf ${BUILD_DIR} -fi +[[ ${clean_after} == YES ]] && rm -rf "${BUILD_DIR}" -elapsed=$SECONDS -echo "Elapsed time $elapsed seconds. Compiling ${CMAKE_FLAGS} finished" -echo "Compile ${COMPILE_ID/#_} elapsed time $elapsed seconds. ${CMAKE_FLAGS}" > compile${COMPILE_ID}_time.log +elapsed=${SECONDS} +echo "Elapsed time ${elapsed} seconds. Compiling ${CMAKE_FLAGS} finished" +echo "Compile ${COMPILE_ID} elapsed time ${elapsed} seconds. ${CMAKE_FLAGS}" > "compile_${COMPILE_ID}_time.log" diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 3f969d191d..7bbbd3652f 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1,4 +1,4 @@ - +#!/bin/bash ############################################################################### # # Export variables to the default values @@ -9,291 +9,400 @@ THRD=1 - INPES_atmaero=4; JNPES_atmaero=8; WPG_atmaero=6 - - THRD_cpl_atmw=1 - INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 - WAV_tasks_cpl_atmw=30 - WAV_thrds_cpl_atmw=1 - - THRD_cpl_c48=1 - INPES_cpl_c48=1; JNPES_cpl_c48=1; WPG_cpl_c48=6 - OCN_tasks_cpl_c48=4 - ICE_tasks_cpl_c48=4 - - THRD_cpl_dflt=1 - INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 - OCN_tasks_cpl_dflt=20 - ICE_tasks_cpl_dflt=10 - WAV_tasks_cpl_dflt=20 - - THRD_cpl_thrd=2 - INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 - OCN_tasks_cpl_thrd=20 - OCN_thrds_cpl_thrd=1 - ICE_tasks_cpl_thrd=10 - ICE_thrds_cpl_thrd=1 - WAV_tasks_cpl_thrd=12 - WAV_thrds_cpl_thrd=2 - - THRD_cpl_dcmp=1 - INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 - OCN_tasks_cpl_dcmp=20 - ICE_tasks_cpl_dcmp=10 - WAV_tasks_cpl_dcmp=20 - - THRD_cpl_mpi=1 - INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6 - OCN_tasks_cpl_mpi=34 - ICE_tasks_cpl_mpi=20 - WAV_tasks_cpl_mpi=28 - - THRD_cpl_bmrk=2 - INPES_cpl_bmrk=8; JNPES_cpl_bmrk=8; WPG_cpl_bmrk=48 - OCN_tasks_cpl_bmrk=120 - OCN_thrds_cpl_bmrk=1 - ICE_tasks_cpl_bmrk=48 - ICE_thrds_cpl_bmrk=1 - WAV_tasks_cpl_bmrk=80 - WAV_thrds_cpl_bmrk=2 - - THRD_cpl_c192=2 - INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12 - OCN_tasks_cpl_c192=60 - ICE_tasks_cpl_c192=24 - WAV_tasks_cpl_c192=80 - - ATM_compute_tasks_cdeps_100=12 - OCN_tasks_cdeps_100=16 - ICE_tasks_cdeps_100=12 - - ATM_compute_tasks_cdeps_025=40 - OCN_tasks_cdeps_025=120 - ICE_tasks_cdeps_025=48 - - INPES_aqm=33; JNPES_aqm=8 - - THRD_cpl_unstr=1 - INPES_cpl_unstr=3; JNPES_cpl_unstr=8; WPG_cpl_unstr=6 - OCN_tasks_cpl_unstr=20 - ICE_tasks_cpl_unstr=10 - WAV_tasks_cpl_unstr=60 - - THRD_cpl_unstr_mpi=1 - INPES_cpl_unstr_mpi=4; JNPES_cpl_unstr_mpi=8; WPG_cpl_unstr_mpi=6 - OCN_tasks_cpl_unstr_mpi=34 - ICE_tasks_cpl_unstr_mpi=20 - WAV_tasks_cpl_unstr_mpi=50 - - aqm_omp_num_threads=1 - atm_omp_num_threads=1 - chm_omp_num_threads=1 - ice_omp_num_threads=1 - lnd_omp_num_threads=1 - med_omp_num_threads=1 - ocn_omp_num_threads=1 - wav_omp_num_threads=1 - -if [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]]; then - - TPN=128 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=248 - -elif [[ $MACHINE_ID = orion ]]; then - - TPN=40 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=248 - -elif [[ $MACHINE_ID = hercules ]]; then - - TPN=80 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=248 - - -elif [[ $MACHINE_ID = hera ]]; then - - TPN=40 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=4 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=248 - -elif [[ $MACHINE_ID = linux ]]; then - - TPN=40 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - - THRD_cpl_dflt=1 - INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 - OCN_tasks_cpl_dflt=20 - ICE_tasks_cpl_dflt=10 - WAV_tasks_cpl_dflt=20 - - THRD_cpl_thrd=2 - INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 - OCN_tasks_cpl_thrd=20 - ICE_tasks_cpl_thrd=10 - WAV_tasks_cpl_thrd=12 - -elif [[ $MACHINE_ID = jet ]]; then - - TPN=24 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=6 ; JNPES_c384=12 ; THRD_c384=1 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - WRTTASK_PER_GROUP_c384=84 - WRTTASK_PER_GROUP_c384gdas=88 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=240 + export INPES_atmaero=4 + export JNPES_atmaero=8 + export WPG_atmaero=6 + + export THRD_cpl_atmw=1 + export INPES_cpl_atmw=3 + export JNPES_cpl_atmw=8 + export WPG_cpl_atmw=6 + export WAV_tasks_cpl_atmw=30 + export WAV_thrds_cpl_atmw=1 + + export THRD_cpl_c48=1 + export INPES_cpl_c48=1 + export JNPES_cpl_c48=1 + export WPG_cpl_c48=6 + export OCN_tasks_cpl_c48=4 + export ICE_tasks_cpl_c48=4 + + export THRD_cpl_dflt=1 + export INPES_cpl_dflt=3 + export JNPES_cpl_dflt=8; + export WPG_cpl_dflt=6 + export OCN_tasks_cpl_dflt=20 + export ICE_tasks_cpl_dflt=10 + export WAV_tasks_cpl_dflt=20 + + export THRD_cpl_thrd=2 + export INPES_cpl_thrd=3 + export JNPES_cpl_thrd=4 + export WPG_cpl_thrd=6 + export OCN_tasks_cpl_thrd=20 + export OCN_thrds_cpl_thrd=1 + export ICE_tasks_cpl_thrd=10 + export ICE_thrds_cpl_thrd=1 + export WAV_tasks_cpl_thrd=12 + export WAV_thrds_cpl_thrd=2 + + export THRD_cpl_dcmp=1 + export INPES_cpl_dcmp=4 + export JNPES_cpl_dcmp=6 + export WPG_cpl_dcmp=6 + export OCN_tasks_cpl_dcmp=20 + export ICE_tasks_cpl_dcmp=10 + export WAV_tasks_cpl_dcmp=20 + + export THRD_cpl_mpi=1 + export INPES_cpl_mpi=4 + export JNPES_cpl_mpi=8 + export WPG_cpl_mpi=6 + export OCN_tasks_cpl_mpi=34 + export ICE_tasks_cpl_mpi=20 + export WAV_tasks_cpl_mpi=28 + + export THRD_cpl_bmrk=2 + export INPES_cpl_bmrk=8 + export JNPES_cpl_bmrk=8 + export WPG_cpl_bmrk=48 + export OCN_tasks_cpl_bmrk=120 + export OCN_thrds_cpl_bmrk=1 + export ICE_tasks_cpl_bmrk=48 + export ICE_thrds_cpl_bmrk=1 + export WAV_tasks_cpl_bmrk=80 + export WAV_thrds_cpl_bmrk=2 + + export THRD_cpl_c192=2 + export INPES_cpl_c192=6 + export JNPES_cpl_c192=8 + export WPG_cpl_c192=12 + export OCN_tasks_cpl_c192=60 + export ICE_tasks_cpl_c192=24 + export WAV_tasks_cpl_c192=80 + + export ATM_compute_tasks_cdeps_100=12 + export OCN_tasks_cdeps_100=16 + export ICE_tasks_cdeps_100=12 + + export ATM_compute_tasks_cdeps_025=40 + export OCN_tasks_cdeps_025=120 + export ICE_tasks_cdeps_025=48 + + export INPES_aqm=33 + export JNPES_aqm=8 + + export THRD_cpl_unstr=1 + export INPES_cpl_unstr=3 + export JNPES_cpl_unstr=8 + export WPG_cpl_unstr=6 + export OCN_tasks_cpl_unstr=20 + export ICE_tasks_cpl_unstr=10 + export WAV_tasks_cpl_unstr=60 + + export THRD_cpl_unstr_mpi=1 + export INPES_cpl_unstr_mpi=4 + export JNPES_cpl_unstr_mpi=8 + export WPG_cpl_unstr_mpi=6 + export OCN_tasks_cpl_unstr_mpi=34 + export ICE_tasks_cpl_unstr_mpi=20 + export WAV_tasks_cpl_unstr_mpi=50 + + export aqm_omp_num_threads=1 + export atm_omp_num_threads=1 + export chm_omp_num_threads=1 + export ice_omp_num_threads=1 + export lnd_omp_num_threads=1 + export med_omp_num_threads=1 + export ocn_omp_num_threads=1 + export wav_omp_num_threads=1 + +if [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]]; then + + export TPN=128 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=8 + export JNPES_c384=6 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + +elif [[ ${MACHINE_ID} = orion ]]; then + + export TPN=40 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=8 + export JNPES_c384=6 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + +elif [[ ${MACHINE_ID} = hercules ]]; then + + export TPN=80 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=8 + export JNPES_c384=6 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + + +elif [[ ${MACHINE_ID} = hera ]]; then + + export TPN=40 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=8 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=4 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + +elif [[ ${MACHINE_ID} = linux ]]; then + + export TPN=40 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + + export THRD_cpl_dflt=1 + export INPES_cpl_dflt=3 + export JNPES_cpl_dflt=8 + export WPG_cpl_dflt=6 + export OCN_tasks_cpl_dflt=20 + export ICE_tasks_cpl_dflt=10 + export WAV_tasks_cpl_dflt=20 + + export THRD_cpl_thrd=2 + export INPES_cpl_thrd=3 + export JNPES_cpl_thrd=4 + export WPG_cpl_thrd=6 + export OCN_tasks_cpl_thrd=20 + export ICE_tasks_cpl_thrd=10 + export WAV_tasks_cpl_thrd=12 + +elif [[ ${MACHINE_ID} = jet ]]; then + + export TPN=24 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=12 + export THRD_c384=1 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + export WRTTASK_PER_GROUP_c384=84 + export WRTTASK_PER_GROUP_c384gdas=88 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=240 # run only in weekly test - THRD_cpl_bmrk=2 - INPES_cpl_bmrk=16; JNPES_cpl_bmrk=16; WPG_cpl_bmrk=48 - OCN_tasks_cpl_bmrk=100 - ICE_tasks_cpl_bmrk=48 - WAV_tasks_cpl_bmrk=100 - WLCLK_cpl_bmrk=120 + export THRD_cpl_bmrk=2 + export INPES_cpl_bmrk=16 + export JNPES_cpl_bmrk=16 + export WPG_cpl_bmrk=48 + export OCN_tasks_cpl_bmrk=100 + export ICE_tasks_cpl_bmrk=48 + export WAV_tasks_cpl_bmrk=100 + export WLCLK_cpl_bmrk=120 # run only in weekly test - THRD_cpl_c192=2 - INPES_cpl_c192=12; JNPES_cpl_c192=16; WPG_cpl_c192=24 - OCN_tasks_cpl_c192=100 - ICE_tasks_cpl_c192=48 - WAV_tasks_cpl_c192=80 - WLCLK_cpl_c192=120 - -elif [[ $MACHINE_ID = s4 ]]; then - - TPN=32 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=1 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=248 - - THRD_cpl_bmrk=2 - INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8; WPG_cpl_bmrk=24 - OCN_tasks_cpl_bmrk=120 - ICE_tasks_cpl_bmrk=48 - WAV_tasks_cpl_bmrk=80 - -elif [[ $MACHINE_ID = gaea ]]; then - - TPN=128 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=1 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_atmw_gdas=3 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=264 - -elif [[ $MACHINE_ID = derecho ]]; then - - TPN=128 - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=248 - -elif [[ $MACHINE_ID = stampede ]]; then + export THRD_cpl_c192=2 + export INPES_cpl_c192=12 + export JNPES_cpl_c192=16 + export WPG_cpl_c192=24 + export OCN_tasks_cpl_c192=100 + export ICE_tasks_cpl_c192=48 + export WAV_tasks_cpl_c192=80 + export WLCLK_cpl_c192=120 + +elif [[ ${MACHINE_ID} = s4 ]]; then + + export TPN=32 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=8 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=1 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + + export THRD_cpl_bmrk=2 + export INPES_cpl_bmrk=6; + export JNPES_cpl_bmrk=8 + export WPG_cpl_bmrk=24 + export OCN_tasks_cpl_bmrk=120 + export ICE_tasks_cpl_bmrk=48 + export WAV_tasks_cpl_bmrk=80 + +elif [[ ${MACHINE_ID} = gaea ]]; then + + export TPN=128 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=8 + export THRD_c384=1 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=3 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=264 + +elif [[ ${MACHINE_ID} = derecho ]]; then + + export TPN=128 + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=8 + export JNPES_c384=6 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + +elif [[ ${MACHINE_ID} = stampede ]]; then echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" exit 1 - TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8 - TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4 - TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 - TPN_c768=20 ; INPES_c768=8 ; JNPES_c768=16 - TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 + # TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8 + # TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4 + # TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 + # TPN_c768=20 ; INPES_c768=8 ; JNPES_c768=16 + # TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=4; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" + # TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 + # THRD_cpl_atmw_gdas=4; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" elif [[ ${MACHINE_ID} = noaacloud ]] ; then - if [[ $PW_CSP == aws ]]; then - TPN=36 - elif [[ $PW_CSP == azure ]]; then - TPN=44 - elif [[ $PW_CSP == google ]]; then - TPN=30 + if [[ ${PW_CSP} == aws ]]; then + export TPN=36 + elif [[ ${PW_CSP} == azure ]]; then + export TPN=44 + elif [[ ${PW_CSP} == google ]]; then + export TPN=30 fi - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - - INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_dflt=1 - INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 - OCN_tasks_cpl_dflt=20 - ICE_tasks_cpl_dflt=10 - WAV_tasks_cpl_dflt=20 - - THRD_cpl_thrd=2 - INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 - OCN_tasks_cpl_thrd=20 - ICE_tasks_cpl_thrd=10 - WAV_tasks_cpl_thrd=12 - -elif [[ $MACHINE_ID = expanse ]]; then + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + + export INPES_c384=8 + export JNPES_c384=6 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_dflt=1 + export INPES_cpl_dflt=3 + export JNPES_cpl_dflt=8 + export WPG_cpl_dflt=6 + export OCN_tasks_cpl_dflt=20 + export ICE_tasks_cpl_dflt=10 + export WAV_tasks_cpl_dflt=20 + + export THRD_cpl_thrd=2 + export INPES_cpl_thrd=3 + export JNPES_cpl_thrd=4; + export WPG_cpl_thrd=6 + export OCN_tasks_cpl_thrd=20 + export ICE_tasks_cpl_thrd=10 + export WAV_tasks_cpl_thrd=12 + +elif [[ ${MACHINE_ID} = expanse ]]; then echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" exit 1 - TPN_dflt=64 ; INPES_dflt=3 ; JNPES_dflt=8 - TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4 - TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 + # TPN_dflt=64 ; INPES_dflt=3 ; JNPES_dflt=8 + # TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4 + # TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" + # TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 + # THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" else @@ -302,9 +411,9 @@ else fi -WLCLK_dflt=30 +export WLCLK_dflt=30 -export WLCLK=$WLCLK_dflt +export WLCLK=${WLCLK_dflt} export CMP_DATAONLY=false # Defaults for ufs.configure @@ -314,1241 +423,1262 @@ export DumpFields="false" export_fv3 () { # ufs.configure defaults -export UFS_CONFIGURE=ufs.configure.atm_esmf.IN -export MODEL_CONFIGURE=model_configure.IN -export atm_model=fv3 - -export FV3=true -export S2S=false -export HAFS=false -export AQM=false -export DATM_CDEPS=false -export DOCN_CDEPS=false -export CDEPS_INLINE=false -export POSTAPP='global' -export USE_MERRA2=.false. - -export NTILES=6 -export INPES=$INPES_dflt -export JNPES=$JNPES_dflt -export RESTART_INTERVAL=0 -export QUILTING=.true. -export QUILTING_RESTART=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export ITASKS=1 -export OUTPUT_HISTORY=.true. -export HISTORY_FILE_ON_NATIVE_GRID=.false. -export WRITE_DOPOST=.false. -export NUM_FILES=2 -export FILENAME_BASE="'atm' 'sfc'" -export OUTPUT_GRID="'cubed_sphere_grid'" -export OUTPUT_FILE="'netcdf'" -export ZSTANDARD_LEVEL=0 -export IDEFLATE=0 -export QUANTIZE_NSD=0 -export ICHUNK2D=0 -export JCHUNK2D=0 -export ICHUNK3D=0 -export JCHUNK3D=0 -export KCHUNK3D=0 -export IMO=384 -export JMO=190 -export WRITE_NSFLIP=.false. - -#input file -export DIAG_TABLE=diag_table_gfsv16 -export FIELD_TABLE=field_table_gfsv16 - -export DOMAINS_STACK_SIZE=3000000 - -# Coldstart/warmstart -#rt script for ICs -export MODEL_INITIALIZATION=false -#namelist variable -export WARM_START=.false. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="''" -export NGGPS_IC=.true. -export EXTERNAL_IC=.true. -export MAKE_NH=.true. -export MOUNTAIN=.false. -export NA_INIT=1 - -# Radiation -export DO_RRTMGP=.false. -export DOGP_CLDOPTICS_LUT=.false. -export DOGP_LWSCAT=.false. -export USE_LW_JACOBIAN=.false. -export DAMP_LW_FLUXADJ=.false. -export RRTMGP_LW_PHYS_BLKSZ=2 -export ICLOUD=0 -export IAER=111 -export ICLIQ_SW=1 -export IOVR=1 -export LFNC_K=-999 -export LFNC_P0=-999 - -# Microphysics -export IMP_PHYSICS=11 -export NWAT=6 -# GFDL MP -export DNATS=1 -export DO_SAT_ADJ=.true. -export LHEATSTRG=.true. -export LSEASPRAY=.false. -export LGFDLMPRAD=.false. -export EFFR_IN=.false. -# Thompson MP -export LRADAR=.true. -export LTAEROSOL=.true. -export EXT_DIAG_THOMPSON=.false. -export SEDI_SEMI=.true. -export DECFL=10 -# NSSL MP -export NSSL_CCCN=0.6e9 -export NSSL_ALPHAH=0.0 -export NSSL_ALPHAHL=1.0 -export NSSL_HAIL_ON=.false. -export NSSL_CCN_ON=.true. -export NSSL_INVERTCCN=.true. - -# Smoke -export RRFS_SMOKE=.false. -export SMOKE_FORECAST=0 -export RRFS_RESTART=NO -export SEAS_OPT=2 - -# GWD -export LDIAG_UGWP=.false. -export DO_UGWP=.false. -export DO_TOFD=.false. -export GWD_OPT=1 -export DO_UGWP_V0=.false. -export DO_UGWP_V1_W_GSLDRAG=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export KNOB_UGWP_DOKDIS=1 -export KNOB_UGWP_NDX4LH=1 -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_PALAUNCH=500.e2 -export KNOB_UGWP_NSLOPE=1 - -# resolution dependent settings -export CDMBWD_c48='0.071,2.1,1.0,1.0' -export CDMBWD_c96='0.14,1.8,1.0,1.0' -export CDMBWD_c192='0.23,1.5,1.0,1.0' -export CDMBWD_c384='1.1,0.72,1.0,1.0' -export CDMBWD_c768='4.0,0.15,1.0,1.0' - -#DT_INNER=(Time step)/2 -export DT_INNER_c96=360 -export DT_INNER_c192=300 -export DT_INNER_c384=150 -export DT_INNER_c768=75 - -# set default -export CDMBWD=${CDMBWD_c96} -export DT_INNER=${DT_INNER_c96} - -# PBL -export SATMEDMF=.false. -export ISATMEDMF=0 -export HYBEDMF=.true. -export SHINHONG=.false. -export DO_YSU=.false. -export DO_MYNNEDMF=.false. -export HURR_PBL=.false. -export MONINQ_FAC=1.0 -export SFCLAY_COMPUTE_FLUX=.false. - -# Shallow/deep convection -export DO_DEEP=.true. -export SHAL_CNV=.true. -export IMFSHALCNV=2 -export HWRF_SAMFSHAL=.false. -export IMFDEEPCNV=2 -export HWRF_SAMFDEEP=.false. -export RAS=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.true. -export PROGSIGMA=.false. -export BETASCU=8.0 -export BETAMCU=1.0 -export BETADCU=2.0 - -# Aerosol convective scavenging -export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc1:0.6","bc2:0.6","oc1:0.4","oc2:0.4","dust1:0.6","dust2:0.6","dust3:0.6","dust4:0.6","dust5:0.6","seas1:0.5","seas2:0.5","seas3:0.5","seas4:0.5","seas5:0.5"' - -# SFC -export DO_MYJSFC=.false. -export DO_MYNNSFCLAY=.false. -export BL_MYNN_TKEADVECT=.false. - -# LSM -export LSM=1 -export LSOIL_LSM=4 -export LANDICE=.true. -export KICE=2 -export IALB=1 -export IEMS=1 - -# Ozone / stratospheric H2O -export OZ_PHYS_OLD=.true. -export OZ_PHYS_NEW=.false. -export H2O_PHYS=.false. - -# Lake models -export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake points -export IOPT_LAKE=2 # 1=flake, 2=clm lake -export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it -export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it -export FRAC_ICE=.true. # should be false for flake, true for clm_lake - -export CPL=.false. -export CPLCHM=.false. -export CPLFLX=.false. -export CPLICE=.false. -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export CPLLND=.false. -export CPLLND2ATM=.false. -export USE_MED_FLUX=.false. -export DAYS=1 -export NPX=97 -export NPY=97 -export NPZ=64 -export NPZP=65 -export NSTF_NAME=2,1,1,0,5 -export OUTPUT_FH="12 -1" -export FHZERO=6 -export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'" -export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'" -export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'" -export FNSOCC="''" -export FNSMCC="'global_soilmgldas.t126.384.190.grb'" -export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" -export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" -export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'" - -# Dynamical core -export FV_CORE_TAU=0. -export RF_CUTOFF=30.0 -export FAST_TAU_W_SEC=0.0 - -# Tiled Fix files -export ATMRES=C96 -export TILEDFIX=.false. - -export ENS_NUM=1 -export SYEAR=2016 -export SMONTH=10 -export SDAY=03 -export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` -export FHMAX=$(( DAYS*24 )) -export DT_ATMOS=1800 -export FHCYC=24 -export FHROT=0 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.false. -export MAX_OUTPUT_FIELDS=310 - -# Stochastic physics -export STOCHINI=.false. -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 -export SKEB=-999. -export SPPT=-999. -export SHUM=-999. -export LNDP_VAR_LIST="'XXX'" -export LNDP_PRT_LIST=-999 -export LNDP_MODEL_TYPE=0 - -#IAU -export IAU_INC_FILES="''" -export IAU_DELTHRS=0 -export IAUFHRS=-1 -export IAU_OFFSET=0 - -export FH_DFI_RADAR='-2e10' - -#Cellular automata -export DO_CA=.false. -export CA_SGS=.false. -export CA_GLOBAL=.false. - -#waves -export WW3_RSTDTHR=12 -export WW3_DT_2_RST="$(printf "%02d" $(( ${WW3_RSTDTHR}*3600 )))" -export WW3_OUTDTHR=1 -export WW3_DTFLD="$(printf "%02d" $(( ${WW3_OUTDTHR}*3600 )))" -export WW3_DTPNT="$(printf "%02d" $(( ${WW3_OUTDTHR}*3600 )))" -export DTRST=0 -export RSTTYPE=T -export GOFILETYPE=1 -export POFILETYPE=1 -export WW3_OUTPARS="WND HS FP DP PHS PTP PDIR" -export CPLILINE='$' -export ICELINE='$' -export WINDLINE='$' -export CURRLINE='$' -export NFGRIDS=0 -export NMGRIDS=1 -export WW3GRIDLINE="'glo_1deg' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export FUNIPNT=T -export IOSRV=1 -export FPNTPROC=T -export FGRDPROC=T -export UNIPOINTS='points' -export FLAGMASKCOMP=' F' -export FLAGMASKOUT=' F' -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END -export WW3_CUR='F' -export WW3_ICE='F' -export WW3_IC1='F' -export WW3_IC5='F' -# ATMW -export WW3_MULTIGRID=true -export WW3_MODDEF=mod_def.glo_1deg -export MESH_WAV=mesh.glo_1deg.nc - -# ATMA -export AOD_FRQ=060000 - -# Regional -export WRITE_RESTART_WITH_BCS=.false. - -# Diagnostics -export PRINT_DIFF_PGR=.false. - -# Coupling -export coupling_interval_fast_sec=0 -export CHOUR=06 -export MOM6_OUTPUT_DIR=./MOM6_OUTPUT + export UFS_CONFIGURE=ufs.configure.atm_esmf.IN + export MODEL_CONFIGURE=model_configure.IN + export atm_model=fv3 + + export FV3=true + export S2S=false + export HAFS=false + export AQM=false + export DATM_CDEPS=false + export DOCN_CDEPS=false + export CDEPS_INLINE=false + export POSTAPP='global' + export USE_MERRA2=.false. + + export NTILES=6 + export INPES=${INPES_dflt} + export JNPES=${JNPES_dflt} + export RESTART_INTERVAL=0 + export QUILTING=.true. + export QUILTING_RESTART=.true. + export WRITE_GROUP=1 + export WRTTASK_PER_GROUP=6 + export ITASKS=1 + export OUTPUT_HISTORY=.true. + export HISTORY_FILE_ON_NATIVE_GRID=.false. + export WRITE_DOPOST=.false. + export NUM_FILES=2 + export FILENAME_BASE="'atm' 'sfc'" + export OUTPUT_GRID="'cubed_sphere_grid'" + export OUTPUT_FILE="'netcdf'" + export ZSTANDARD_LEVEL=0 + export IDEFLATE=0 + export QUANTIZE_NSD=0 + export ICHUNK2D=0 + export JCHUNK2D=0 + export ICHUNK3D=0 + export JCHUNK3D=0 + export KCHUNK3D=0 + export IMO=384 + export JMO=190 + export WRITE_NSFLIP=.false. + + #input file + export DIAG_TABLE=diag_table_gfsv16 + export FIELD_TABLE=field_table_gfsv16 + + export DOMAINS_STACK_SIZE=3000000 + + # Coldstart/warmstart + #rt script for ICs + export MODEL_INITIALIZATION=false + #namelist variable + export WARM_START=.false. + export READ_INCREMENT=.false. + export RES_LATLON_DYNAMICS="''" + export NGGPS_IC=.true. + export EXTERNAL_IC=.true. + export MAKE_NH=.true. + export MOUNTAIN=.false. + export NA_INIT=1 + + # Radiation + export DO_RRTMGP=.false. + export DOGP_CLDOPTICS_LUT=.false. + export DOGP_LWSCAT=.false. + export USE_LW_JACOBIAN=.false. + export DAMP_LW_FLUXADJ=.false. + export RRTMGP_LW_PHYS_BLKSZ=2 + export ICLOUD=0 + export IAER=111 + export ICLIQ_SW=1 + export IOVR=1 + export LFNC_K=-999 + export LFNC_P0=-999 + + # Microphysics + export IMP_PHYSICS=11 + export NWAT=6 + # GFDL MP + export DNATS=1 + export DO_SAT_ADJ=.true. + export LHEATSTRG=.true. + export LSEASPRAY=.false. + export LGFDLMPRAD=.false. + export EFFR_IN=.false. + # Thompson MP + export LRADAR=.true. + export LTAEROSOL=.true. + export EXT_DIAG_THOMPSON=.false. + export SEDI_SEMI=.true. + export DECFL=10 + # NSSL MP + export NSSL_CCCN=0.6e9 + export NSSL_ALPHAH=0.0 + export NSSL_ALPHAHL=1.0 + export NSSL_HAIL_ON=.false. + export NSSL_CCN_ON=.true. + export NSSL_INVERTCCN=.true. + + # Smoke + export RRFS_SMOKE=.false. + export SMOKE_FORECAST=0 + export RRFS_RESTART=NO + export SEAS_OPT=2 + + # GWD + export LDIAG_UGWP=.false. + export DO_UGWP=.false. + export DO_TOFD=.false. + export GWD_OPT=1 + export DO_UGWP_V0=.false. + export DO_UGWP_V1_W_GSLDRAG=.false. + export DO_UGWP_V0_OROG_ONLY=.false. + export DO_GSL_DRAG_LS_BL=.false. + export DO_GSL_DRAG_SS=.false. + export DO_GSL_DRAG_TOFD=.false. + export DO_UGWP_V1=.false. + export DO_UGWP_V1_OROG_ONLY=.false. + export KNOB_UGWP_DOKDIS=1 + export KNOB_UGWP_NDX4LH=1 + export KNOB_UGWP_VERSION=0 + export KNOB_UGWP_PALAUNCH=500.e2 + export KNOB_UGWP_NSLOPE=1 + + # resolution dependent settings + export CDMBWD_c48='0.071,2.1,1.0,1.0' + export CDMBWD_c96='0.14,1.8,1.0,1.0' + export CDMBWD_c192='0.23,1.5,1.0,1.0' + export CDMBWD_c384='1.1,0.72,1.0,1.0' + export CDMBWD_c768='4.0,0.15,1.0,1.0' + + #DT_INNER=(Time step)/2 + export DT_INNER_c96=360 + export DT_INNER_c192=300 + export DT_INNER_c384=150 + export DT_INNER_c768=75 + + # set default + export CDMBWD=${CDMBWD_c96} + export DT_INNER=${DT_INNER_c96} + + # PBL + export SATMEDMF=.false. + export ISATMEDMF=0 + export HYBEDMF=.true. + export SHINHONG=.false. + export DO_YSU=.false. + export DO_MYNNEDMF=.false. + export HURR_PBL=.false. + export MONINQ_FAC=1.0 + export SFCLAY_COMPUTE_FLUX=.false. + + # Shallow/deep convection + export DO_DEEP=.true. + export SHAL_CNV=.true. + export IMFSHALCNV=2 + export HWRF_SAMFSHAL=.false. + export IMFDEEPCNV=2 + export HWRF_SAMFDEEP=.false. + export RAS=.false. + export RANDOM_CLDS=.false. + export CNVCLD=.true. + export PROGSIGMA=.false. + export BETASCU=8.0 + export BETAMCU=1.0 + export BETADCU=2.0 + + # Aerosol convective scavenging + export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc1:0.6","bc2:0.6","oc1:0.4","oc2:0.4","dust1:0.6","dust2:0.6","dust3:0.6","dust4:0.6","dust5:0.6","seas1:0.5","seas2:0.5","seas3:0.5","seas4:0.5","seas5:0.5"' + + # SFC + export DO_MYJSFC=.false. + export DO_MYNNSFCLAY=.false. + export BL_MYNN_TKEADVECT=.false. + + # LSM + export LSM=1 + export LSOIL_LSM=4 + export LANDICE=.true. + export KICE=2 + export IALB=1 + export IEMS=1 + + # Ozone / stratospheric H2O + export OZ_PHYS_OLD=.true. + export OZ_PHYS_NEW=.false. + export H2O_PHYS=.false. + + # Lake models + export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake points + export IOPT_LAKE=2 # 1=flake, 2=clm lake + export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it + export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it + export FRAC_ICE=.true. # should be false for flake, true for clm_lake + + export CPL=.false. + export CPLCHM=.false. + export CPLFLX=.false. + export CPLICE=.false. + export CPLWAV=.false. + export CPLWAV2ATM=.false. + export CPLLND=.false. + export CPLLND2ATM=.false. + export USE_MED_FLUX=.false. + export DAYS=1 + export NPX=97 + export NPY=97 + export NPZ=64 + export NPZP=65 + export NSTF_NAME=2,1,1,0,5 + export OUTPUT_FH="12 -1" + export FHZERO=6 + export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'" + export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'" + export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'" + export FNSOCC="''" + export FNSMCC="'global_soilmgldas.t126.384.190.grb'" + export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" + export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" + export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'" + + # Dynamical core + export FV_CORE_TAU=0. + export RF_CUTOFF=30.0 + export FAST_TAU_W_SEC=0.0 + + # Tiled Fix files + export ATMRES=C96 + export TILEDFIX=.false. + + export ENS_NUM=1 + export SYEAR=2016 + export SMONTH=10 + export SDAY=03 + export SHOUR=00 + export SECS=$(( SHOUR*600 )) + export FHMAX=$(( DAYS*24 )) + export DT_ATMOS=1800 + export FHCYC=24 + export FHROT=0 + export LDIAG3D=.false. + export QDIAG3D=.false. + export PRINT_DIFF_PGR=.false. + export MAX_OUTPUT_FIELDS=310 + + # Stochastic physics + export STOCHINI=.false. + export DO_SPPT=.false. + export DO_SHUM=.false. + export DO_SKEB=.false. + export LNDP_TYPE=0 + export N_VAR_LNDP=0 + export SKEB=-999. + export SPPT=-999. + export SHUM=-999. + export LNDP_VAR_LIST="'XXX'" + export LNDP_PRT_LIST=-999 + export LNDP_MODEL_TYPE=0 + + #IAU + export IAU_INC_FILES="''" + export IAU_DELTHRS=0 + export IAUFHRS=-1 + export IAU_OFFSET=0 + + export FH_DFI_RADAR='-2e10' + + #Cellular automata + export DO_CA=.false. + export CA_SGS=.false. + export CA_GLOBAL=.false. + + #waves + export WW3_RSTDTHR=12 + WW3_DT_2_RST="$(printf "%02d" $(( WW3_RSTDTHR*3600 )))" + export WW3_DT_2_RST + export WW3_OUTDTHR=1 + WW3_DTFLD="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))" + export WW3_DTFLD + WW3_DTPNT="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))" + export WW3_DTPNT + export DTRST=0 + export RSTTYPE=T + export GOFILETYPE=1 + export POFILETYPE=1 + export WW3_OUTPARS="WND HS FP DP PHS PTP PDIR" + export CPLILINE='$' + export ICELINE='$' + export WINDLINE='$' + export CURRLINE='$' + export NFGRIDS=0 + export NMGRIDS=1 + export WW3GRIDLINE="'glo_1deg' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" + export FUNIPNT=T + export IOSRV=1 + export FPNTPROC=T + export FGRDPROC=T + export UNIPOINTS='points' + export FLAGMASKCOMP=' F' + export FLAGMASKOUT=' F' + RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000" + export RUN_BEG + RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000" + export RUN_END + export OUT_BEG=${RUN_BEG} + export OUT_END=${RUN_END} + export RST_BEG=${RUN_BEG} + export RST_2_BEG=${RUN_BEG} + export RST_END=${RUN_END} + export RST_2_END=${RUN_END} + export WW3_CUR='F' + export WW3_ICE='F' + export WW3_IC1='F' + export WW3_IC5='F' + # ATMW + export WW3_MULTIGRID=true + export WW3_MODDEF=mod_def.glo_1deg + export MESH_WAV=mesh.glo_1deg.nc + + # ATMA + export AOD_FRQ=060000 + + # Regional + export WRITE_RESTART_WITH_BCS=.false. + + # Diagnostics + export PRINT_DIFF_PGR=.false. + + # Coupling + export coupling_interval_fast_sec=0 + export CHOUR=06 + export MOM6_OUTPUT_DIR=./MOM6_OUTPUT } # Defaults for the CICE6 model namelist, mx100 export_cice6() { -export SECS=`expr $SHOUR \* 3600` -export DT_CICE=${DT_ATMOS} -export CICE_NPT=999 -export CICE_RUNTYPE=initial -export CICE_RUNID=unknown -export CICE_USE_RESTART_TIME=.false. -export CICE_RESTART_DIR=./RESTART/ -export CICE_RESTART_FILE=iced - -export CICE_RESTART_FORMAT='pnetcdf2' -export CICE_RESTART_IOTASKS=-99 -export CICE_RESTART_REARR='box' -export CICE_RESTART_ROOT=-99 -export CICE_RESTART_STRIDE=-99 -export CICE_RESTART_CHUNK=0,0 -export CICE_RESTART_DEFLATE=0 - -export CICE_HISTORY_FORMAT='pnetcdf2' -if [[ ${MACHINE_ID} == wcoss2 ]]; then - export CICE_RESTART_FORMAT='hdf5' - export CICE_HISTORY_FORMAT='hdf5' -fi -export CICE_HISTORY_IOTASKS=-99 -export CICE_HISTORY_REARR='box' -export CICE_HISTORY_ROOT=-99 -export CICE_HISTORY_STRIDE=-99 -export CICE_HISTORY_CHUNK=0,0 -export CICE_HISTORY_DEFLATE=0 -export CICE_HISTORY_PREC=4 - -export CICE_DUMPFREQ=d -export CICE_DUMPFREQ_N=1000 -export CICE_DIAGFREQ=`expr $FHMAX \* 3600 / $DT_CICE` -export CICE_HISTFREQ_N="0, 0, 6, 1, 1" -export CICE_HIST_AVG=.true. -export CICE_HISTORY_DIR=./history/ -export CICE_INCOND_DIR=./history/ -export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CICE_GRIDATM=A -export CICE_GRIDOCN=A -export CICE_GRIDICE=B -export CICE_TR_POND_LVL=.true. -export CICE_RESTART_POND_LVL=.false. -# setting to true will allow Frazil FW and Salt to be included in fluxes sent to ocean -export CICE_FRAZIL_FWSALT=.true. -export CICE_KTHERM=2 -export CICE_TFREEZE_OPTION=mushy -# SlenderX2 -export CICE_NPROC=$ICE_tasks -export np2=`expr $CICE_NPROC / 2` -export CICE_BLCKX=`expr $NX_GLB / $np2` -export CICE_BLCKY=`expr $NY_GLB / 2` -export CICE_DECOMP=slenderX2 + SECS=$((SHOUR*3600)) + export SECS + export DT_CICE=${DT_ATMOS} + export CICE_NPT=999 + export CICE_RUNTYPE=initial + export CICE_RUNID=unknown + export CICE_USE_RESTART_TIME=.false. + export CICE_RESTART_DIR=./RESTART/ + export CICE_RESTART_FILE=iced + + export CICE_RESTART_FORMAT='pnetcdf2' + export CICE_RESTART_IOTASKS=-99 + export CICE_RESTART_REARR='box' + export CICE_RESTART_ROOT=-99 + export CICE_RESTART_STRIDE=-99 + export CICE_RESTART_CHUNK=0,0 + export CICE_RESTART_DEFLATE=0 + + export CICE_HISTORY_FORMAT='pnetcdf2' + if [[ ${MACHINE_ID} == wcoss2 ]]; then + export CICE_RESTART_FORMAT='hdf5' + export CICE_HISTORY_FORMAT='hdf5' + fi + export CICE_HISTORY_IOTASKS=-99 + export CICE_HISTORY_REARR='box' + export CICE_HISTORY_ROOT=-99 + export CICE_HISTORY_STRIDE=-99 + export CICE_HISTORY_CHUNK=0,0 + export CICE_HISTORY_DEFLATE=0 + export CICE_HISTORY_PREC=4 + + export CICE_DUMPFREQ=d + export CICE_DUMPFREQ_N=1000 + CICE_DIAGFREQ=$(( (FHMAX*3600)/DT_CICE )) + export CICE_DIAGFREQ + export CICE_HISTFREQ_N="0, 0, 6, 1, 1" + export CICE_HIST_AVG=.true. + export CICE_HISTORY_DIR=./history/ + export CICE_INCOND_DIR=./history/ + export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc + export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc + export CICE_GRIDATM=A + export CICE_GRIDOCN=A + export CICE_GRIDICE=B + export CICE_TR_POND_LVL=.true. + export CICE_RESTART_POND_LVL=.false. + # setting to true will allow Frazil FW and Salt to be included in fluxes sent to ocean + export CICE_FRAZIL_FWSALT=.true. + export CICE_KTHERM=2 + export CICE_TFREEZE_OPTION=mushy + # SlenderX2 + export CICE_NPROC=${ICE_tasks} + np2=$((CICE_NPROC/2)) + CICE_BLCKX=$((NX_GLB/np2)) + CICE_BLCKY=$((NY_GLB/2)) + export np2 + export CICE_BLCKX + export CICE_BLCKY + export CICE_DECOMP=slenderX2 } # Defaults for the MOM6 model namelist, mx100 export_mom6() { -export DT_DYNAM_MOM6=1800 -export DT_THERM_MOM6=3600 -export MOM6_INPUT=MOM_input_100.IN -export MOM6_OUTPUT_DIR=./MOM6_OUTPUT -export MOM6_RESTART_DIR=./RESTART/ -export MOM6_RESTART_SETTING=n -export MOM6_RIVER_RUNOFF=False -export MOM6_FRUNOFF='' -export MOM6_CHLCLIM=seawifs_1998-2006_smoothed_2X.nc -export MOM6_USE_LI2016=True -export MOM6_TOPOEDITS='' -# since CPL_SLOW is set to DT_THERM, this should be always be false -export MOM6_THERMO_SPAN=False -export MOM6_USE_WAVES=True -export MOM6_ALLOW_LANDMASK_CHANGES=False -# MOM6 diag -export MOM6_DIAG_COORD_DEF_Z_FILE=interpolate_zgrid_40L.nc -export MOM6_DIAG_MISVAL='-1e34' -# MOM6 IAU -export ODA_INCUPD=False -export ODA_INCUPD_NHOURS=6 -export ODA_TEMPINC_VAR="'pt_inc'" -export ODA_SALTINC_VAR="'s_inc'" -export ODA_THK_VAR="'h_fg'" -export ODA_INCUPD_UV=False -export ODA_UINC_VAR="'u_inc'" -export ODA_VINC_VAR="'v_inc'" -# MOM6 stochastics -export DO_OCN_SPPT=False -export PERT_EPBL=False -export OCN_SPPT=-999. -export EPBL=-999. + export DT_DYNAM_MOM6=1800 + export DT_THERM_MOM6=3600 + export MOM6_INPUT=MOM_input_100.IN + export MOM6_OUTPUT_DIR=./MOM6_OUTPUT + export MOM6_RESTART_DIR=./RESTART/ + export MOM6_RESTART_SETTING=n + export MOM6_RIVER_RUNOFF=False + export MOM6_FRUNOFF='' + export MOM6_CHLCLIM=seawifs_1998-2006_smoothed_2X.nc + export MOM6_USE_LI2016=True + export MOM6_TOPOEDITS='' + # since CPL_SLOW is set to DT_THERM, this should be always be false + export MOM6_THERMO_SPAN=False + export MOM6_USE_WAVES=True + export MOM6_ALLOW_LANDMASK_CHANGES=False + # MOM6 diag + export MOM6_DIAG_COORD_DEF_Z_FILE=interpolate_zgrid_40L.nc + export MOM6_DIAG_MISVAL='-1e34' + # MOM6 IAU + export ODA_INCUPD=False + export ODA_INCUPD_NHOURS=6 + export ODA_TEMPINC_VAR="'pt_inc'" + export ODA_SALTINC_VAR="'s_inc'" + export ODA_THK_VAR="'h_fg'" + export ODA_INCUPD_UV=False + export ODA_UINC_VAR="'u_inc'" + export ODA_VINC_VAR="'v_inc'" + # MOM6 stochastics + export DO_OCN_SPPT=False + export PERT_EPBL=False + export OCN_SPPT=-999. + export EPBL=-999. } # Defaults for the WW3 global model export_ww3() { -export WW3_DOMAIN=mx${OCNRES} -export WW3_MODDEF=mod_def.mx${OCNRES} -export WW3_RSTDTHR=3 -export WW3_DT_2_RST="$(printf "%02d" $(( ${WW3_RSTDTHR}*3600 )))" -export WW3_OUTDTHR=3 -export WW3_DTFLD="$(printf "%02d" $(( ${WW3_OUTDTHR}*3600 )))" -export WW3_DTPNT="$(printf "%02d" $(( ${WW3_OUTDTHR}*3600 )))" -export WW3_CUR='C' -export WW3_ICE='C' -export WW3_IC1='F' -export WW3_IC5='F' -export WW3_user_sets_restname="true" + export WW3_DOMAIN=mx${OCNRES} + export WW3_MODDEF=mod_def.mx${OCNRES} + export WW3_RSTDTHR=3 + WW3_DT_2_RST="$(printf "%02d" $(( WW3_RSTDTHR*3600 )) )" + export WW3_DT_2_RST + export WW3_OUTDTHR=3 + WW3_DTFLD="$(printf "%02d" $(( WW3_OUTDTHR*3600 )) )" + WW3_DTPNT="$(printf "%02d" $(( WW3_OUTDTHR*3600 )) )" + export WW3_DTFLD + export WW3_DTPNT + export WW3_CUR='C' + export WW3_ICE='C' + export WW3_IC1='F' + export WW3_IC5='F' + export WW3_user_sets_restname="true" } # Defaults for the coupled 5-component export_cmeps() { -export UFS_CONFIGURE=ufs.configure.s2swa_fast_esmf.IN -export med_model=cmeps -export atm_model=fv3 -export chm_model=gocart -export ocn_model=mom6 -export ice_model=cice6 -export wav_model=ww3 -export lnd_model=noahmp -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} -export MESH_OCN=mesh.mx${OCNRES}.nc -export MESH_ICE=mesh.mx${OCNRES}.nc -export MESH_WAV=mesh.${WW3_DOMAIN}.nc -export CPLMODE=ufs.frac -export pio_rearranger=box -export RUNTYPE=startup -export RESTART_N=${FHMAX} -export CMEPS_RESTART_DIR=./RESTART/ -export cap_dbug_flag=0 -# MOM6 attributes -export use_coldstart=false -export use_mommesh=true -# CICE attributes -export eps_imesh=1.0e-1 -# mediator AO flux -export flux_convergence=0.0 -export flux_iteration=2 -export flux_scheme=0 -# mediator ocean albedo -export ocean_albedo_limit=0.06 -export use_mean_albedos=.false. -# WW3 (used in run_test only) -export WW3_MULTIGRID=false + export UFS_CONFIGURE=ufs.configure.s2swa_fast_esmf.IN + export med_model=cmeps + export atm_model=fv3 + export chm_model=gocart + export ocn_model=mom6 + export ice_model=cice6 + export wav_model=ww3 + export lnd_model=noahmp + export coupling_interval_slow_sec=${DT_THERM_MOM6} + export coupling_interval_fast_sec=${DT_ATMOS} + export MESH_OCN=mesh.mx${OCNRES}.nc + export MESH_ICE=mesh.mx${OCNRES}.nc + export MESH_WAV=mesh.${WW3_DOMAIN}.nc + export CPLMODE=ufs.frac + export pio_rearranger=box + export RUNTYPE=startup + export RESTART_N=${FHMAX} + export CMEPS_RESTART_DIR=./RESTART/ + export cap_dbug_flag=0 + # MOM6 attributes + export use_coldstart=false + export use_mommesh=true + # CICE attributes + export eps_imesh=1.0e-1 + # mediator AO flux + export flux_convergence=0.0 + export flux_iteration=2 + export flux_scheme=0 + # mediator ocean albedo + export ocean_albedo_limit=0.06 + export use_mean_albedos=.false. + # WW3 (used in run_test only) + export WW3_MULTIGRID=false } export_cpl () { -export FV3=true -export S2S=true -export HAFS=false -export AQM=false -export DATM_CDEPS=false -export DOCN_CDEPS=false -export CDEPS_INLINE=false -export FV3BMIC='p8c' -export BMIC=.false. -export DAYS=1 - -#model configure -export MODEL_CONFIGURE=model_configure.IN -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export CHOUR=06 -export FHMAX=24 -export FHROT=0 -export DT_ATMOS=720 -export QUILTING_RESTART=.false. -export WRTTASK_PER_GROUP=$WPG_cpl_dflt -export WRITE_NSFLIP=.true. -export OUTPUT_FH='6 -1' - -# default atm/ocn/ice resolution -export ATMRES=C96 -export OCNRES=100 -export ICERES=1.00 -export NX_GLB=360 -export NY_GLB=320 -export NPZ=127 -export NPZP=128 - -# default resources -export DOMAINS_STACK_SIZE=8000000 -export INPES=$INPES_cpl_dflt -export JNPES=$JNPES_cpl_dflt -export THRD=$THRD_cpl_dflt -OCN_tasks=$OCN_tasks_cpl_dflt -ICE_tasks=$ICE_tasks_cpl_dflt -WAV_tasks=$WAV_tasks_cpl_dflt - -# Set CICE6 component defaults -export_cice6 - -# Set MOM6 component defaults -export_mom6 - -# Set WW3 component defaults -export_ww3 - -# Set CMEPS component defauls -export_cmeps - -# FV3 defaults -export FRAC_GRID=.true. -export CCPP_SUITE=FV3_GFS_v17_coupled_p8 -export INPUT_NML=cpld_control.nml.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART -export DIAG_TABLE=diag_table_cpld.IN -export DIAG_TABLE_ADDITIONAL='' - -export FHZERO=6 -export DT_INNER=${DT_ATMOS} - -# P7 default -export IALB=2 -export IEMS=2 -export LSM=2 -export IOPT_DVEG=4 -export IOPT_CRS=2 -export IOPT_RAD=3 -export IOPT_ALB=1 -export IOPT_STC=3 -# P8 -export IOPT_SFC=3 -export IOPT_TRS=2 -export IOPT_DIAG=2 - -# FV3 P7 settings -export D2_BG_K1=0.20 -export D2_BG_K2=0.04 -#export DZ_MIN=2 -export PSM_BC=1 -export DDDMP=0.1 - -#P8 -export DZ_MIN=6 - -# P7 Merra2 Aerosols & NSST -export USE_MERRA2=.true. -export IAER=1011 -export NSTF_NAME=2,0,0,0,0 - -export LHEATSTRG=.false. -export LSEASPRAY=.true. - -# P7 UGWP1 -export GWD_OPT=2 -export KNOB_UGWP_NSLOPE=1 -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -#P8 -export DO_GSL_DRAG_TOFD=.false. -export CDMBWD=${CDMBWD_c96} - -# P8 RRTMGP -export DO_RRTMGP=.false. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export DOGP_SGS_CNV=.true. - -#P8 UGWD -export DO_UGWP_V0=.true. -export DO_UGWP_V1=.false. -export DO_GSL_DRAG_LS_BL=.false. -export KNOB_UGWP_VERSION=0 - -# P7 CA -export DO_CA=.true. -export CA_SGS=.true. -export CA_GLOBAL=.false. -export NCA=1 -export NCELLS=5 -export NLIVES=12 -export NTHRESH=18 -export NSEED=1 -export NFRACSEED=0.5 -export CA_TRIGGER=.true. -export NSPINUP=1 -export ISEED_CA=12345 - -# P7 settings -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -#P8 -export FSICL=0 -export FSICS=0 - -# P8 -export USE_CICE_ALB=.true. -export MIN_SEAICE=1.0e-6 -export DNATS=2 -export IMP_PHYSICS=8 -export LGFDLMPRAD=.false. -export DO_SAT_ADJ=.false. -export SATMEDMF=.true. - -# P7 default -export CPLFLX=.true. -export CPLICE=.true. -export CPL=.true. -export CPLWAV=.true. -export CPLWAV2ATM=.true. -export USE_MED_FLUX=.false. -export CPLCHM=.true. -export CPLLND=.false. - -# for FV3: default values will be changed if doing a warm-warm restart -export WARM_START=.false. -export MAKE_NH=.true. -export NA_INIT=1 -export EXTERNAL_IC=.true. -export NGGPS_IC=.true. -export MOUNTAIN=.false. -# gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory -export AOD_FRQ=060000 - -# checkpoint restarts -export RESTART_FILE_PREFIX='' -export RESTART_FILE_SUFFIX_SECS='' -export RT35D='' + export FV3=true + export S2S=true + export HAFS=false + export AQM=false + export DATM_CDEPS=false + export DOCN_CDEPS=false + export CDEPS_INLINE=false + export FV3BMIC='p8c' + export BMIC=.false. + export DAYS=1 + + #model configure + export MODEL_CONFIGURE=model_configure.IN + export SYEAR=2021 + export SMONTH=03 + export SDAY=22 + export SHOUR=06 + export CHOUR=06 + export FHMAX=24 + export FHROT=0 + export DT_ATMOS=720 + export QUILTING_RESTART=.false. + export WRTTASK_PER_GROUP=${WPG_cpl_dflt} + export WRITE_NSFLIP=.true. + export OUTPUT_FH='6 -1' + + # default atm/ocn/ice resolution + export ATMRES=C96 + export OCNRES=100 + export ICERES=1.00 + export NX_GLB=360 + export NY_GLB=320 + export NPZ=127 + export NPZP=128 + + # default resources + export DOMAINS_STACK_SIZE=8000000 + export INPES=${INPES_cpl_dflt} + export JNPES=${JNPES_cpl_dflt} + export THRD=${THRD_cpl_dflt} + export OCN_tasks=${OCN_tasks_cpl_dflt} + export ICE_tasks=${ICE_tasks_cpl_dflt} + export WAV_tasks=${WAV_tasks_cpl_dflt} + + # Set CICE6 component defaults + export_cice6 + + # Set MOM6 component defaults + export_mom6 + + # Set WW3 component defaults + export_ww3 + + # Set CMEPS component defauls + export_cmeps + + # FV3 defaults + export FRAC_GRID=.true. + export CCPP_SUITE=FV3_GFS_v17_coupled_p8 + export INPUT_NML=cpld_control.nml.IN + export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART + export DIAG_TABLE=diag_table_cpld.IN + export DIAG_TABLE_ADDITIONAL='' + + export FHZERO=6 + export DT_INNER=${DT_ATMOS} + + # P7 default + export IALB=2 + export IEMS=2 + export LSM=2 + export IOPT_DVEG=4 + export IOPT_CRS=2 + export IOPT_RAD=3 + export IOPT_ALB=1 + export IOPT_STC=3 + # P8 + export IOPT_SFC=3 + export IOPT_TRS=2 + export IOPT_DIAG=2 + + # FV3 P7 settings + export D2_BG_K1=0.20 + export D2_BG_K2=0.04 + #export DZ_MIN=2 + export PSM_BC=1 + export DDDMP=0.1 + + #P8 + export DZ_MIN=6 + + # P7 Merra2 Aerosols & NSST + export USE_MERRA2=.true. + export IAER=1011 + export NSTF_NAME=2,0,0,0,0 + + export LHEATSTRG=.false. + export LSEASPRAY=.true. + + # P7 UGWP1 + export GWD_OPT=2 + export KNOB_UGWP_NSLOPE=1 + export DO_GSL_DRAG_LS_BL=.true. + export DO_GSL_DRAG_SS=.true. + export DO_UGWP_V1_OROG_ONLY=.false. + export DO_UGWP_V0_NST_ONLY=.false. + export LDIAG_UGWP=.false. + #P8 + export DO_GSL_DRAG_TOFD=.false. + export CDMBWD=${CDMBWD_c96} + + # P8 RRTMGP + export DO_RRTMGP=.false. + export DOGP_CLDOPTICS_LUT=.true. + export DOGP_LWSCAT=.true. + export DOGP_SGS_CNV=.true. + + #P8 UGWD + export DO_UGWP_V0=.true. + export DO_UGWP_V1=.false. + export DO_GSL_DRAG_LS_BL=.false. + export KNOB_UGWP_VERSION=0 + + # P7 CA + export DO_CA=.true. + export CA_SGS=.true. + export CA_GLOBAL=.false. + export NCA=1 + export NCELLS=5 + export NLIVES=12 + export NTHRESH=18 + export NSEED=1 + export NFRACSEED=0.5 + export CA_TRIGGER=.true. + export NSPINUP=1 + export ISEED_CA=12345 + + # P7 settings + export FNALBC="'C96.snowfree_albedo.tileX.nc'" + export FNALBC2="'C96.facsf.tileX.nc'" + export FNTG3C="'C96.substrate_temperature.tileX.nc'" + export FNVEGC="'C96.vegetation_greenness.tileX.nc'" + export FNVETC="'C96.vegetation_type.tileX.nc'" + export FNSOTC="'C96.soil_type.tileX.nc'" + export FNSOCC="'C96.soil_color.tileX.nc'" + export FNSMCC=${FNSMCC_control} + export FNMSKH=${FNMSKH_control} + export FNVMNC="'C96.vegetation_greenness.tileX.nc'" + export FNVMXC="'C96.vegetation_greenness.tileX.nc'" + export FNSLPC="'C96.slope_type.tileX.nc'" + export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" + export LANDICE=".false." + #P8 + export FSICL=0 + export FSICS=0 + + # P8 + export USE_CICE_ALB=.true. + export MIN_SEAICE=1.0e-6 + export DNATS=2 + export IMP_PHYSICS=8 + export LGFDLMPRAD=.false. + export DO_SAT_ADJ=.false. + export SATMEDMF=.true. + + # P7 default + export CPLFLX=.true. + export CPLICE=.true. + export CPL=.true. + export CPLWAV=.true. + export CPLWAV2ATM=.true. + export USE_MED_FLUX=.false. + export CPLCHM=.true. + export CPLLND=.false. + + # for FV3: default values will be changed if doing a warm-warm restart + export WARM_START=.false. + export MAKE_NH=.true. + export NA_INIT=1 + export EXTERNAL_IC=.true. + export NGGPS_IC=.true. + export MOUNTAIN=.false. + # gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory + export AOD_FRQ=060000 + + # checkpoint restarts + export RESTART_FILE_PREFIX='' + export RESTART_FILE_SUFFIX_SECS='' + export RT35D='' } export_35d_run () { -export CNTL_DIR="" -export LIST_FILES="" + export CNTL_DIR="" + export LIST_FILES="" } export_datm_cdeps () { -export FV3=false -export S2S=false -export HAFS=false -export AQM=false -export DATM_CDEPS=true -export DOCN_CDEPS=false -export CDEPS_INLINE=false -export DAYS=1 - -# model configure -export MODEL_CONFIGURE=datm_cdeps_configure.IN -export SYEAR=2011 -export SMONTH=10 -export SDAY=01 -export SHOUR=00 -export FHMAX=24 -export DT_ATMOS=900 -export FHROT=0 - -# required but unused -export WARM_START=.false. -export CPLWAV=.false. -export CPLCHM=.false. - -# atm/ocn/ice resolution -export IATM=1760 -export JATM=880 -export ATM_NX_GLB=$IATM -export ATM_NY_GLB=$JATM -export ATMRES=${IATM}x${JATM} -export OCNRES=100 -export ICERES=1.00 -export NX_GLB=360 -export NY_GLB=320 - -# default resources -export ATM_compute_tasks=$ATM_compute_tasks_cdeps_100 -export OCN_tasks=$OCN_tasks_cdeps_100 -export ICE_tasks=$ICE_tasks_cdeps_100 - -# Set CICE6 component defaults -export_cice6 -# default non-mushy thermo for CICE -export CICE_KTHERM=1 -export CICE_TFREEZE_OPTION=linear_salt - -# Set MOM6 component defaults -export_mom6 -# default no waves -export MOM6_USE_LI2016=False -export MOM6_USE_WAVES=False -export WW3_DOMAIN='' - -# Set CMEPS component defauls -export_cmeps -# default configure -export UFS_CONFIGURE=ufs.configure.datm_cdeps.IN -export atm_model=datm -export CPLMODE=ufs.nfrac.aoflux - -# datm defaults -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 EXPORT_ALL=.false. -export STREAM_OFFSET=0 - -export BL_SUFFIX="" -export RT_SUFFIX="" + export FV3=false + export S2S=false + export HAFS=false + export AQM=false + export DATM_CDEPS=true + export DOCN_CDEPS=false + export CDEPS_INLINE=false + export DAYS=1 + + # model configure + export MODEL_CONFIGURE=datm_cdeps_configure.IN + export SYEAR=2011 + export SMONTH=10 + export SDAY=01 + export SHOUR=00 + export FHMAX=24 + export DT_ATMOS=900 + export FHROT=0 + + # required but unused + export WARM_START=.false. + export CPLWAV=.false. + export CPLCHM=.false. + + # atm/ocn/ice resolution + export IATM=1760 + export JATM=880 + export ATM_NX_GLB=${IATM} + export ATM_NY_GLB=${JATM} + export ATMRES="${IATM}x${JATM}" + export OCNRES=100 + export ICERES=1.00 + export NX_GLB=360 + export NY_GLB=320 + + # default resources + export ATM_compute_tasks=${ATM_compute_tasks_cdeps_100} + export OCN_tasks=${OCN_tasks_cdeps_100} + export ICE_tasks=${ICE_tasks_cdeps_100} + + # Set CICE6 component defaults + export_cice6 + # default non-mushy thermo for CICE + export CICE_KTHERM=1 + export CICE_TFREEZE_OPTION=linear_salt + + # Set MOM6 component defaults + export_mom6 + # default no waves + export MOM6_USE_LI2016=False + export MOM6_USE_WAVES=False + export WW3_DOMAIN='' + + # Set CMEPS component defauls + export_cmeps + # default configure + export UFS_CONFIGURE=ufs.configure.datm_cdeps.IN + export atm_model=datm + export CPLMODE=ufs.nfrac.aoflux + + # datm defaults + 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 EXPORT_ALL=.false. + export STREAM_OFFSET=0 + + export BL_SUFFIX="" + export RT_SUFFIX="" } + export_hafs_datm_cdeps () { -export FV3=false -export S2S=false -export HAFS=true -export AQM=false -export DATM_CDEPS=true -export DOCN_CDEPS=false -export CDEPS_INLINE=false -export INPES=$INPES_dflt -export JNPES=$JNPES_dflt -export NTILES=1 - -export atm_model=datm -export DATM_IN_CONFIGURE=datm_in.IN -export DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN -export EXPORT_ALL=.false. + export FV3=false + export S2S=false + export HAFS=true + export AQM=false + export DATM_CDEPS=true + export DOCN_CDEPS=false + export CDEPS_INLINE=false + export INPES=${INPES_dflt} + export JNPES=${JNPES_dflt} + export NTILES=1 + + export atm_model=datm + export DATM_IN_CONFIGURE=datm_in.IN + export DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN + export EXPORT_ALL=.false. } + export_hafs_docn_cdeps () { -export FV3=true -export S2S=false -export HAFS=true -export AQM=false -export DOCN_CDEPS=true -export CDEPS_INLINE=false -export INPES=$INPES_dflt -export JNPES=$JNPES_dflt -export NTILES=1 - -export ocn_model=docn -export ocn_datamode=sstdata -export pio_rearranger=box -export DOCN_IN_CONFIGURE=docn_in.IN -export DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN + export FV3=true + export S2S=false + export HAFS=true + export AQM=false + export DOCN_CDEPS=true + export CDEPS_INLINE=false + export INPES=${INPES_dflt} + export JNPES=${JNPES_dflt} + export NTILES=1 + + export ocn_model=docn + export ocn_datamode=sstdata + export pio_rearranger=box + export DOCN_IN_CONFIGURE=docn_in.IN + export DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN } + export_hafs_regional () { -export FV3=true -export S2S=false -export HAFS=true -export AQM=false -export DATM_CDEPS=false -export DOCN_CDEPS=false -export CDEPS_INLINE=false -export INPES=$INPES_dflt -export JNPES=$JNPES_dflt -export NTILES=1 - -# model_configure -export SYEAR=2019 -export SMONTH=08 -export SDAY=29 -export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` -export FHMAX=6 -export ENS_NUM=1 -export DT_ATMOS=900 -export CPL=.true. -export RESTART_INTERVAL=0 -export FHROT=0 -export coupling_interval_fast_sec=0 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export OUTPUT_HISTORY=.true. -export WRITE_DOPOST=.false. -export NUM_FILES=2 -export FILENAME_BASE="'atm' 'sfc'" -export OUTPUT_GRID="'regional_latlon'" -export OUTPUT_FILE="'netcdf'" -export IDEFLATE=0 -export QUANTIZE_NSD=0 -export CEN_LON=-62.0 -export CEN_LAT=25.0 -export LON1=-114.5 -export LAT1=-5.0 -export LON2=-9.5 -export LAT2=55.0 -export DLON=0.03 -export DLAT=0.03 - -# shel.inp -# input.nml -export CPL_IMP_MRG=.true. -export DIAG_TABLE=diag_table_hafs -export FIELD_TABLE=field_table_hafs - -export OCNRES='' -export ICERES='' -export DT_THERM_MOM6='' - -# Set WW3 component defaults -export_ww3 -# default hafs with no ice -export WW3_DOMAIN=natl_6m -export WW3_MODDEF=mod_def.${WW3_DOMAIN} -export WW3_ICE='F' -export WW3_OUTPARS="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" - -# Set CMEPS component defaults -export_cmeps -# default hafs -export ocn_model=hycom -export CPLMODE=hafs -export MESH_WAV=mesh.hafs.nc + export FV3=true + export S2S=false + export HAFS=true + export AQM=false + export DATM_CDEPS=false + export DOCN_CDEPS=false + export CDEPS_INLINE=false + export INPES=${INPES_dflt} + export JNPES=${JNPES_dflt} + export NTILES=1 + + # model_configure + export SYEAR=2019 + export SMONTH=08 + export SDAY=29 + export SHOUR=00 + export SECS=$((SHOUR*3600)) + export FHMAX=6 + export ENS_NUM=1 + export DT_ATMOS=900 + export CPL=.true. + export RESTART_INTERVAL=0 + export FHROT=0 + export coupling_interval_fast_sec=0 + export QUILTING=.true. + export WRITE_GROUP=1 + export WRTTASK_PER_GROUP=6 + export OUTPUT_HISTORY=.true. + export WRITE_DOPOST=.false. + export NUM_FILES=2 + export FILENAME_BASE="'atm' 'sfc'" + export OUTPUT_GRID="'regional_latlon'" + export OUTPUT_FILE="'netcdf'" + export IDEFLATE=0 + export QUANTIZE_NSD=0 + export CEN_LON=-62.0 + export CEN_LAT=25.0 + export LON1=-114.5 + export LAT1=-5.0 + export LON2=-9.5 + export LAT2=55.0 + export DLON=0.03 + export DLAT=0.03 + + # shel.inp + # input.nml + export CPL_IMP_MRG=.true. + export DIAG_TABLE=diag_table_hafs + export FIELD_TABLE=field_table_hafs + + export OCNRES='' + export ICERES='' + export DT_THERM_MOM6='' + + # Set WW3 component defaults + export_ww3 + # default hafs with no ice + export WW3_DOMAIN=natl_6m + export WW3_MODDEF=mod_def.${WW3_DOMAIN} + export WW3_ICE='F' + export WW3_OUTPARS="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" + + # Set CMEPS component defaults + export_cmeps + # default hafs + export ocn_model=hycom + export CPLMODE=hafs + export MESH_WAV=mesh.hafs.nc } export_hafs () { -export FV3=true -export S2S=false -export HAFS=true -export AQM=false -export DATM_CDEPS=false -export DOCN_CDEPS=false -export CDEPS_INLINE=false -export INPES=$INPES_dflt -export JNPES=$JNPES_dflt -export NTILES=1 -export IMFSHALCNV=2 -export IMFDEEPCNV=2 -export HYBEDMF=.false. -export SATMEDMF=.true. -export MONINQ_FAC=-1.0 -export HURR_PBL=.true. -export ISATMEDMF=1 -export IOPT_SFC=1 -export IOPT_DVEG=2 -export IOPT_CRS=1 -export IOPT_RAD=1 -export IOPT_ALB=2 -export IOPT_STC=1 -export LSM=1 -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export IMP_PHYSICS=11 -export IAER=111 -export CNVGWD=.false. -export LTAEROSOL=.false. -export CDMBWD=1.0,1.0,1.0,1.0 -export LHEATSTRG=.false. -export LRADAR=.true. - -export FV_CORE_TAU=5. -export RF_CUTOFF=30.e2 -export RF_CUTOFF_NEST=50.e2 - -export IS_MOVING_NEST=".false." -export VORTEX_TRACKER=0 -export NTRACK=0 -export MOVE_CD_X=0 -export MOVE_CD_Y=0 -export CPL_IMP_MRG=.true. - -export OUTPUT_GRID='' -export IMO='' -export JMO='' -export CEN_LON='' -export CEN_LAT='' -export LON1='' -export LAT1='' -export LON2='' -export LAT2='' -export DLON='' -export DLAT='' -export STDLAT1='' -export STDLAT2='' -export NX='' -export NY='' -export DX='' -export DY='' - -export OUTPUT_GRID_2='' -export IMO_2='' -export JMO_2='' -export CEN_LON_2='' -export CEN_LAT_2='' -export LON1_2='' -export LAT1_2='' -export LON2_2='' -export LAT2_2='' -export DLON_2='' -export DLAT_2='' -export STDLAT1_2='' -export STDLAT2_2='' -export NX_2='' -export NY_2='' -export DX_2='' -export DY_2='' - -export OUTPUT_GRID_3='' -export IMO_3='' -export JMO_3='' -export CEN_LON_3='' -export CEN_LAT_3='' -export LON1_3='' -export LAT1_3='' -export LON2_3='' -export LAT2_3='' -export DLON_3='' -export DLAT_3='' -export STDLAT1_3='' -export STDLAT2_3='' -export NX_3='' -export NY_3='' -export DX_3='' -export DY_3='' - -export OUTPUT_GRID_4='' -export IMO_4='' -export JMO_4='' -export CEN_LON_4='' -export CEN_LAT_4='' -export LON1_4='' -export LAT1_4='' -export LON2_4='' -export LAT2_4='' -export DLON_4='' -export DLAT_4='' -export STDLAT1_4='' -export STDLAT2_4='' -export NX_4='' -export NY_4='' -export DX_4='' -export DY_4='' - -export OUTPUT_GRID_5='' -export IMO_5='' -export JMO_5='' -export CEN_LON_5='' -export CEN_LAT_5='' -export LON1_5='' -export LAT1_5='' -export LON2_5='' -export LAT2_5='' -export DLON_5='' -export DLAT_5='' -export STDLAT1_5='' -export STDLAT2_5='' -export NX_5='' -export NY_5='' -export DX_5='' -export DY_5='' - -export OUTPUT_GRID_6='' -export IMO_6='' -export JMO_6='' -export CEN_LON_6='' -export CEN_LAT_6='' -export LON1_6='' -export LAT1_6='' -export LON2_6='' -export LAT2_6='' -export DLON_6='' -export DLAT_6='' -export STDLAT1_6='' -export STDLAT2_6='' -export NX_6='' -export NY_6='' -export DX_6='' -export DY_6='' - -export OUTPUT_FH='3 -1' + export FV3=true + export S2S=false + export HAFS=true + export AQM=false + export DATM_CDEPS=false + export DOCN_CDEPS=false + export CDEPS_INLINE=false + export INPES=${INPES_dflt} + export JNPES=${JNPES_dflt} + export NTILES=1 + export IMFSHALCNV=2 + export IMFDEEPCNV=2 + export HYBEDMF=.false. + export SATMEDMF=.true. + export MONINQ_FAC=-1.0 + export HURR_PBL=.true. + export ISATMEDMF=1 + export IOPT_SFC=1 + export IOPT_DVEG=2 + export IOPT_CRS=1 + export IOPT_RAD=1 + export IOPT_ALB=2 + export IOPT_STC=1 + export LSM=1 + export DO_GSL_DRAG_LS_BL=.true. + export DO_GSL_DRAG_SS=.true. + export DO_GSL_DRAG_TOFD=.true. + export IMP_PHYSICS=11 + export IAER=111 + export CNVGWD=.false. + export LTAEROSOL=.false. + export CDMBWD=1.0,1.0,1.0,1.0 + export LHEATSTRG=.false. + export LRADAR=.true. + + export FV_CORE_TAU=5. + export RF_CUTOFF=30.e2 + export RF_CUTOFF_NEST=50.e2 + + export IS_MOVING_NEST=".false." + export VORTEX_TRACKER=0 + export NTRACK=0 + export MOVE_CD_X=0 + export MOVE_CD_Y=0 + export CPL_IMP_MRG=.true. + + export OUTPUT_GRID='' + export IMO='' + export JMO='' + export CEN_LON='' + export CEN_LAT='' + export LON1='' + export LAT1='' + export LON2='' + export LAT2='' + export DLON='' + export DLAT='' + export STDLAT1='' + export STDLAT2='' + export NX='' + export NY='' + export DX='' + export DY='' + + export OUTPUT_GRID_2='' + export IMO_2='' + export JMO_2='' + export CEN_LON_2='' + export CEN_LAT_2='' + export LON1_2='' + export LAT1_2='' + export LON2_2='' + export LAT2_2='' + export DLON_2='' + export DLAT_2='' + export STDLAT1_2='' + export STDLAT2_2='' + export NX_2='' + export NY_2='' + export DX_2='' + export DY_2='' + + export OUTPUT_GRID_3='' + export IMO_3='' + export JMO_3='' + export CEN_LON_3='' + export CEN_LAT_3='' + export LON1_3='' + export LAT1_3='' + export LON2_3='' + export LAT2_3='' + export DLON_3='' + export DLAT_3='' + export STDLAT1_3='' + export STDLAT2_3='' + export NX_3='' + export NY_3='' + export DX_3='' + export DY_3='' + + export OUTPUT_GRID_4='' + export IMO_4='' + export JMO_4='' + export CEN_LON_4='' + export CEN_LAT_4='' + export LON1_4='' + export LAT1_4='' + export LON2_4='' + export LAT2_4='' + export DLON_4='' + export DLAT_4='' + export STDLAT1_4='' + export STDLAT2_4='' + export NX_4='' + export NY_4='' + export DX_4='' + export DY_4='' + + export OUTPUT_GRID_5='' + export IMO_5='' + export JMO_5='' + export CEN_LON_5='' + export CEN_LAT_5='' + export LON1_5='' + export LAT1_5='' + export LON2_5='' + export LAT2_5='' + export DLON_5='' + export DLAT_5='' + export STDLAT1_5='' + export STDLAT2_5='' + export NX_5='' + export NY_5='' + export DX_5='' + export DY_5='' + + export OUTPUT_GRID_6='' + export IMO_6='' + export JMO_6='' + export CEN_LON_6='' + export CEN_LAT_6='' + export LON1_6='' + export LAT1_6='' + export LON2_6='' + export LAT2_6='' + export DLON_6='' + export DLAT_6='' + export STDLAT1_6='' + export STDLAT2_6='' + export NX_6='' + export NY_6='' + export DX_6='' + export DY_6='' + + export OUTPUT_FH='3 -1' } + export_hrrr() { -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export FHMAX=12 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV_CORE_TAU=10. -export RF_CUTOFF=7.5e2 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. + export_fv3 + export NPZ=127 + export NPZP=128 + export DT_ATMOS=300 + export SYEAR=2021 + export SMONTH=03 + export SDAY=22 + export SHOUR=06 + export OUTPUT_GRID='gaussian_grid' + export NSTF_NAME='2,0,0,0,0' + export WRITE_DOPOST=.true. + export IAER=5111 + export FHMAX=12 + + export FRAC_GRID=.false. + export FRAC_ICE=.true. + + export FV_CORE_TAU=10. + export RF_CUTOFF=7.5e2 + + export FV3_RUN=lake_control_run.IN + export CCPP_SUITE=FV3_HRRR + export INPUT_NML=rap.nml.IN + export FIELD_TABLE=field_table_thompson_aero_tke + export NEW_DIAGTABLE=diag_table_rap + + export SFCLAY_COMPUTE_FLUX=.true. + + export LKM=1 + export IOPT_LAKE=2 + export IMP_PHYSICS=8 + export DNATS=0 + export DO_SAT_ADJ=.false. + export LRADAR=.true. + export LTAEROSOL=.true. + export IALB=2 + export IEMS=2 + export HYBEDMF=.false. + export DO_MYNNEDMF=.true. + export DO_MYNNSFCLAY=.true. + export DO_DEEP=.false. + export SHAL_CNV=.false. + export IMFSHALCNV=-1 + export IMFDEEPCNV=-1 + export LHEATSTRG=.false. + export LSM=3 + export LSOIL_LSM=9 + export KICE=9 + + export GWD_OPT=3 + export DO_UGWP_V0=.false. + export DO_UGWP_V0_OROG_ONLY=.false. + export DO_GSL_DRAG_LS_BL=.true. + export DO_GSL_DRAG_SS=.true. + export DO_GSL_DRAG_TOFD=.true. + export DO_UGWP_V1=.false. + export DO_UGWP_V1_OROG_ONLY=.false. } + export_hrrr_conus13km() { -export_fv3 -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. + export_fv3 + export SYEAR=2021 + export SMONTH=05 + export SDAY=12 + export SHOUR=16 + export FHMAX=2 + export DT_ATMOS=120 + export RESTART_INTERVAL=1 + export QUILTING=.true. + export WRITE_GROUP=1 + export WRTTASK_PER_GROUP=6 + export NTILES=1 + export WRITE_DOPOST=.false. + export OUTPUT_HISTORY=.true. + export OUTPUT_GRID=lambert_conformal + export OUTPUT_FILE="'netcdf'" + + # Revert these two to GFS_typedefs defaults to avoid a crash: + export SEDI_SEMI=.false. + export DECFL=8 + + export RRFS_SMOKE=.true. + export SEAS_OPT=0 + + export LKM=1 + export SFCLAY_COMPUTE_FLUX=.true. + export IALB=2 + export ICLIQ_SW=2 + export IEMS=2 + export IOVR=3 + export KICE=9 + export LSM=3 + export LSOIL_LSM=9 + export DO_MYNNSFCLAY=.true. + export DO_MYNNEDMF=.true. + export HYBEDMF=.false. + export SHAL_CNV=.false. + export DO_SAT_ADJ=.false. + export DO_DEEP=.false. + export CCPP_SUITE='FV3_HRRR' + export INPES=12 + export JNPES=12 + export NPX=397 + export NPY=233 + export NPZ=65 + export MAKE_NH=.false. + export NA_INIT=0 + export DNATS=0 + export EXTERNAL_IC=.false. + export NGGPS_IC=.false. + export MOUNTAIN=.true. + export WARM_START=.true. + export READ_INCREMENT=.false. + export RES_LATLON_DYNAMICS="'fv3_increment.nc'" + export NPZP=66 + export FHZERO=1.0 + export IMP_PHYSICS=8 + export LDIAG3D=.false. + export QDIAG3D=.false. + export PRINT_DIFF_PGR=.true. + export FHCYC=0.0 + export IAER=1011 + export LHEATSTRG=.false. + export RANDOM_CLDS=.false. + export CNVCLD=.false. + export IMFSHALCNV=-1 + export IMFDEEPCNV=-1 + export CDMBWD='3.5,1.0' + export DO_SPPT=.false. + export DO_SHUM=.false. + export DO_SKEB=.false. + export LNDP_TYPE=0 + export N_VAR_LNDP=0 + + export GWD_OPT=3 + export DO_UGWP_V0=.false. + export DO_UGWP_V0_OROG_ONLY=.false. + export DO_GSL_DRAG_LS_BL=.true. + export DO_GSL_DRAG_SS=.true. + export DO_GSL_DRAG_TOFD=.true. + export DO_UGWP_V1=.false. + export DO_UGWP_V1_OROG_ONLY=.false. + + export FV3_RUN=rrfs_warm_run.IN + export INPUT_NML=rrfs_conus13km_hrrr.nml.IN + export FIELD_TABLE=field_table_thompson_aero_tke_smoke + export DIAG_TABLE=diag_table_hrrr + export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + export FRAC_ICE=.true. } + export_rap_common() { export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 - -export FV_CORE_TAU=10. -export RF_CUTOFF=7.5e2 - -export FV3_RUN=control_run.IN -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke - -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. + export NPZ=127 + export NPZP=128 + export DT_ATMOS=300 + export SYEAR=2021 + export SMONTH=03 + export SDAY=22 + export SHOUR=06 + export OUTPUT_GRID='gaussian_grid' + export NSTF_NAME='2,0,0,0,0' + export WRITE_DOPOST=.true. + export IAER=5111 + + export FV_CORE_TAU=10. + export RF_CUTOFF=7.5e2 + + export FV3_RUN=control_run.IN + export INPUT_NML=rap.nml.IN + export FIELD_TABLE=field_table_thompson_aero_tke + + export LHEATSTRG=.false. + export IMP_PHYSICS=8 + export DNATS=0 + export DO_SAT_ADJ=.false. + export LRADAR=.true. + export LTAEROSOL=.true. + export IALB=2 + export IEMS=2 + export HYBEDMF=.false. + export DO_MYNNEDMF=.true. + export DO_MYNNSFCLAY=.true. } + export_rap() { -export_rap_common - -export DIAG_TABLE=diag_table_rap -export CCPP_SUITE=FV3_RAP - -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. + export_rap_common + + export DIAG_TABLE=diag_table_rap + export CCPP_SUITE=FV3_RAP + + export IMFSHALCNV=3 + export IMFDEEPCNV=3 + export LSM=3 + export LSOIL_LSM=9 + export KICE=9 + + export GWD_OPT=3 + export DO_UGWP_V0=.false. + export DO_UGWP_V0_OROG_ONLY=.false. + export DO_GSL_DRAG_LS_BL=.true. + export DO_GSL_DRAG_SS=.true. + export DO_GSL_DRAG_TOFD=.true. + export DO_UGWP_V1=.false. + export DO_UGWP_V1_OROG_ONLY=.false. } + export_rrfs_v1() { -export_rap_common - -export CCPP_SUITE=FV3_RRFS_v1beta -export DIAG_TABLE=diag_table_rap_noah - -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=2 -export LSOIL_LSM=4 + export_rap_common + + export CCPP_SUITE=FV3_RRFS_v1beta + export DIAG_TABLE=diag_table_rap_noah + + export DO_DEEP=.false. + export SHAL_CNV=.false. + export IMFSHALCNV=-1 + export IMFDEEPCNV=-1 + export LHEATSTRG=.false. + export LSM=2 + export LSOIL_LSM=4 } diff --git a/tests/fv3_conf/compile_slurm.IN_hera b/tests/fv3_conf/compile_slurm.IN_hera index aa84ba5b00..f146fcbe15 100644 --- a/tests/fv3_conf/compile_slurm.IN_hera +++ b/tests/fv3_conf/compile_slurm.IN_hera @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash #SBATCH -e err #SBATCH -o out #SBATCH --account=@[ACCNR] @@ -9,11 +9,14 @@ #SBATCH --job-name="@[JBNME]" set -eux +date_s_start=$(date +%s) +date_start=$(date) +echo -n "${date_s_start}," > job_timestamp.txt +echo "Compile started: ${date_start}" -echo -n " $( date +%s )," > job_timestamp.txt -echo "Compile started: " `date` +"@[PATHRT]/compile.sh" "@[MACHINE_ID]" "@[MAKE_OPT]" "@[COMPILE_ID]" "@[RT_COMPILER]" -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] - -echo "Compile ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt +date_end=$(date) +echo "Compile ended: ${date_end}" +date_s_end=$(date +%s) +echo -n "${date_s_end}," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index 225acbd192..94c3827525 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash #SBATCH -e err #SBATCH -o out #SBATCH --account=@[ACCNR] @@ -11,21 +11,23 @@ ### #SBATCH --exclusive set -eux -echo -n " $( date +%s )," > job_timestamp.txt +date_s_start=$(date +%s) +echo -n "${date_s_start}," > job_timestamp.txt set +x -MACHINE_ID=hera +#MACHINE_ID=hera source ./module-setup.sh -module use $PWD/modulefiles +module use "@[PWD]/modulefiles" module load modules.fv3 module list set -x -echo "Model started: " `date` +date_start=$(date) +echo "Model started: ${date_start}" export MPI_TYPE_DEPTH=20 export OMP_STACKSIZE=512M -export OMP_NUM_THREADS=@[THRD] +export OMP_NUM_THREADS="@[THRD]" export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" @@ -35,7 +37,9 @@ export PSM_SHAREDCONTEXTS=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 -srun --label -n @[TASKS] ./fv3.exe +srun --label -n "@[TASKS]" ./fv3.exe -echo "Model ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt +date_end=$(date) +echo "Model ended: ${date_end}" +date_s_end=$(date +%s) +echo -n "${date_s_end}," >> job_timestamp.txt diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 644a6cfef2..afd7aa49d4 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Apr 12 15:33:44 UTC 2024 +Tue Apr 16 13:22:38 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/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 = 268.779052 - 0: The maximum resident set size (KB) = 1266844 + 0: The total amount of wall time = 272.948924 + 0: The maximum resident set size (KB) = 1272740 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/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 = 954.578049 - 0: The maximum resident set size (KB) = 1253880 + 0: The total amount of wall time = 982.571241 + 0: The maximum resident set size (KB) = 1255996 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 246.936524 - 0: The maximum resident set size (KB) = 1247528 + 0: The total amount of wall time = 236.873154 + 0: The maximum resident set size (KB) = 1244612 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/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 = 242.865330 - 0: The maximum resident set size (KB) = 1248864 + 0: The total amount of wall time = 237.434427 + 0: The maximum resident set size (KB) = 1248872 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/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 = 238.898069 - 0: The maximum resident set size (KB) = 1246768 + 0: The total amount of wall time = 243.270533 + 0: The maximum resident set size (KB) = 1247316 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/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 = 237.211758 - 0: The maximum resident set size (KB) = 1248264 + 0: The total amount of wall time = 238.823501 + 0: The maximum resident set size (KB) = 1249892 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/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 = 244.451475 - 0: The maximum resident set size (KB) = 1243996 + 0: The total amount of wall time = 243.670791 + 0: The maximum resident set size (KB) = 1247032 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Apr 12 16:48:07 UTC 2024 -Elapsed time: 01h:14m:24s. Have a nice day! +Tue Apr 16 14:27:37 UTC 2024 +Elapsed time: 01h:05m:00s. 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 04c54bdef2..98e918adf8 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Apr 8 19:23:40 UTC 2024 +Tue Apr 16 14:29:26 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2519701/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/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 = 1341.650023 - 0: The maximum resident set size (KB) = 1370360 + 0: The total amount of wall time = 1353.491600 + 0: The maximum resident set size (KB) = 1367696 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2519701/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/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 = 389.411111 - 0: The maximum resident set size (KB) = 1359432 + 0: The total amount of wall time = 392.059951 + 0: The maximum resident set size (KB) = 1358372 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2519701/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/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 = 388.613517 - 0: The maximum resident set size (KB) = 1359920 + 0: The total amount of wall time = 392.603751 + 0: The maximum resident set size (KB) = 1359360 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Apr 8 20:26:41 UTC 2024 -Elapsed time: 01h:03m:01s. Have a nice day! +Tue Apr 16 15:32:41 UTC 2024 +Elapsed time: 01h:03m:16s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 40a305b301..b529e6123d 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Tue Apr 9 12:15:38 UTC 2024 +Tue Apr 16 16:39:38 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_654296/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -14,14 +14,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2173.644877 - 0: The maximum resident set size (KB) = 560340 + 0: The total amount of wall time = 2110.742228 + 0: The maximum resident set size (KB) = 556616 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_654296/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2203.053030 - 0: The maximum resident set size (KB) = 550920 + 0: The total amount of wall time = 2222.730378 + 0: The maximum resident set size (KB) = 556012 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_654296/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -51,11 +51,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2229.689107 - 0: The maximum resident set size (KB) = 558500 + 0: The total amount of wall time = 2141.980290 + 0: The maximum resident set size (KB) = 556516 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Apr 9 14:19:17 UTC 2024 -Elapsed time: 02h:03m:40s. Have a nice day! +Tue Apr 16 18:36:16 UTC 2024 +Elapsed time: 01h:56m:39s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index f6ad401817..eca5c613b4 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffacfb6d50c9803809d458a42c634f89aaec8861 +d43ccd1b047697197e01c095515d268a6e53270f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb) + 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) + b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -26,19 +26,325 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_119149 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:07] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:54, 04:59](3078 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:17, 20:59] +PASS -- TEST 'cpld_control_gfsv17_intel' [17:42, 13:53](1692 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:45, 15:16](1828 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:27, 07:26](958 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:05, 15:48](1662 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:13, 09:32] +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:54, 21:26](1711 MB) + +PASS -- COMPILE 's2swa_intel' [21:15, 19:40] +PASS -- TEST 'cpld_control_p8_intel' [10:53, 05:44](3091 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:53, 05:41](3092 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:23, 03:19](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:18, 05:41](3129 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:11, 03:22](3181 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:04, 05:36](3095 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:22, 04:36](3398 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:15, 05:38](3101 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:03, 08:52](3636 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [18:16, 06:04](3614 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [41:36, 10:07](4343 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [44:57, 07:35](4648 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:53, 05:20](3067 MB) + +PASS -- COMPILE 's2sw_intel' [21:16, 19:11] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:59, 04:16](1681 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:17, 04:15](1736 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:14, 09:16] +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_debug_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:14, 08:54] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:41, 05:15](1708 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:24] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 04:20](1735 MB) + +PASS -- COMPILE 's2s_intel' [15:15, 14:25] +PASS -- TEST 'cpld_control_c48_intel' [08:42, 06:37](2673 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:17, 23:07] +PASS -- TEST 'cpld_control_p8_faster_intel' [09:14, 05:31](3101 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:15, 19:32] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:03, 14:04](1701 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:27](1016 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:13, 16:02](1669 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:19, 08:56] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:23, 23:00](1714 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:17, 12:37] +PASS -- TEST 'control_flake_intel' [05:10, 03:26](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:58, 02:05](621 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:11](627 MB) +PASS -- TEST 'control_latlon_intel' [04:00, 02:05](619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:01, 02:08](622 MB) +PASS -- TEST 'control_c48_intel' [06:53, 05:18](734 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:52, 05:19](737 MB) +PASS -- TEST 'control_c192_intel' [11:08, 07:57](738 MB) +PASS -- TEST 'control_c384_intel' [16:40, 08:20](1062 MB) +PASS -- TEST 'control_c384gdas_intel' [21:25, 07:27](1196 MB) +PASS -- TEST 'control_stochy_intel' [03:00, 01:26](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:56, 00:53](440 MB) +PASS -- TEST 'control_lndp_intel' [03:01, 01:23](629 MB) +PASS -- TEST 'control_iovr4_intel' [04:21, 02:08](624 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:07](622 MB) +PASS -- TEST 'control_p8_intel' [05:07, 02:31](1593 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 02:29](1604 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 02:28](1601 MB) +PASS -- TEST 'control_restart_p8_intel' [03:35, 01:27](802 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:29, 02:31](1595 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:24](803 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:25, 02:35](1601 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:20, 04:23](1604 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:22, 03:20](1654 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:28, 02:33](1605 MB) +PASS -- TEST 'merra2_thompson_intel' [07:25, 03:02](1610 MB) +PASS -- TEST 'regional_control_intel' [06:33, 04:33](632 MB) +PASS -- TEST 'regional_restart_intel' [04:14, 02:36](802 MB) +PASS -- TEST 'regional_decomp_intel' [07:11, 04:46](631 MB) +PASS -- TEST 'regional_noquilt_intel' [08:09, 04:30](1163 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:01, 04:32](625 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:13, 04:32](628 MB) +PASS -- TEST 'regional_wofs_intel' [09:07, 05:38](1599 MB) + +PASS -- COMPILE 'rrfs_intel' [12:13, 11:15] +PASS -- TEST 'rap_control_intel' [09:24, 06:06](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:07, 03:45](1193 MB) +PASS -- TEST 'rap_decomp_intel' [09:20, 06:23](1005 MB) +PASS -- TEST 'rap_restart_intel' [05:36, 03:18](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:53, 06:06](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 06:23](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:36, 04:35](882 MB) +PASS -- TEST 'hrrr_control_intel' [05:59, 03:15](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:52, 03:20](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:59, 02:49](1088 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:14, 01:46](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:35, 06:02](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:00, 07:24](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:08](1952 MB) + +PASS -- COMPILE 'csawmg_intel' [11:13, 10:20] +PASS -- TEST 'control_csawmg_intel' [08:30, 05:51](695 MB) +PASS -- TEST 'control_csawmgt_intel' [08:24, 05:46](692 MB) +PASS -- TEST 'control_ras_intel' [04:48, 02:54](658 MB) + +PASS -- COMPILE 'wam_intel' [10:13, 09:16] +PASS -- TEST 'control_wam_intel' [03:40, 01:54](380 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:24, 12:53] +PASS -- TEST 'control_p8_faster_intel' [05:12, 02:24](1599 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 04:17](627 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 08:42] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:35](796 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:33](792 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:41, 02:51](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:49, 02:36](797 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:01](842 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 03:56](838 MB) +PASS -- TEST 'control_ras_debug_intel' [03:49, 02:39](807 MB) +PASS -- TEST 'control_diag_debug_intel' [06:22, 02:47](855 MB) +PASS -- TEST 'control_debug_p8_intel' [04:27, 02:40](1627 MB) +PASS -- TEST 'regional_debug_intel' [18:18, 16:16](669 MB) +PASS -- TEST 'rap_control_debug_intel' [06:49, 04:47](1181 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:43, 04:38](1180 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_gf_debug_intel' [, ]( MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 04:38](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 04:46](1183 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:22, 05:00](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:51, 04:52](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:48, 04:52](1183 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:47, 04:42](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:40, 04:40](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:36](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:51, 04:49](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:45, 07:43](1181 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:50, 04:36](1176 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:52, 05:24](1186 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:49, 04:42](1183 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:08](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:38, 05:30] +PASS -- TEST 'control_wam_debug_intel' [05:38, 04:35](421 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:18, 09:54] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:56, 03:40](1059 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:33, 05:15](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 02:49](886 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 02:55](888 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:27, 03:53](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:03, 01:32](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:19, 12:01] +PASS -- TEST 'conus13km_control_intel' [07:02, 01:56](1088 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:00, 01:01](1087 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:57, 01:09](975 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 10:02] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 03:42](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:49] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:54, 04:35](1056 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:33](1055 MB) +PASS -- TEST 'conus13km_debug_intel' [18:36, 13:48](1135 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:08, 13:38](819 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 13:31](1203 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:16, 05:33] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:50, 04:36](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [17:23, 15:59] +PASS -- TEST 'hafs_regional_atm_intel' [08:08, 04:40](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:58, 05:09](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:01, 06:32](782 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:49, 10:58](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:28, 12:08](810 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:00, 04:42](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 05:50](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:17, 02:24](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:22, 06:24](452 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:11, 03:22](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:02, 03:12](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:39, 03:53](590 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:18](427 MB) +PASS -- TEST 'gnv1_nested_intel' [05:53, 03:27](790 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:17, 06:42] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:45, 12:06](614 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:19, 19:45] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:05, 07:12](636 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:36, 07:16](693 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:19, 16:10] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 05:21](683 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:14, 14:17] +PASS -- TEST 'hafs_regional_docn_intel' [09:00, 05:38](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 05:40](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:43, 16:14](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:17, 07:41] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:45, 02:31](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:02, 01:36](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:49, 02:24](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:49, 02:27](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:44, 02:27](649 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:30](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:32](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 02:23](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:44, 05:47](690 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:55, 05:46](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:28](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:05, 03:59](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:06, 04:01](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:16, 04:57] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:56, 05:06](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:19, 07:42] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:42, 02:31](760 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:24] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:49, 01:15](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:36, 01:08](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:38, 00:47](450 MB) + +PASS -- COMPILE 'atml_intel' [14:18, 13:08] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:58, 07:38](1632 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:51, 07:42](1627 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB) + +PASS -- COMPILE 'atmw_intel' [14:18, 12:51] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:34](1631 MB) + +PASS -- COMPILE 'atmwm_intel' [14:18, 12:59] +PASS -- TEST 'control_atmwav_intel' [03:28, 01:29](638 MB) + +PASS -- COMPILE 'atmaero_intel' [12:20, 11:11] +PASS -- TEST 'atmaero_control_p8_intel' [07:28, 03:48](2946 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:31, 04:19](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:57, 04:32](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:12, 06:27] +PASS -- TEST 'regional_atmaq_debug_intel' [33:27, 21:57](4534 MB) + +SYNOPSIS: +Starting Date/Time: 20240416 14:22:27 +Ending Date/Time: 20240416 16:12:18 +Total Time: 01h:50m:38s +Compiles Completed: 38/38 +Tests Completed: 172/175 +Failed Tests: +* TEST cpld_debug_p8_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_cpld_debug_p8_intel.log +* TEST hrrr_gf_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_hrrr_gf_debug_intel.log +* TEST control_restart_p8_atmlnd_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_control_restart_p8_atmlnd_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d43ccd1b047697197e01c095515d268a6e53270f + +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) + 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) + b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) NOTES: @@ -48,271 +354,29 @@ 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-20240408 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_92899 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_55240 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:24, 20:18] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:36, 05:02](3078 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:27, 20:57] -PASS -- TEST 'cpld_control_gfsv17_intel' [17:04, 13:49](1690 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:24, 15:16](1822 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:22](964 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:04, 15:50](1668 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:24, 10:03] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:25, 21:27](1704 MB) - -PASS -- COMPILE 's2swa_intel' [21:24, 20:06] -PASS -- TEST 'cpld_control_p8_intel' [09:42, 05:42](3094 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:51, 05:45](3090 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:21, 03:23](3151 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:42, 05:45](3124 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 03:29](3177 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:12, 05:40](3092 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:12, 04:42](3385 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:47, 05:41](3099 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:15, 09:03](3636 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:47, 06:12](3616 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:56, 10:11](4343 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:44, 07:28](4650 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 05:23](3068 MB) - -PASS -- COMPILE 's2sw_intel' [20:26, 19:30] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:17, 04:16](1682 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:23, 04:22](1735 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:16, 10:02] -PASS -- TEST 'cpld_debug_p8_intel' [10:17, 07:53](3155 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:24, 09:22] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:21](1709 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:24, 14:39] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:52, 04:24](1733 MB) - -PASS -- COMPILE 's2s_intel' [15:18, 15:03] -PASS -- TEST 'cpld_control_c48_intel' [08:21, 06:44](2666 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:22, 23:58] -PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 05:38](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:23, 20:12] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:08, 14:11](1708 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:03, 07:30](1017 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:15, 16:03](1670 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:25, 09:29] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:18, 22:53](1718 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:27, 13:29] -PASS -- TEST 'control_flake_intel' [04:56, 03:31](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:46, 02:08](623 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:56, 02:14](626 MB) -PASS -- TEST 'control_latlon_intel' [03:47, 02:11](619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:50, 02:14](624 MB) -PASS -- TEST 'control_c48_intel' [06:54, 05:17](736 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:55, 05:15](734 MB) -PASS -- TEST 'control_c192_intel' [10:08, 07:56](740 MB) -PASS -- TEST 'control_c384_intel' [15:37, 08:31](1058 MB) -PASS -- TEST 'control_c384gdas_intel' [18:02, 07:43](1199 MB) -PASS -- TEST 'control_stochy_intel' [02:46, 01:28](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:44, 01:00](441 MB) -PASS -- TEST 'control_lndp_intel' [02:50, 01:25](628 MB) -PASS -- TEST 'control_iovr4_intel' [03:53, 02:11](623 MB) -PASS -- TEST 'control_iovr5_intel' [03:42, 02:08](621 MB) -PASS -- TEST 'control_p8_intel' [04:43, 02:34](1595 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:51, 02:37](1599 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:59, 02:31](1603 MB) -PASS -- TEST 'control_restart_p8_intel' [03:35, 01:29](798 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:56, 02:36](1586 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:25](805 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:37](1595 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:27, 04:26](1601 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:48, 03:24](1656 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:57, 02:44](1608 MB) -PASS -- TEST 'merra2_thompson_intel' [05:55, 03:06](1604 MB) -PASS -- TEST 'regional_control_intel' [06:12, 04:36](629 MB) -PASS -- TEST 'regional_restart_intel' [04:17, 02:31](799 MB) -PASS -- TEST 'regional_decomp_intel' [06:12, 04:51](632 MB) -PASS -- TEST 'regional_noquilt_intel' [06:09, 04:31](1157 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:19, 04:35](626 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:05, 04:36](632 MB) -PASS -- TEST 'regional_wofs_intel' [07:06, 05:40](1603 MB) - -PASS -- COMPILE 'rrfs_intel' [12:19, 11:39] -PASS -- TEST 'rap_control_intel' [08:35, 06:07](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:47, 03:58](1193 MB) -PASS -- TEST 'rap_decomp_intel' [08:41, 06:28](1006 MB) -PASS -- TEST 'rap_restart_intel' [05:28, 03:12](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:26, 06:07](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:24, 06:26](1009 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:31, 04:33](882 MB) -PASS -- TEST 'hrrr_control_intel' [05:31, 03:18](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:28, 03:21](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 02:50](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:00, 01:48](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:14, 05:59](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:42, 07:19](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:56, 07:07](1953 MB) - -PASS -- COMPILE 'csawmg_intel' [11:24, 10:45] -PASS -- TEST 'control_csawmg_intel' [08:26, 05:54](692 MB) -PASS -- TEST 'control_csawmgt_intel' [08:20, 05:50](696 MB) -PASS -- TEST 'control_ras_intel' [03:56, 02:53](657 MB) - -PASS -- COMPILE 'wam_intel' [11:19, 09:56] -PASS -- TEST 'control_wam_intel' [03:36, 01:54](387 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:20, 13:05] -PASS -- TEST 'control_p8_faster_intel' [05:00, 02:23](1597 MB) -PASS -- TEST 'regional_control_faster_intel' [06:04, 04:22](629 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:25, 09:05] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:34](798 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:47, 02:37](794 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:49, 02:52](801 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:35](802 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:20, 04:03](839 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:21, 03:54](839 MB) -PASS -- TEST 'control_ras_debug_intel' [03:44, 02:40](807 MB) -PASS -- TEST 'control_diag_debug_intel' [04:39, 02:40](858 MB) -PASS -- TEST 'control_debug_p8_intel' [04:16, 02:37](1623 MB) -PASS -- TEST 'regional_debug_intel' [17:14, 16:02](665 MB) -PASS -- TEST 'rap_control_debug_intel' [05:39, 04:45](1180 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:38, 04:36](1179 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:39, 04:45](1184 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:47, 04:42](1182 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:35, 04:42](1183 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:12, 04:54](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:44](1184 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:40, 04:55](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:43, 04:48](1182 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:44, 04:49](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:54, 04:42](1177 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:39, 04:40](1184 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:50, 07:40](1181 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:51, 04:36](1176 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:45, 05:36](1185 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:54, 04:43](1179 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:25, 08:00](1181 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:20, 06:02] -PASS -- TEST 'control_wam_debug_intel' [05:43, 04:40](426 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:20, 10:13] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:26, 03:37](1056 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:19, 05:09](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 02:48](882 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 02:57](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:19, 03:54](797 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:54, 01:36](778 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:15, 12:12] -PASS -- TEST 'conus13km_control_intel' [04:16, 01:52](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:06](1085 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:10](978 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:14, 10:24] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:19, 03:39](911 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:18, 06:24] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:48, 04:37](1058 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:29](1057 MB) -PASS -- TEST 'conus13km_debug_intel' [15:53, 13:22](1134 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:52, 13:30](821 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 13:47](1207 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:57] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:45, 04:46](1081 MB) - -PASS -- COMPILE 'hafsw_intel' [17:23, 16:46] -PASS -- TEST 'hafs_regional_atm_intel' [07:07, 04:42](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 05:18](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:00, 06:42](779 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:21, 11:03](796 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:33, 12:08](820 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:55, 04:37](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:53, 05:51](491 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:15, 02:28](393 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:17, 06:21](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:18, 03:19](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:15](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:04](593 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:20](427 MB) -PASS -- TEST 'gnv1_nested_intel' [05:37, 03:29](786 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:14, 07:29] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 12:04](612 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:23, 20:15] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:48, 07:07](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:09, 07:13](692 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:21, 17:28] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:17, 05:26](676 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:22, 14:46] -PASS -- TEST 'hafs_regional_docn_intel' [07:59, 05:43](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:53, 05:41](739 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:35, 16:16](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:18, 08:05] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:43, 02:30](762 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:36](737 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:39, 02:30](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:41, 02:29](637 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:43, 02:30](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:37, 02:30](762 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:39](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:21](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:51, 05:49](689 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:44, 05:46](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:29](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 03:59](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:46, 04:04](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:27] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:07](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:09] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:31, 02:36](750 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:28] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:56, 01:20](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:49, 01:11](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:35, 00:47](453 MB) - -PASS -- COMPILE 'atml_intel' [14:20, 13:30] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:39, 07:40](1631 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:34, 07:20](1639 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:34, 03:42](855 MB) - -PASS -- COMPILE 'atmw_intel' [14:20, 13:13] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:40, 01:34](1633 MB) - -PASS -- COMPILE 'atmwm_intel' [14:25, 13:11] -PASS -- TEST 'control_atmwav_intel' [03:01, 01:30](639 MB) - -PASS -- COMPILE 'atmaero_intel' [12:20, 11:39] -PASS -- TEST 'atmaero_control_p8_intel' [05:54, 03:40](2950 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:27](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 04:40](3009 MB) - -PASS -- COMPILE 'atmaq_intel' [12:20, 11:12] - -PASS -- COMPILE 'atmaq_debug_intel' [07:23, 06:46] -PASS -- TEST 'regional_atmaq_debug_intel' [26:02, 22:21](4532 MB) +PASS -- COMPILE 's2swa_debug_intel' [10:18, 09:13] +PASS -- TEST 'cpld_debug_p8_intel' [11:29, 07:46](3155 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:25] +PASS -- TEST 'hrrr_gf_debug_intel' [05:42, 04:38](1183 MB) + +PASS -- COMPILE 'atml_intel' [14:19, 12:54] +PASS -- TEST 'control_p8_atmlnd_intel' [10:09, 06:20](1641 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 03:54](850 MB) SYNOPSIS: -Starting Date/Time: 20240411 14:32:19 -Ending Date/Time: 20240411 16:01:58 -Total Time: 01h:30m:40s -Compiles Completed: 39/39 -Tests Completed: 175/175 +Starting Date/Time: 20240416 16:43:55 +Ending Date/Time: 20240416 17:16:53 +Total Time: 00h:33m:08s +Compiles Completed: 3/3 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index a23e9e8eff..8416413b47 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffacfb6d50c9803809d458a42c634f89aaec8861 +684ddd65adbf26b3a8003e05c8af6c4e19be63f8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb) + 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) + b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -26,19 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) NOTES: @@ -48,277 +36,277 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240408 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_65366 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100835 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:11, 21:40] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:52, 08:34](3071 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:16, 25:58] -PASS -- TEST 'cpld_control_gfsv17_intel' [18:34, 14:27](1696 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:39, 14:50](1811 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:07, 06:59](945 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:31, 15:52](1663 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:45] -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:39, 24:32](1701 MB) - -PASS -- COMPILE 's2swa_intel' [41:15, 39:34] -PASS -- TEST 'cpld_control_p8_intel' [12:04, 08:40](3097 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:06, 08:58](3096 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:40, 06:13](3155 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:53, 09:18](3122 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:53, 06:20](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:44, 07:18](3410 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:05, 08:43](3094 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:16, 08:00](3021 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:14, 08:43](3097 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:14, 11:09](3270 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:30, 07:58](3607 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:08, 13:41](4035 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:42, 09:38](4343 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:18, 08:39](3067 MB) - -PASS -- COMPILE 's2sw_intel' [21:13, 19:59] -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 05:13](1686 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:06, 05:46](1731 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:09, 15:29] -PASS -- TEST 'cpld_debug_p8_intel' [13:51, 10:16](3131 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:26, 08:45] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:58, 06:28](1697 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:28, 14:31] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:03, 05:53](1732 MB) - -PASS -- COMPILE 's2s_intel' [19:13, 18:01] -PASS -- TEST 'cpld_control_c48_intel' [09:31, 06:56](2663 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:12, 24:13] -PASS -- TEST 'cpld_control_p8_faster_intel' [13:50, 08:48](3100 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 23:03] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:42, 15:14](1705 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:04, 08:18](1000 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:56, 18:36](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:13, 13:42] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:37, 28:01](1715 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:14, 16:43] -PASS -- TEST 'control_flake_intel' [09:34, 04:06](675 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:00, 02:57](619 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:36, 03:07](626 MB) -PASS -- TEST 'control_latlon_intel' [07:36, 02:36](623 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:01, 03:06](623 MB) -PASS -- TEST 'control_c48_intel' [11:24, 05:42](722 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:22, 05:38](722 MB) -PASS -- TEST 'control_c192_intel' [15:14, 09:08](739 MB) -PASS -- TEST 'control_c384_intel' [23:29, 17:00](1042 MB) -PASS -- TEST 'control_c384gdas_intel' [23:01, 14:52](1183 MB) -PASS -- TEST 'control_stochy_intel' [07:36, 02:15](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:37, 01:35](430 MB) -PASS -- TEST 'control_lndp_intel' [07:23, 02:09](628 MB) -PASS -- TEST 'control_iovr4_intel' [08:47, 03:01](623 MB) -PASS -- TEST 'control_iovr5_intel' [08:48, 03:05](623 MB) -PASS -- TEST 'control_p8_intel' [10:18, 03:22](1606 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:37, 03:49](1608 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:25, 03:51](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [05:16, 01:48](789 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:18, 03:23](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:30, 01:50](793 MB) -PASS -- TEST 'control_decomp_p8_intel' [12:10, 04:01](1596 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:22, 03:13](1687 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:37, 05:58](1606 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:24, 04:13](1659 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:36, 03:55](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [11:25, 04:11](1615 MB) -PASS -- TEST 'regional_control_intel' [10:21, 05:11](615 MB) -PASS -- TEST 'regional_restart_intel' [05:07, 02:56](789 MB) -PASS -- TEST 'regional_decomp_intel' [09:56, 04:58](615 MB) -PASS -- TEST 'regional_2threads_intel' [06:09, 03:07](758 MB) -PASS -- TEST 'regional_noquilt_intel' [07:17, 04:49](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:18, 04:54](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:05, 05:12](615 MB) -PASS -- TEST 'regional_wofs_intel' [09:06, 06:17](1590 MB) - -PASS -- COMPILE 'rrfs_intel' [17:11, 15:17] -PASS -- TEST 'rap_control_intel' [10:04, 07:31](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:22](1186 MB) -PASS -- TEST 'rap_decomp_intel' [10:09, 07:24](1009 MB) -PASS -- TEST 'rap_2threads_intel' [09:16, 06:19](1099 MB) -PASS -- TEST 'rap_restart_intel' [06:29, 03:34](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:55, 06:57](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:55, 07:12](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 05:13](880 MB) -PASS -- TEST 'hrrr_control_intel' [06:59, 04:05](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:19, 03:54](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:05, 03:16](1081 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:37, 02:16](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:49, 07:15](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:39, 08:21](1968 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:39, 08:00](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [15:12, 14:02] -PASS -- TEST 'control_csawmg_intel' [08:58, 06:49](695 MB) -PASS -- TEST 'control_csawmgt_intel' [08:56, 06:50](691 MB) -PASS -- TEST 'control_ras_intel' [05:47, 03:33](657 MB) - -PASS -- COMPILE 'wam_intel' [16:14, 14:11] -PASS -- TEST 'control_wam_intel' [05:00, 02:10](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:17, 18:30] -PASS -- TEST 'control_p8_faster_intel' [06:46, 03:50](1608 MB) -PASS -- TEST 'regional_control_faster_intel' [07:51, 05:06](615 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:11, 12:32] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:05, 03:14](778 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:12, 03:36](783 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:43, 03:37](786 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:40, 03:29](790 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:39](826 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:44, 05:03](827 MB) -PASS -- TEST 'control_ras_debug_intel' [05:31, 03:36](796 MB) -PASS -- TEST 'control_diag_debug_intel' [05:35, 03:24](844 MB) -PASS -- TEST 'control_debug_p8_intel' [06:58, 04:14](1622 MB) -PASS -- TEST 'regional_debug_intel' [20:29, 16:47](637 MB) -PASS -- TEST 'rap_control_debug_intel' [07:46, 05:16](1170 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:52, 05:15](1166 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:30, 05:27](1169 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:23, 05:38](1168 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:09, 05:31](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:01, 05:20](1253 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:53, 05:13](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:44, 05:10](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:41, 05:07](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:58, 05:28](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:12, 05:04](1168 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:57, 05:11](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:40, 08:16](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:33, 05:38](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:47, 06:16](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:44, 05:29](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:20, 08:56](1171 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:08, 10:08] -PASS -- TEST 'control_wam_debug_intel' [09:54, 05:30](394 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:16, 14:24] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:21, 03:49](1050 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:16, 05:55](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:18, 03:28](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:19, 05:24](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:18, 02:59](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:06, 03:41](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:06, 04:34](784 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 01:45](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:13, 17:47] -PASS -- TEST 'conus13km_control_intel' [06:20, 03:18](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:51, 01:15](1075 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:45, 01:59](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:14, 13:56] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:20, 04:44](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 09:36] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:36](1046 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:32, 04:59](1046 MB) -PASS -- TEST 'conus13km_debug_intel' [17:47, 14:21](1127 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:47, 14:21](802 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:18, 08:24](1108 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:30, 14:22](1193 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:12, 10:43] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:56, 05:09](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [21:10, 19:52] -PASS -- TEST 'hafs_regional_atm_intel' [08:37, 05:27](707 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 04:43](1061 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:54, 07:58](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:22, 11:50](790 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:46, 12:56](804 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:30, 05:24](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:48, 06:45](496 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:25, 02:55](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:10, 08:19](434 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:56, 03:57](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:17, 03:40](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:07, 04:50](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:39, 01:49](401 MB) -PASS -- TEST 'gnv1_nested_intel' [09:51, 04:27](769 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [17:10, 15:21] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:25, 13:25](584 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:11, 22:35] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 07:46](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:31, 08:06](788 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:18, 19:51] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:35, 06:07](789 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:11, 18:27] -PASS -- TEST 'hafs_regional_docn_intel' [11:08, 06:34](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:02, 06:32](729 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:15, 20:16](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:54] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 02:37](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:27, 01:39](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:29, 02:25](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:29, 02:27](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:29](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:35, 02:35](758 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 02:37](758 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 02:26](637 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:02](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:17](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:38](758 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:43](2013 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:00, 04:37](2012 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [14:09, 12:26] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:22, 05:40](741 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:11, 13:08] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:29, 02:43](759 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [07:11, 05:14] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:08, 04:45](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:23, 02:26](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:51, 01:20](456 MB) - -PASS -- COMPILE 'atml_intel' [17:09, 15:52] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:28, 08:50](1641 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:45, 09:02](1641 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:00, 04:46](837 MB) - -PASS -- COMPILE 'atmw_intel' [17:14, 15:33] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:30, 03:13](1650 MB) - -PASS -- COMPILE 'atmwm_intel' [53:19, 51:58] -PASS -- TEST 'control_atmwav_intel' [04:02, 02:02](640 MB) - -PASS -- COMPILE 'atmaero_intel' [17:11, 15:53] -PASS -- TEST 'atmaero_control_p8_intel' [10:37, 07:24](2942 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:55, 07:57](3010 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:29, 07:46](3017 MB) - -PASS -- COMPILE 'atmaq_intel' [15:23, 14:01] - -PASS -- COMPILE 'atmaq_debug_intel' [12:08, 10:28] -PASS -- TEST 'regional_atmaq_debug_intel' [23:45, 19:14](4480 MB) +PASS -- COMPILE 's2swa_32bit_intel' [25:06, 24:37] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:14, 08:17](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:06, 24:03] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:28, 13:41](1687 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:02, 14:24](1810 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:29, 06:48](947 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:23, 14:53](1671 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:10, 14:56] +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:17, 23:53](1709 MB) + +PASS -- COMPILE 's2swa_intel' [20:06, 19:37] +PASS -- TEST 'cpld_control_p8_intel' [12:33, 08:41](3101 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:53, 08:38](3099 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:13, 05:53](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:33, 08:34](3124 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:13, 05:52](3178 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:02, 07:03](3410 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:19, 08:28](3101 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:02, 07:41](3022 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:17, 08:39](3102 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:06, 10:58](3275 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:44, 08:09](3605 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:17, 13:19](4043 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:04, 09:47](4343 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:03, 08:29](3067 MB) + +PASS -- COMPILE 's2sw_intel' [19:06, 18:24] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:52, 05:21](1685 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:04, 05:30](1730 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:10, 14:46] +PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:26](3131 MB) + +PASS -- COMPILE 's2sw_debug_intel' [20:06, 19:11] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:36, 06:11](1701 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:06, 17:51] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:10, 05:33](1729 MB) + +PASS -- COMPILE 's2s_intel' [24:06, 23:42] +PASS -- TEST 'cpld_control_c48_intel' [09:56, 06:56](2663 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:06, 23:20] +PASS -- TEST 'cpld_control_p8_faster_intel' [12:01, 08:29](3099 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:10, 24:54] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:04, 15:26](1703 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:59, 07:32](1000 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:50, 18:26](1682 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:06, 13:57] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:15, 26:53](1720 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:07, 15:52] +PASS -- TEST 'control_flake_intel' [05:03, 03:48](675 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:04, 02:35](619 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:40](627 MB) +PASS -- TEST 'control_latlon_intel' [04:02, 02:39](622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:32, 02:43](623 MB) +PASS -- TEST 'control_c48_intel' [07:24, 05:39](721 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:47, 05:38](721 MB) +PASS -- TEST 'control_c192_intel' [11:21, 08:51](738 MB) +PASS -- TEST 'control_c384_intel' [18:43, 16:51](1042 MB) +PASS -- TEST 'control_c384gdas_intel' [18:32, 14:32](1181 MB) +PASS -- TEST 'control_stochy_intel' [04:02, 01:57](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:13, 01:26](429 MB) +PASS -- TEST 'control_lndp_intel' [04:02, 01:51](628 MB) +PASS -- TEST 'control_iovr4_intel' [04:45, 02:42](623 MB) +PASS -- TEST 'control_iovr5_intel' [04:39, 02:39](623 MB) +PASS -- TEST 'control_p8_intel' [06:07, 03:22](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:38, 03:39](1608 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:07, 03:39](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [04:27, 01:51](790 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:24, 03:46](1595 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:37, 02:34](793 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:19, 03:29](1594 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:53, 03:17](1687 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:34](1607 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:23, 04:13](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:36, 03:59](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [06:47, 04:15](1616 MB) +PASS -- TEST 'regional_control_intel' [06:50, 04:54](615 MB) +PASS -- TEST 'regional_restart_intel' [04:10, 02:37](789 MB) +PASS -- TEST 'regional_decomp_intel' [06:38, 04:58](615 MB) +PASS -- TEST 'regional_2threads_intel' [04:50, 02:59](758 MB) +PASS -- TEST 'regional_noquilt_intel' [06:52, 04:36](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:03, 04:54](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:01, 04:53](615 MB) +PASS -- TEST 'regional_wofs_intel' [11:03, 06:48](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [17:06, 16:37] +PASS -- TEST 'rap_control_intel' [09:23, 07:09](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:08](1185 MB) +PASS -- TEST 'rap_decomp_intel' [09:22, 07:17](1009 MB) +PASS -- TEST 'rap_2threads_intel' [08:17, 06:20](1100 MB) +PASS -- TEST 'rap_restart_intel' [05:14, 03:41](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:28, 06:55](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:14, 07:22](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:54, 05:28](879 MB) +PASS -- TEST 'hrrr_control_intel' [06:10, 03:54](1005 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:10, 04:28](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 03:29](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:38, 02:32](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:24, 06:47](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:38, 08:23](1963 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:40, 08:29](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [13:06, 12:56] +PASS -- TEST 'control_csawmg_intel' [07:50, 06:39](695 MB) +PASS -- TEST 'control_csawmgt_intel' [07:50, 06:37](691 MB) +PASS -- TEST 'control_ras_intel' [04:37, 03:25](657 MB) + +PASS -- COMPILE 'wam_intel' [14:07, 13:10] +PASS -- TEST 'control_wam_intel' [03:40, 02:31](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:08, 17:06] +PASS -- TEST 'control_p8_faster_intel' [06:02, 03:53](1608 MB) +PASS -- TEST 'regional_control_faster_intel' [06:00, 04:38](614 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:06, 13:40] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 03:16](777 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:47, 03:19](781 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:31, 03:19](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:58](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:29](823 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:47, 04:22](825 MB) +PASS -- TEST 'control_ras_debug_intel' [03:26, 02:57](794 MB) +PASS -- TEST 'control_diag_debug_intel' [03:36, 03:00](842 MB) +PASS -- TEST 'control_debug_p8_intel' [04:43, 03:22](1620 MB) +PASS -- TEST 'regional_debug_intel' [19:24, 17:01](634 MB) +PASS -- TEST 'rap_control_debug_intel' [06:31, 05:14](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:31, 05:25](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 05:06](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:47, 05:27](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:10, 05:25](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:33, 05:24](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:03, 05:29](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:52, 05:32](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:52, 05:09](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:36, 05:28](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:30, 04:59](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 05:27](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 08:11](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:48, 05:19](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 06:32](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:38, 05:11](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:51](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:07, 09:24] +PASS -- TEST 'control_wam_debug_intel' [07:33, 05:27](396 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:06, 15:33] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:09, 04:12](1052 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:00, 06:00](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:06, 03:52](886 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 05:31](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 03:07](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:58, 04:12](887 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:02, 04:35](783 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:37, 02:03](765 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:06, 16:50] +PASS -- TEST 'conus13km_control_intel' [04:58, 03:02](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:41](1073 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:40](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 13:53] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:10, 04:35](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:05, 10:37] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:15](1047 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 05:26](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [17:00, 15:05](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:59](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:15, 08:28](1110 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:08, 14:26](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:05, 10:45] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 05:23](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [19:07, 18:27] +PASS -- TEST 'hafs_regional_atm_intel' [07:33, 05:20](707 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:57, 04:46](1057 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:02, 07:57](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:40, 12:09](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 13:08](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:36](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:43, 07:00](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:27, 03:03](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:22, 08:20](444 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 04:06](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:13, 03:39](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:27, 04:38](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:45](401 MB) +PASS -- TEST 'gnv1_nested_intel' [07:16, 04:10](763 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [19:06, 18:29] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:09, 13:17](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:07, 22:44] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:26, 07:53](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:26, 07:49](787 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:10, 20:40] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:08, 06:13](788 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:06, 18:46] +PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:21](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:33](729 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:15, 20:13](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:09, 13:26] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:53, 02:38](758 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:22, 01:45](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 02:35](637 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:42](637 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 02:35](637 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 02:38](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:40](758 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:41](637 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:14, 06:31](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:15, 06:32](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [14:21, 02:47](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:30, 04:38](1952 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [16:28, 04:48](2012 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:06, 09:14] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [17:26, 06:01](739 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:10, 14:14] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:26, 02:53](758 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 04:10] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [16:04, 04:17](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:55, 02:47](455 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:04, 01:24](456 MB) + +PASS -- COMPILE 'atml_intel' [16:10, 16:01] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:56, 08:37](1633 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [22:57, 07:41](1633 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:00, 04:10](837 MB) + +PASS -- COMPILE 'atmw_intel' [19:10, 18:08] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [15:25, 03:18](1648 MB) + +PASS -- COMPILE 'atmwm_intel' [17:10, 16:58] +PASS -- TEST 'control_atmwav_intel' [14:20, 02:58](640 MB) + +PASS -- COMPILE 'atmaero_intel' [22:10, 21:21] +PASS -- TEST 'atmaero_control_p8_intel' [14:33, 06:48](2943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [15:27, 07:33](3012 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:12, 08:01](3019 MB) + +PASS -- COMPILE 'atmaq_intel' [16:10, 15:21] + +PASS -- COMPILE 'atmaq_debug_intel' [12:10, 11:16] +PASS -- TEST 'regional_atmaq_debug_intel' [32:42, 18:39](4477 MB) SYNOPSIS: -Starting Date/Time: 20240411 15:48:21 -Ending Date/Time: 20240411 17:57:51 -Total Time: 02h:10m:38s +Starting Date/Time: 20240415 16:40:32 +Ending Date/Time: 20240415 18:27:41 +Total Time: 01h:47m:54s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index bf7ba55e79..a7d21eb746 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffacfb6d50c9803809d458a42c634f89aaec8861 +684ddd65adbf26b3a8003e05c8af6c4e19be63f8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,13 +9,13 @@ Submodule hashes used in testing: c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) + 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) NOTES: @@ -25,371 +25,371 @@ 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-20240408 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_569665 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3831458 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:10, 13:08] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 05:34](3109 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:37] -PASS -- TEST 'cpld_control_gfsv17_intel' [19:07, 17:03](1732 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:12, 17:42](2004 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:10, 08:03](1121 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 19:18](1629 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:07, 04:44] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:11, 22:52](1656 MB) - -PASS -- COMPILE 's2swa_intel' [15:10, 13:08] -PASS -- TEST 'cpld_control_p8_intel' [08:11, 05:47](3198 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:18, 05:51](3189 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:27, 03:30](3236 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:11, 05:52](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 03:27](3253 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:09, 05:30](3519 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:09, 05:47](3190 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:12, 04:45](3054 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:22, 05:53](3190 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:16, 10:15](3321 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:39, 06:20](3593 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:55, 09:29](4146 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:03, 06:04](4348 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:12, 05:21](3149 MB) - -PASS -- COMPILE 's2sw_intel' [14:09, 12:33] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:52, 04:45](1718 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:00, 04:22](1761 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:43] -PASS -- TEST 'cpld_debug_p8_intel' [11:13, 08:19](3188 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:15] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:45](1728 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:09, 11:34] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:00, 04:17](1774 MB) - -PASS -- COMPILE 's2s_intel' [13:10, 11:51] -PASS -- TEST 'cpld_control_c48_intel' [11:42, 09:28](2804 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:00] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:14, 05:25](3201 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:58] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 17:13](1761 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:10, 08:22](1148 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 19:50](1632 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 04:12] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:58, 25:13](1674 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:09, 11:42] -PASS -- TEST 'control_flake_intel' [05:18, 03:19](661 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:27](640 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 02:30](646 MB) -PASS -- TEST 'control_latlon_intel' [04:19, 02:28](634 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:29](634 MB) -PASS -- TEST 'control_c48_intel' [08:23, 06:20](843 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:27](847 MB) -PASS -- TEST 'control_c192_intel' [11:37, 09:12](834 MB) -PASS -- TEST 'control_c384_intel' [12:31, 09:10](1278 MB) -PASS -- TEST 'control_c384gdas_intel' [12:38, 07:59](1381 MB) -PASS -- TEST 'control_stochy_intel' [03:18, 01:39](618 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:22, 00:58](469 MB) -PASS -- TEST 'control_lndp_intel' [03:19, 01:33](639 MB) -PASS -- TEST 'control_iovr4_intel' [04:20, 02:26](615 MB) -PASS -- TEST 'control_iovr5_intel' [04:19, 02:26](630 MB) -PASS -- TEST 'control_p8_intel' [06:56, 03:01](1610 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:03, 02:58](1619 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 02:54](1618 MB) -PASS -- TEST 'control_restart_p8_intel' [03:47, 01:35](877 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:58, 02:56](1603 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 01:35](916 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:52, 03:11](1579 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:52, 02:49](1697 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:40, 05:12](1611 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:48, 03:55](1673 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:51, 02:59](1618 MB) -PASS -- TEST 'merra2_thompson_intel' [06:50, 03:27](1592 MB) -PASS -- TEST 'regional_control_intel' [07:35, 05:11](808 MB) -PASS -- TEST 'regional_restart_intel' [08:38, 02:45](1001 MB) -PASS -- TEST 'regional_decomp_intel' [07:38, 05:29](822 MB) -PASS -- TEST 'regional_2threads_intel' [05:39, 03:13](821 MB) -PASS -- TEST 'regional_noquilt_intel' [07:41, 05:06](1339 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:10](829 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:07](829 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 06:41](1888 MB) - -PASS -- COMPILE 'rrfs_intel' [12:10, 10:30] -PASS -- TEST 'rap_control_intel' [09:36, 07:55](1094 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 04:05](1282 MB) -PASS -- TEST 'rap_decomp_intel' [10:35, 08:13](1018 MB) -PASS -- TEST 'rap_2threads_intel' [09:30, 07:17](1133 MB) -PASS -- TEST 'rap_restart_intel' [07:40, 04:02](1084 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:38, 07:42](1090 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:10](1023 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:43, 05:46](1117 MB) -PASS -- TEST 'hrrr_control_intel' [06:32, 04:01](1020 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:31, 04:06](1013 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 03:36](1099 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:26, 02:09](979 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:38](1076 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [16:25, 09:14](1948 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:27, 09:01](2040 MB) - -PASS -- COMPILE 'csawmg_intel' [12:09, 10:32] -PASS -- TEST 'control_csawmg_intel' [12:43, 06:03](738 MB) -PASS -- TEST 'control_csawmgt_intel' [12:40, 05:55](730 MB) -PASS -- TEST 'control_ras_intel' [09:22, 03:17](704 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:07, 03:54] -PASS -- TEST 'control_csawmg_gnu' [10:41, 08:20](534 MB) -PASS -- TEST 'control_csawmgt_gnu' [10:41, 08:08](525 MB) - -PASS -- COMPILE 'wam_intel' [12:09, 10:19] -PASS -- TEST 'control_wam_intel' [08:19, 02:05](636 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 10:45] -PASS -- TEST 'control_p8_faster_intel' [08:47, 02:41](1613 MB) -PASS -- TEST 'regional_control_faster_intel' [10:37, 04:47](832 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:28] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:22, 02:45](789 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:25, 02:48](783 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:18, 03:02](789 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:19, 02:44](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:36, 04:14](832 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:37, 04:03](835 MB) -PASS -- TEST 'control_ras_debug_intel' [06:19, 02:53](791 MB) -PASS -- TEST 'control_diag_debug_intel' [04:25, 02:49](843 MB) -PASS -- TEST 'control_debug_p8_intel' [05:39, 02:53](1610 MB) -PASS -- TEST 'regional_debug_intel' [19:40, 17:03](811 MB) -PASS -- TEST 'rap_control_debug_intel' [06:18, 04:52](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:18, 04:44](1142 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 04:52](1173 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:18, 04:49](1172 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:58](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:06](1256 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:49](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 04:59](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:55](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:19, 04:56](1170 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:46](1176 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:51](1174 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 08:00](1176 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 04:44](1171 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 06:04](1178 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:48](1172 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:23](1176 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:08, 02:42] -PASS -- TEST 'control_csawmg_debug_gnu' [04:37, 02:06](509 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [04:36, 02:07](506 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:08, 03:13] -PASS -- TEST 'control_wam_debug_intel' [07:19, 05:06](474 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:09, 10:08] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 03:51](1146 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:33, 06:24](1033 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:33, 03:23](970 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:06](1069 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 03:09](946 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:35](898 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:34, 04:51](1026 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:22, 01:52](917 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:24] -PASS -- TEST 'conus13km_control_intel' [04:54, 02:05](1181 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:38, 00:53](1104 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:15](1092 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 10:09] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:15](975 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:08, 03:32] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:50](1046 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:47](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [16:51, 14:37](1192 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 13:59](882 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:02](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:45, 14:21](1260 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:24] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:54](1092 MB) - -PASS -- COMPILE 'hafsw_intel' [13:10, 11:43] -PASS -- TEST 'hafs_regional_atm_intel' [07:12, 05:00](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:49](1095 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 07:01](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 13:12](843 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:29, 15:04](873 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 05:33](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 06:43](512 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:39](351 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:38, 07:18](463 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:47](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:46, 03:31](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:47, 04:06](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:14](387 MB) -PASS -- TEST 'gnv1_nested_intel' [06:54, 04:04](778 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:09, 03:53] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:49, 12:48](531 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 12:32] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:59, 08:43](650 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:57, 08:48](720 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:10, 12:12] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:01, 06:22](707 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:10, 11:06] -PASS -- TEST 'hafs_regional_docn_intel' [09:21, 06:31](815 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:19, 06:30](808 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:13](1222 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:08, 06:25] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:45](1136 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:37](1092 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 02:34](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:35](1008 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:35](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:39](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:37](1141 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:32](1007 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 06:41](1048 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:12, 06:14](1034 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:40](1139 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 03:49](2486 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:58](2425 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:04] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:11](1052 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:09, 05:59] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:15, 02:38](1157 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [07:08, 00:59] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:46](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:51](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:33](319 MB) - -PASS -- COMPILE 'atml_intel' [18:12, 11:36] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:03, 04:10](1587 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 04:12](1598 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:14](884 MB) - -PASS -- COMPILE 'atmw_intel' [17:11, 11:16] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:44](1658 MB) - -PASS -- COMPILE 'atmwm_intel' [16:10, 11:15] -PASS -- TEST 'control_atmwav_intel' [03:30, 01:43](655 MB) - -PASS -- COMPILE 'atmaero_intel' [15:10, 10:57] -PASS -- TEST 'atmaero_control_p8_intel' [05:56, 04:01](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:52](3072 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:43, 05:11](3086 MB) - -PASS -- COMPILE 'atmaq_intel' [14:10, 10:16] - -PASS -- COMPILE 'atmaq_debug_intel' [06:07, 03:37] -PASS -- TEST 'regional_atmaq_debug_intel' [31:13, 27:46](4449 MB) - -PASS -- COMPILE 'atm_gnu' [06:07, 04:02] -PASS -- TEST 'control_c48_gnu' [12:26, 10:36](750 MB) -PASS -- TEST 'control_stochy_gnu' [05:20, 03:25](492 MB) -PASS -- TEST 'control_ras_gnu' [06:19, 04:49](499 MB) -PASS -- TEST 'control_p8_gnu' [06:55, 04:39](1251 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:51, 04:33](1253 MB) -PASS -- TEST 'control_flake_gnu' [12:21, 10:23](536 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:07, 03:40] -PASS -- TEST 'rap_control_gnu' [12:31, 10:42](843 MB) -PASS -- TEST 'rap_decomp_gnu' [12:29, 10:52](851 MB) -PASS -- TEST 'rap_2threads_gnu' [11:37, 09:41](925 MB) -PASS -- TEST 'rap_restart_gnu' [07:38, 05:23](569 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:38, 10:47](848 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:31, 10:47](847 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:38, 07:58](574 MB) -PASS -- TEST 'hrrr_control_gnu' [07:32, 05:38](842 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:27, 05:28](830 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:26, 05:04](921 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:26, 05:39](842 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:21, 02:52](555 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:49](654 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:39, 10:28](840 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:07, 03:39] -PASS -- TEST 'control_diag_debug_gnu' [03:27, 01:38](530 MB) -PASS -- TEST 'regional_debug_gnu' [12:41, 10:40](547 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:17, 02:39](849 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:18, 02:35](848 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:35](852 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:18, 02:39](853 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:30, 02:45](938 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 04:01](847 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:36](849 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:16, 02:41](840 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:32](484 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:45](480 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:39](1242 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:17, 02:37](848 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:48](852 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:32, 04:20](854 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:08, 01:53] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:07, 03:42] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:28, 09:28](701 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 04:55](697 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 08:36](749 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:26, 04:32](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:26, 04:55](701 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 06:48](547 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:22, 02:34](536 MB) -PASS -- TEST 'conus13km_control_gnu' [05:48, 03:15](871 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:37, 05:34](877 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:37, 01:47](543 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:08, 05:23] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:35, 05:51](726 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:07, 03:58] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:18, 02:32](703 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:18, 02:28](701 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:45, 06:58](868 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:41, 07:04](562 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:36, 07:18](875 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:37, 06:56](936 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:07, 03:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:18, 02:36](721 MB) - -PASS -- COMPILE 's2swa_gnu' [16:11, 14:42] - -PASS -- COMPILE 's2s_gnu' [16:10, 14:27] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:04, 06:34](1345 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:07, 02:47] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 14:39] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:59, 21:52](1308 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:07, 02:20] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:55, 12:41](1308 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 14:07] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:13, 03:01](690 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:07, 12:41] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:31, 05:42](3190 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:07, 17:08] +PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 17:07](1760 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:11, 17:52](2026 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 08:05](1123 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 19:17](1648 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:07, 04:35] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:04, 22:40](1695 MB) + +PASS -- COMPILE 's2swa_intel' [13:07, 12:42] +PASS -- TEST 'cpld_control_p8_intel' [12:25, 06:09](3213 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:35, 05:56](3228 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:25, 03:28](3239 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:29, 05:58](3247 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 03:28](3282 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:22, 05:42](3537 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:22, 05:57](3201 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:20, 04:57](3060 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:34, 05:56](3223 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:17, 10:28](3357 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:05, 06:08](3632 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:39, 09:54](4165 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:16, 06:15](4361 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:24, 05:36](3175 MB) + +PASS -- COMPILE 's2sw_intel' [13:07, 12:22] +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:16, 04:55](1749 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:21, 04:27](1788 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:06, 04:35] +PASS -- TEST 'cpld_debug_p8_intel' [11:08, 08:33](3241 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:06, 04:06] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:44](1761 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:06, 11:28] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:54, 04:25](1790 MB) + +PASS -- COMPILE 's2s_intel' [12:06, 11:29] +PASS -- TEST 'cpld_control_c48_intel' [11:37, 09:27](2834 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:07, 16:23] +PASS -- TEST 'cpld_control_p8_faster_intel' [07:14, 05:34](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:08, 15:01] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:00, 17:19](1777 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:07, 08:04](1175 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:59, 19:44](1685 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:02] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:52, 25:27](1729 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:07, 11:18] +PASS -- TEST 'control_flake_intel' [04:21, 03:19](711 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:20, 02:23](664 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:23, 02:29](659 MB) +PASS -- TEST 'control_latlon_intel' [03:18, 02:25](662 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:25, 02:27](655 MB) +PASS -- TEST 'control_c48_intel' [07:22, 06:22](877 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 06:22](878 MB) +PASS -- TEST 'control_c192_intel' [10:39, 09:09](855 MB) +PASS -- TEST 'control_c384_intel' [11:30, 09:14](1297 MB) +PASS -- TEST 'control_c384gdas_intel' [11:21, 07:58](1404 MB) +PASS -- TEST 'control_stochy_intel' [02:18, 01:36](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:59](503 MB) +PASS -- TEST 'control_lndp_intel' [02:17, 01:34](661 MB) +PASS -- TEST 'control_iovr4_intel' [03:19, 02:26](656 MB) +PASS -- TEST 'control_iovr5_intel' [04:18, 02:25](659 MB) +PASS -- TEST 'control_p8_intel' [04:51, 02:57](1636 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:55, 02:56](1637 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 02:53](1631 MB) +PASS -- TEST 'control_restart_p8_intel' [03:45, 01:36](891 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:51, 02:56](1617 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:51, 01:36](933 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:54, 02:59](1619 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:51, 02:46](1718 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:45, 05:13](1634 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:53, 03:57](1707 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:58, 03:00](1619 MB) +PASS -- TEST 'merra2_thompson_intel' [07:53, 03:34](1623 MB) +PASS -- TEST 'regional_control_intel' [08:38, 05:12](852 MB) +PASS -- TEST 'regional_restart_intel' [03:35, 02:45](1022 MB) +PASS -- TEST 'regional_decomp_intel' [08:35, 05:32](850 MB) +PASS -- TEST 'regional_2threads_intel' [05:36, 03:18](848 MB) +PASS -- TEST 'regional_noquilt_intel' [07:37, 05:12](1360 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:10](855 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:14](853 MB) +PASS -- TEST 'regional_wofs_intel' [09:35, 06:43](1915 MB) + +PASS -- COMPILE 'rrfs_intel' [13:09, 10:37] +PASS -- TEST 'rap_control_intel' [08:35, 07:42](1102 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 04:09](1302 MB) +PASS -- TEST 'rap_decomp_intel' [10:30, 08:07](1043 MB) +PASS -- TEST 'rap_2threads_intel' [09:31, 07:14](1180 MB) +PASS -- TEST 'rap_restart_intel' [04:41, 04:02](1111 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:36, 07:40](1105 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:31, 08:06](1041 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:38, 05:47](1140 MB) +PASS -- TEST 'hrrr_control_intel' [05:31, 03:55](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:05](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:37](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:09](1006 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:41, 07:33](1098 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:21, 09:19](1998 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 08:59](2068 MB) + +PASS -- COMPILE 'csawmg_intel' [12:06, 10:17] +PASS -- TEST 'control_csawmg_intel' [06:36, 06:01](761 MB) +PASS -- TEST 'control_csawmgt_intel' [08:37, 05:58](760 MB) +PASS -- TEST 'control_ras_intel' [04:18, 03:18](748 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:05, 03:38] +PASS -- TEST 'control_csawmg_gnu' [09:44, 08:17](548 MB) +PASS -- TEST 'control_csawmgt_gnu' [09:43, 08:18](552 MB) + +PASS -- COMPILE 'wam_intel' [11:06, 09:37] +PASS -- TEST 'control_wam_intel' [04:18, 02:04](655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:05, 10:44] +PASS -- TEST 'control_p8_faster_intel' [04:47, 02:36](1645 MB) +PASS -- TEST 'regional_control_faster_intel' [06:37, 04:43](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 04:43] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 02:39](817 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:24, 02:37](802 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:57](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:16, 02:39](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:05](877 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:34, 04:04](868 MB) +PASS -- TEST 'control_ras_debug_intel' [03:17, 02:43](823 MB) +PASS -- TEST 'control_diag_debug_intel' [03:27, 02:42](878 MB) +PASS -- TEST 'control_debug_p8_intel' [03:41, 02:53](1623 MB) +PASS -- TEST 'regional_debug_intel' [18:37, 17:16](840 MB) +PASS -- TEST 'rap_control_debug_intel' [05:19, 04:53](1212 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:18, 04:51](1206 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:19, 04:49](1210 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 04:47](1215 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:49](1212 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:31, 05:07](1292 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 05:04](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 05:03](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:56](1206 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:50](1215 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:18, 04:43](1214 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:18, 04:50](1199 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:18, 08:00](1207 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:51](1209 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 06:05](1214 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:16, 04:44](1207 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:34, 08:26](1217 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:05, 02:51] +PASS -- TEST 'control_csawmg_debug_gnu' [03:35, 02:10](533 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [03:32, 02:10](531 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:06, 03:09] +PASS -- TEST 'control_wam_debug_intel' [06:17, 05:01](518 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:05, 10:08] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:58, 03:56](1167 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:32, 06:24](1053 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:32, 03:23](993 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:07](1070 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:08](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:37](932 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:35, 04:57](1021 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:20, 01:51](929 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:06, 12:27] +PASS -- TEST 'conus13km_control_intel' [03:51, 02:04](1210 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:35, 00:52](1125 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:13](1111 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:05, 10:18] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:11](987 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 03:21] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 04:52](1093 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:17, 04:39](1087 MB) +PASS -- TEST 'conus13km_debug_intel' [15:44, 14:23](1244 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:42, 14:39](926 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:36, 08:07](1159 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:38, 14:52](1308 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:25] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 05:00](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [12:07, 11:52] +PASS -- TEST 'hafs_regional_atm_intel' [08:07, 04:56](736 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:28, 06:01](1121 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:21, 06:54](830 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:12, 13:26](873 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:25, 15:00](890 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:06, 05:26](497 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 06:38](492 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:35, 02:43](378 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:33, 07:10](485 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:44, 03:40](536 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:58, 03:32](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:04](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:13](409 MB) +PASS -- TEST 'gnv1_nested_intel' [06:50, 04:06](802 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:05, 03:45] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 12:44](577 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:06, 12:02] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:52, 08:42](677 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:57, 08:41](742 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 11:43] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:56, 06:29](742 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:06, 11:02] +PASS -- TEST 'hafs_regional_docn_intel' [08:07, 06:26](831 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:04, 06:33](833 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:54, 16:40](1211 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:06, 05:53] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:43](1166 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:37](1103 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:39](1035 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 02:39](1017 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:12, 02:36](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:12, 02:41](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:12, 02:44](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:32](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:28, 06:11](1064 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 06:15](1044 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 02:42](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:48](2373 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 04:09](2490 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 02:59] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:14, 06:11](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 05:55] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:43](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:03] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:49](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:52](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:18, 00:31](330 MB) + +PASS -- COMPILE 'atml_intel' [12:07, 12:00] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:59, 04:08](1612 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:56, 04:06](1621 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 02:14](907 MB) + +PASS -- COMPILE 'atmw_intel' [11:07, 10:35] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:42, 01:45](1680 MB) + +PASS -- COMPILE 'atmwm_intel' [11:07, 10:42] +PASS -- TEST 'control_atmwav_intel' [03:25, 01:42](679 MB) + +PASS -- COMPILE 'atmaero_intel' [12:06, 10:45] +PASS -- TEST 'atmaero_control_p8_intel' [05:50, 03:58](3039 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:52](3107 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 05:04](3116 MB) + +PASS -- COMPILE 'atmaq_intel' [11:06, 10:07] + +PASS -- COMPILE 'atmaq_debug_intel' [04:07, 03:33] +PASS -- TEST 'regional_atmaq_debug_intel' [50:41, 21:09](4521 MB) + +PASS -- COMPILE 'atm_gnu' [04:06, 03:36] +PASS -- TEST 'control_c48_gnu' [11:19, 10:46](765 MB) +PASS -- TEST 'control_stochy_gnu' [04:16, 03:25](509 MB) +PASS -- TEST 'control_ras_gnu' [05:16, 04:46](517 MB) +PASS -- TEST 'control_p8_gnu' [07:50, 04:46](1267 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:48, 04:32](1267 MB) +PASS -- TEST 'control_flake_gnu' [12:17, 10:26](553 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:06, 03:42] +PASS -- TEST 'rap_control_gnu' [13:27, 10:58](864 MB) +PASS -- TEST 'rap_decomp_gnu' [13:27, 10:58](861 MB) +PASS -- TEST 'rap_2threads_gnu' [12:31, 09:47](942 MB) +PASS -- TEST 'rap_restart_gnu' [08:34, 05:24](587 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:26, 10:53](861 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:32, 11:02](862 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [11:36, 08:04](587 MB) +PASS -- TEST 'hrrr_control_gnu' [07:23, 05:37](859 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 05:38](842 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:24, 05:04](933 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [08:25, 05:41](864 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:18, 02:53](573 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:21, 02:52](666 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:33, 10:22](859 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:06, 03:34] +PASS -- TEST 'control_diag_debug_gnu' [02:25, 01:37](552 MB) +PASS -- TEST 'regional_debug_gnu' [16:40, 11:28](566 MB) +PASS -- TEST 'rap_control_debug_gnu' [07:17, 02:35](872 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [07:16, 02:37](873 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [07:16, 02:41](875 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [07:15, 02:35](875 MB) +PASS -- TEST 'rap_diag_debug_gnu' [07:31, 02:54](956 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [08:18, 04:07](869 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:17, 02:36](872 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:19, 02:37](864 MB) +PASS -- TEST 'control_ras_debug_gnu' [05:15, 01:32](508 MB) +PASS -- TEST 'control_stochy_debug_gnu' [05:14, 01:48](496 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:34, 01:39](1256 MB) +PASS -- TEST 'rap_flake_debug_gnu' [05:17, 02:35](871 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:57](874 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:31, 04:23](876 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:07, 01:49] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:06, 03:34] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:25, 09:31](716 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 04:59](714 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:36, 08:44](766 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:23, 04:33](757 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:22, 05:00](719 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:33, 06:57](562 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:21, 02:37](545 MB) +PASS -- TEST 'conus13km_control_gnu' [09:48, 03:16](886 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:36, 05:33](896 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:38, 01:47](567 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:07, 05:26] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 05:44](746 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:06, 03:34] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:16, 02:30](724 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [08:15, 02:33](727 MB) +PASS -- TEST 'conus13km_debug_gnu' [12:45, 06:59](901 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [12:41, 06:54](589 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [12:40, 07:21](903 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:39, 06:52](972 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:40] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [08:17, 02:38](743 MB) + +PASS -- COMPILE 's2swa_gnu' [15:07, 14:38] + +PASS -- COMPILE 's2s_gnu' [16:07, 14:12] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:02, 06:38](1354 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:29] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:07, 14:21] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:01, 27:13](1327 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:07, 02:27] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [23:51, 18:18](1324 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:06, 13:56] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [08:14, 03:11](702 MB) SYNOPSIS: -Starting Date/Time: 20240411 19:38:17 -Ending Date/Time: 20240411 21:19:50 -Total Time: 01h:41m:49s +Starting Date/Time: 20240415 20:36:04 +Ending Date/Time: 20240415 23:17:26 +Total Time: 02h:41m:40s Compiles Completed: 55/55 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index dbc0dc694c..4cd5a52970 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffacfb6d50c9803809d458a42c634f89aaec8861 +684ddd65adbf26b3a8003e05c8af6c4e19be63f8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb) + 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) + b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -26,19 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) NOTES: @@ -48,365 +36,366 @@ 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-20240408 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1950397 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1998392 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:06, 13:11] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:58, 07:34](1893 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:38] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:05, 13:43](1774 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:24, 14:27](2174 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:28](1173 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:50, 15:18](1684 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:31] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:03, 20:23](1727 MB) - -PASS -- COMPILE 's2swa_intel' [13:06, 11:57] -PASS -- TEST 'cpld_control_p8_intel' [09:45, 07:42](2078 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:59, 07:34](2059 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:09, 04:15](1981 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:47, 07:52](1976 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:07, 04:31](1738 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:44, 09:04](2489 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:43, 07:43](2058 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:56, 06:27](1890 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:59, 07:43](2079 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:34, 15:28](2814 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:01, 05:51](2922 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:14, 09:04](3625 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:44, 06:16](3624 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:54, 05:11](2052 MB) - -PASS -- COMPILE 's2sw_intel' [14:06, 12:24] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 07:02](1780 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:52, 03:58](1819 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:05, 06:04] -PASS -- TEST 'cpld_debug_p8_intel' [10:00, 06:52](2068 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:05, 05:51] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:57, 04:43](1788 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:45] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:50, 04:07](1811 MB) - -PASS -- COMPILE 's2s_intel' [11:06, 09:33] -PASS -- TEST 'cpld_control_c48_intel' [09:37, 07:23](2838 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:06, 12:20] -PASS -- TEST 'cpld_control_p8_faster_intel' [09:54, 07:15](2066 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:54] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:50, 13:54](1816 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:59, 06:39](1291 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:53, 15:18](1739 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:07, 03:17] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:50, 21:40](1769 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:05, 08:03] -PASS -- TEST 'control_flake_intel' [04:15, 02:55](719 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:18, 02:09](661 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:14](669 MB) -PASS -- TEST 'control_latlon_intel' [04:15, 02:09](659 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:12](653 MB) -PASS -- TEST 'control_c48_intel' [07:19, 05:49](859 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:21, 05:47](855 MB) -PASS -- TEST 'control_c192_intel' [09:24, 07:55](979 MB) -PASS -- TEST 'control_c384_intel' [11:03, 08:11](1444 MB) -PASS -- TEST 'control_c384gdas_intel' [11:40, 07:23](1524 MB) -PASS -- TEST 'control_stochy_intel' [03:15, 01:29](675 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:53](533 MB) -PASS -- TEST 'control_lndp_intel' [03:15, 01:23](664 MB) -PASS -- TEST 'control_iovr4_intel' [04:17, 02:11](668 MB) -PASS -- TEST 'control_iovr5_intel' [04:15, 02:06](662 MB) -PASS -- TEST 'control_p8_intel' [04:46, 02:34](1641 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:54, 02:37](1642 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:50, 02:29](1650 MB) -PASS -- TEST 'control_restart_p8_intel' [03:54, 01:27](914 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:41, 02:30](1628 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:26](985 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:40, 02:33](1628 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:42, 02:21](1734 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:27, 04:30](1635 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:49, 03:31](1715 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:34](1661 MB) -PASS -- TEST 'merra2_thompson_intel' [04:53, 02:57](1658 MB) -PASS -- TEST 'regional_control_intel' [06:24, 04:41](959 MB) -PASS -- TEST 'regional_restart_intel' [04:24, 02:31](1109 MB) -PASS -- TEST 'regional_decomp_intel' [06:23, 04:49](951 MB) -PASS -- TEST 'regional_2threads_intel' [04:22, 02:58](920 MB) -PASS -- TEST 'regional_noquilt_intel' [06:25, 04:22](1490 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:31](957 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:31](958 MB) -PASS -- TEST 'regional_wofs_intel' [07:23, 05:41](2092 MB) - -PASS -- COMPILE 'rrfs_intel' [09:06, 07:12] -PASS -- TEST 'rap_control_intel' [08:48, 06:30](1199 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:41, 03:37](1390 MB) -PASS -- TEST 'rap_decomp_intel' [08:31, 06:52](1129 MB) -PASS -- TEST 'rap_2threads_intel' [08:29, 06:20](1373 MB) -PASS -- TEST 'rap_restart_intel' [05:40, 03:23](1149 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:35](1195 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 07:03](1134 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:49, 04:54](1193 MB) -PASS -- TEST 'hrrr_control_intel' [05:42, 03:25](1079 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 03:26](1042 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:11](1120 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:53](1024 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:49, 06:25](1181 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:15, 07:51](2003 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 07:26](2206 MB) - -PASS -- COMPILE 'csawmg_intel' [08:05, 06:58] -PASS -- TEST 'control_csawmg_intel' [07:28, 05:22](833 MB) -PASS -- TEST 'control_csawmgt_intel' [07:22, 05:19](848 MB) -PASS -- TEST 'control_ras_intel' [04:12, 02:51](808 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:05, 03:59] -PASS -- TEST 'control_csawmg_gnu' [08:28, 06:35](810 MB) -PASS -- TEST 'control_csawmgt_gnu' [08:28, 06:31](810 MB) - -PASS -- COMPILE 'wam_intel' [08:06, 06:41] -PASS -- TEST 'control_wam_intel' [03:25, 01:53](782 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:45] -PASS -- TEST 'control_p8_faster_intel' [04:47, 02:21](1643 MB) -PASS -- TEST 'regional_control_faster_intel' [06:23, 04:00](957 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:41] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:15](819 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:18, 02:14](833 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:12, 02:30](838 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:12, 02:16](829 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:21, 03:32](875 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:21, 03:21](881 MB) -PASS -- TEST 'control_ras_debug_intel' [05:12, 02:15](839 MB) -PASS -- TEST 'control_diag_debug_intel' [04:17, 02:20](884 MB) -PASS -- TEST 'control_debug_p8_intel' [04:31, 02:21](1659 MB) -PASS -- TEST 'regional_debug_intel' [15:24, 14:04](901 MB) -PASS -- TEST 'rap_control_debug_intel' [05:12, 03:58](1225 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:12, 03:57](1220 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:12, 03:54](1218 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:12, 03:57](1228 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:12, 04:07](1216 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:21, 04:12](1301 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:13, 04:11](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:12, 04:05](1219 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:13, 04:03](1211 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:12, 04:03](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:12, 03:56](1217 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:12, 04:02](1228 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:13, 06:36](1227 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 04:02](1216 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:12, 05:13](1222 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:13, 04:01](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:43, 06:53](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:34] -PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:48](795 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [03:24, 01:48](791 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:06, 02:54] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:05, 06:49] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:40, 03:18](1276 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 05:23](1137 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:50, 02:51](1018 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:11](1280 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:38](1046 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:06](973 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:46, 04:06](1094 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:24, 01:36](959 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:05, 09:00] -PASS -- TEST 'conus13km_control_intel' [03:31, 01:45](1297 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:22, 00:52](1208 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:23, 01:06](1147 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 07:00] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:26, 03:49](1062 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:49] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:13, 03:54](1094 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:12, 03:50](1100 MB) -PASS -- TEST 'conus13km_debug_intel' [13:25, 11:48](1343 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:23, 11:56](989 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:24, 06:51](1234 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:22, 11:56](1397 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:46] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:13, 03:56](1148 MB) - -PASS -- COMPILE 'hafsw_intel' [11:06, 09:44] -PASS -- TEST 'hafs_regional_atm_intel' [09:00, 05:16](873 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:19, 04:58](1286 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:08, 06:32](942 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:58, 14:13](972 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:06, 15:06](990 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:46, 05:36](604 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:16, 07:04](623 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:39, 02:57](433 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:54, 08:04](544 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:44, 04:00](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:44, 03:45](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:44, 04:49](680 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:23, 01:28](448 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:07] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:38, 11:25](635 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:36] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:47, 16:49](735 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:54, 16:47](809 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:32] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:49, 10:36](833 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:06, 10:28] -PASS -- TEST 'hafs_regional_docn_intel' [15:56, 05:32](936 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:58, 05:40](942 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:35, 16:36](1345 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:25] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:10, 02:14](1152 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:20](1098 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:09, 02:07](1010 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:10, 02:09](1016 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:09, 02:11](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:10, 02:13](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:10, 02:14](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:09, 02:09](1007 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:47, 04:59](1151 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:42, 04:53](1144 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:08, 02:12](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:10, 03:09](2378 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:11, 03:04](2437 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:58] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:11, 05:12](1057 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:05, 06:13] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:09, 02:10](1147 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:48] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:22, 00:51](334 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](563 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:15, 00:31](557 MB) - -PASS -- COMPILE 'atml_intel' [09:06, 07:51] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:00, 05:22](1641 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:52, 05:36](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:44](945 MB) - -PASS -- COMPILE 'atmw_intel' [11:06, 09:17] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:36](1708 MB) - -PASS -- COMPILE 'atmwm_intel' [11:06, 09:26] -PASS -- TEST 'control_atmwav_intel' [03:38, 01:30](692 MB) - -PASS -- COMPILE 'atmaero_intel' [09:06, 07:22] -PASS -- TEST 'atmaero_control_p8_intel' [05:43, 03:31](1796 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:20](1826 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:29](1817 MB) - -PASS -- COMPILE 'atmaq_intel' [09:06, 07:14] - -PASS -- COMPILE 'atmaq_debug_intel' [04:06, 02:43] -PASS -- TEST 'regional_atmaq_debug_intel' [19:19, 16:23](4609 MB) - -PASS -- COMPILE 'atm_gnu' [07:05, 05:01] -PASS -- TEST 'control_c48_gnu' [11:22, 09:30](878 MB) -PASS -- TEST 'control_stochy_gnu' [04:13, 02:16](725 MB) -PASS -- TEST 'control_ras_gnu' [05:12, 03:39](736 MB) -PASS -- TEST 'control_p8_gnu' [05:44, 03:39](1514 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:37, 03:34](1524 MB) -PASS -- TEST 'control_flake_gnu' [06:14, 04:27](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:05, 04:37] -PASS -- TEST 'rap_control_gnu' [09:35, 07:46](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [09:34, 07:53](1084 MB) -PASS -- TEST 'rap_2threads_gnu' [09:29, 07:09](1129 MB) -PASS -- TEST 'rap_restart_gnu' [06:34, 03:53](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:40, 07:48](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:25, 07:49](1084 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:34, 05:47](885 MB) -PASS -- TEST 'hrrr_control_gnu' [05:42, 04:03](1073 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:29, 04:03](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:29, 03:36](1044 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:27, 04:03](1071 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:05](882 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:13, 02:01](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:45, 07:35](1081 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:05, 08:52] -PASS -- TEST 'control_diag_debug_gnu' [03:17, 01:15](777 MB) -PASS -- TEST 'regional_debug_gnu' [08:23, 06:23](927 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:15, 01:56](1100 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:12, 02:01](1094 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:58](1099 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:54](1102 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:18, 02:06](1270 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:13, 03:07](1097 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:12, 02:00](1099 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:14, 01:59](1091 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:15](729 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:14](725 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:30, 01:20](1506 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:13, 02:04](1100 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:12, 02:07](1102 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 03:14](1105 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:05, 03:39] -PASS -- TEST 'control_wam_debug_gnu' [03:18, 02:00](499 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:05, 05:39] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:35, 07:17](964 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:44](956 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:26, 06:44](969 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:30, 03:33](889 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 03:52](946 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:33, 05:37](858 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:15, 02:00](856 MB) -PASS -- TEST 'conus13km_control_gnu' [04:35, 02:30](1264 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:20, 01:07](1171 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:22, 01:27](937 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:05, 12:58] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:24, 04:16](992 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:05, 09:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:12, 01:55](977 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:12, 01:56](973 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:25](1282 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:23, 05:36](975 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:21, 03:14](1192 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:22, 05:18](1349 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:06, 11:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:12, 01:56](1003 MB) - -PASS -- COMPILE 's2swa_gnu' [20:06, 18:10] - -PASS -- COMPILE 's2s_gnu' [18:06, 16:38] - -PASS -- COMPILE 's2swa_debug_gnu' [13:06, 12:00] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:06, 16:07] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:06, 12:03] - -PASS -- COMPILE 'datm_cdeps_gnu' [21:06, 17:18] +PASS -- COMPILE 's2swa_32bit_intel' [12:06, 11:19] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 07:40](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:06, 16:44] +PASS -- TEST 'cpld_control_gfsv17_intel' [15:09, 13:25](1765 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:22, 14:03](2161 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:17, 06:26](1183 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:46, 15:03](1692 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 05:09] +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:03, 20:26](1724 MB) + +PASS -- COMPILE 's2swa_intel' [12:06, 11:26] +PASS -- TEST 'cpld_control_p8_intel' [08:49, 07:35](2074 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 07:41](2065 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:05, 04:13](1985 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:48, 07:42](1982 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:06, 04:16](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:46, 09:11](2495 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:43, 07:32](2064 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:57, 06:16](1892 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:59, 07:45](2058 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:38, 15:36](2803 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:19, 05:56](2926 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:37, 09:20](3629 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:11, 06:10](3621 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 04:54](2051 MB) + +PASS -- COMPILE 's2sw_intel' [11:06, 10:30] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:46, 07:09](1769 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:50, 04:01](1821 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:06, 04:44] +PASS -- TEST 'cpld_debug_p8_intel' [08:01, 06:51](2059 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:06, 04:50] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:54, 04:47](1793 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:06, 08:20] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 04:01](1821 MB) + +PASS -- COMPILE 's2s_intel' [09:06, 08:56] +PASS -- TEST 'cpld_control_c48_intel' [08:35, 07:15](2838 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:06, 12:24] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:59, 07:20](2079 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:58] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:52, 13:48](1808 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:20, 06:45](1268 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:02, 15:53](1730 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 04:38] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:45, 21:37](1779 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:06, 08:14] +PASS -- TEST 'control_flake_intel' [03:16, 02:54](712 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:19, 02:07](664 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:22, 02:14](685 MB) +PASS -- TEST 'control_latlon_intel' [03:16, 02:10](665 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:23, 02:12](662 MB) +PASS -- TEST 'control_c48_intel' [06:18, 05:48](853 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 05:44](850 MB) +PASS -- TEST 'control_c192_intel' [08:24, 07:55](968 MB) +PASS -- TEST 'control_c384_intel' [10:01, 08:18](1433 MB) +PASS -- TEST 'control_c384gdas_intel' [09:50, 07:16](1519 MB) +PASS -- TEST 'control_stochy_intel' [02:15, 01:29](670 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:20, 00:51](537 MB) +PASS -- TEST 'control_lndp_intel' [02:15, 01:24](668 MB) +PASS -- TEST 'control_iovr4_intel' [03:18, 02:11](659 MB) +PASS -- TEST 'control_iovr5_intel' [03:17, 02:05](671 MB) +PASS -- TEST 'control_p8_intel' [03:43, 02:34](1637 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:45, 02:41](1642 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:45, 02:36](1629 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:24](918 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:35, 02:34](1624 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:22](990 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:34, 02:42](1621 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:34, 02:28](1732 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:27, 04:31](1632 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 03:29](1718 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:42, 02:36](1644 MB) +PASS -- TEST 'merra2_thompson_intel' [03:51, 02:57](1655 MB) +PASS -- TEST 'regional_control_intel' [05:23, 04:38](959 MB) +PASS -- TEST 'regional_restart_intel' [03:23, 02:29](1105 MB) +PASS -- TEST 'regional_decomp_intel' [05:20, 04:40](945 MB) +PASS -- TEST 'regional_2threads_intel' [03:20, 02:54](921 MB) +PASS -- TEST 'regional_noquilt_intel' [05:22, 04:18](1489 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:25, 04:27](956 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 04:32](958 MB) +PASS -- TEST 'regional_wofs_intel' [06:21, 05:35](2102 MB) + +PASS -- COMPILE 'rrfs_intel' [08:06, 07:44] +PASS -- TEST 'rap_control_intel' [07:43, 06:30](1198 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:39, 03:25](1421 MB) +PASS -- TEST 'rap_decomp_intel' [07:37, 06:46](1164 MB) +PASS -- TEST 'rap_2threads_intel' [07:37, 06:10](1357 MB) +PASS -- TEST 'rap_restart_intel' [04:53, 03:32](1156 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:38, 06:32](1201 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:57](1128 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 04:57](1190 MB) +PASS -- TEST 'hrrr_control_intel' [04:41, 03:23](1089 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 03:26](1037 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:30, 03:06](1121 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:21, 01:55](1026 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:51, 06:20](1216 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:43](2009 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:27](2175 MB) + +PASS -- COMPILE 'csawmg_intel' [08:06, 07:37] +PASS -- TEST 'control_csawmg_intel' [06:28, 05:24](801 MB) +PASS -- TEST 'control_csawmgt_intel' [06:29, 05:22](806 MB) +PASS -- TEST 'control_ras_intel' [03:14, 02:51](808 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:06, 04:25] +PASS -- TEST 'control_csawmg_gnu' [07:28, 06:31](810 MB) +PASS -- TEST 'control_csawmgt_gnu' [07:23, 06:26](813 MB) + +PASS -- COMPILE 'wam_intel' [07:06, 06:59] +PASS -- TEST 'control_wam_intel' [02:19, 01:51](793 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 10:08] +PASS -- TEST 'control_p8_faster_intel' [03:52, 02:19](1637 MB) +PASS -- TEST 'regional_control_faster_intel' [05:22, 04:09](954 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 04:08] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:15, 02:16](828 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:18, 02:14](826 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:13, 02:27](829 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:12, 02:15](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:21, 03:23](876 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [04:28, 03:21](874 MB) +PASS -- TEST 'control_ras_debug_intel' [03:13, 02:16](841 MB) +PASS -- TEST 'control_diag_debug_intel' [03:19, 02:18](880 MB) +PASS -- TEST 'control_debug_p8_intel' [03:34, 02:21](1653 MB) +PASS -- TEST 'regional_debug_intel' [17:29, 16:33](887 MB) +PASS -- TEST 'rap_control_debug_intel' [04:17, 03:57](1210 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:14, 03:51](1221 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:13, 03:57](1220 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:13, 03:59](1226 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 04:03](1221 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:27, 04:12](1293 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:13, 04:08](1222 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:13, 04:08](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:13, 04:00](1214 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:14, 04:03](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:13, 03:56](1215 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 04:05](1226 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:13, 06:28](1210 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:12, 04:02](1209 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:12, 04:50](1217 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:12, 03:57](1214 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:47, 06:50](1219 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:05, 03:48] +PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 01:52](787 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [02:21, 01:46](788 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:05, 03:04] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 07:16] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:42, 03:20](1274 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:43, 05:25](1145 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:44, 02:54](1026 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:26, 05:10](1278 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 02:44](1045 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:53, 03:05](985 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:49, 04:04](1091 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:23, 01:35](963 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:06, 09:54] +PASS -- TEST 'conus13km_control_intel' [02:34, 01:48](1294 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:27, 00:43](1200 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:22, 01:00](1164 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 07:32] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 03:46](1089 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:18] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 03:55](1097 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:15, 03:51](1096 MB) +PASS -- TEST 'conus13km_debug_intel' [12:31, 11:34](1328 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:27, 11:57](987 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:26, 06:38](1239 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 11:31](1407 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 03:28] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:16, 04:02](1147 MB) + +PASS -- COMPILE 'hafsw_intel' [11:06, 10:47] +PASS -- TEST 'hafs_regional_atm_intel' [07:02, 05:18](878 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:15, 05:05](1277 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:08, 06:21](948 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:59, 13:59](988 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 15:00](1019 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:48, 05:36](603 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:10, 06:59](616 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:39, 02:50](434 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:03, 08:11](545 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:45, 04:02](611 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:42, 03:51](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:58](677 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:21, 01:31](452 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:06, 03:29] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 11:24](633 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:06, 11:27] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:45, 17:13](727 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 15:48](811 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 10:11] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:53, 10:32](796 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:08, 09:56] +PASS -- TEST 'hafs_regional_docn_intel' [11:00, 05:45](961 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:59, 05:39](953 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:41, 16:27](1336 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:05, 06:19] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:12, 02:10](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:22](1088 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:10, 02:05](1012 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:11, 02:06](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:07](1004 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:10, 02:10](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:10, 02:16](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:10, 02:10](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 05:00](1146 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:40, 04:54](1144 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:13](1151 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:10, 03:03](2434 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:05](2441 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 03:24] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:12, 05:12](1077 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:05, 05:42] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:10, 02:09](1119 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:05, 00:42] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:22, 01:07](335 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:57](560 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:16, 00:34](561 MB) + +PASS -- COMPILE 'atml_intel' [09:05, 08:24] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:06, 05:46](1646 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:03, 05:52](1650 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:35, 03:03](940 MB) + +PASS -- COMPILE 'atmw_intel' [11:07, 10:08] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:40](1687 MB) + +PASS -- COMPILE 'atmwm_intel' [11:16, 10:19] +PASS -- TEST 'control_atmwav_intel' [03:39, 01:39](693 MB) + +PASS -- COMPILE 'atmaero_intel' [08:05, 07:41] +PASS -- TEST 'atmaero_control_p8_intel' [05:43, 03:39](1785 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:24](1825 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:40, 04:34](1815 MB) + +PASS -- COMPILE 'atmaq_intel' [08:05, 07:08] + +PASS -- COMPILE 'atmaq_debug_intel' [04:05, 03:15] +PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 17:14](4574 MB) + +PASS -- COMPILE 'atm_gnu' [06:08, 05:45] +PASS -- TEST 'control_c48_gnu' [10:26, 09:33](881 MB) +PASS -- TEST 'control_stochy_gnu' [03:13, 02:15](730 MB) +PASS -- TEST 'control_ras_gnu' [04:13, 03:41](732 MB) +PASS -- TEST 'control_p8_gnu' [04:49, 03:38](1511 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:37, 03:31](1514 MB) +PASS -- TEST 'control_flake_gnu' [05:12, 04:22](806 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:05, 04:22] +PASS -- TEST 'rap_control_gnu' [09:44, 07:45](1090 MB) +PASS -- TEST 'rap_decomp_gnu' [09:32, 07:42](1086 MB) +PASS -- TEST 'rap_2threads_gnu' [09:31, 07:18](1128 MB) +PASS -- TEST 'rap_restart_gnu' [05:41, 04:07](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:34, 07:41](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:34, 07:54](1089 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:37, 05:52](885 MB) +PASS -- TEST 'hrrr_control_gnu' [06:29, 04:02](1076 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:44, 04:02](1139 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:31, 03:36](1042 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 03:58](1077 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:23, 02:07](879 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:07](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:48, 07:43](1085 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:06, 06:38] +PASS -- TEST 'control_diag_debug_gnu' [02:19, 01:15](775 MB) +PASS -- TEST 'regional_debug_gnu' [07:26, 06:26](923 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:14, 02:01](1101 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:14, 01:57](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:11, 02:01](1098 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:12, 02:01](1096 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:21, 02:05](1270 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:12, 03:10](1096 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:13, 01:59](1097 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:14, 01:59](1093 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:13, 01:14](727 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:12, 01:16](725 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:29, 01:16](1505 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:13, 01:58](1099 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:12, 02:16](1099 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:43, 03:20](1103 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:06, 02:58] +PASS -- TEST 'control_wam_debug_gnu' [02:18, 02:00](501 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:06, 05:32] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:42, 07:21](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:52, 03:54](959 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:30, 07:00](968 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:34, 03:33](873 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:34, 03:54](953 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:44, 05:29](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:19, 02:07](856 MB) +PASS -- TEST 'conus13km_control_gnu' [04:35, 02:43](1266 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:21, 01:10](1172 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:22, 01:40](948 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:05, 08:47] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:27, 04:28](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:05, 11:39] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:13, 01:59](978 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:13, 02:01](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:36](1282 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:27, 05:47](963 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:22, 03:18](1191 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:22, 05:33](1350 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:05, 12:07] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:13, 02:01](1003 MB) + +PASS -- COMPILE 's2swa_gnu' [17:05, 16:14] + +PASS -- COMPILE 's2s_gnu' [17:07, 16:10] + +PASS -- COMPILE 's2swa_debug_gnu' [13:06, 12:15] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:06, 16:57] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:07, 11:13] + +PASS -- COMPILE 'datm_cdeps_gnu' [18:05, 17:47] SYNOPSIS: -Starting Date/Time: 20240411 14:17:38 -Ending Date/Time: 20240411 15:43:20 -Total Time: 01h:26m:12s +Starting Date/Time: 20240415 18:42:06 +Ending Date/Time: 20240415 19:56:08 +Total Time: 01h:14m:28s Compiles Completed: 55/55 Tests Completed: 239/239 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 29d8fdf08f..2f7f41cd46 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffacfb6d50c9803809d458a42c634f89aaec8861 +684ddd65adbf26b3a8003e05c8af6c4e19be63f8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb) + 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) + b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -26,19 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) NOTES: @@ -48,244 +36,244 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240408 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3990282 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3732077 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [40:24, 38:39] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:54, 07:17](1795 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:31, 54:32] -PASS -- TEST 'cpld_control_gfsv17_intel' [24:00, 20:35](1661 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:33, 22:22](1885 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:17, 10:45](991 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:44, 23:52](1630 MB) - -PASS -- COMPILE 's2swa_intel' [40:24, 39:12] -PASS -- TEST 'cpld_control_p8_intel' [11:28, 08:16](1805 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:48, 07:54](1822 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:43, 04:20](1713 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:31, 07:50](1842 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:35, 04:26](1726 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:34, 07:39](2270 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:21, 08:05](1806 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:34, 07:06](1762 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:47, 08:04](1812 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [17:43, 07:14](1767 MB) - -PASS -- COMPILE 's2sw_intel' [37:23, 36:11] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:58, 06:02](1663 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:01, 05:57](1720 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:25] -PASS -- TEST 'cpld_debug_p8_intel' [13:57, 10:32](1851 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:07, 05:05] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:11](1679 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [34:18, 32:58] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:49, 05:45](1704 MB) - -PASS -- COMPILE 's2s_intel' [34:18, 32:45] -PASS -- TEST 'cpld_control_c48_intel' [15:11, 12:45](2805 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:42, 33:38] -PASS -- TEST 'cpld_control_p8_faster_intel' [54:25, 07:22](1827 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:24, 46:54] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:34, 21:03](1675 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:46, 10:47](1028 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:36, 24:09](1661 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:09, 05:07] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:42, 32:11](1685 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [36:19, 34:34] -PASS -- TEST 'control_flake_intel' [17:34, 04:29](646 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [19:41, 03:19](600 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:40, 03:34](605 MB) -PASS -- TEST 'control_latlon_intel' [16:34, 03:15](594 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:40, 03:26](598 MB) -PASS -- TEST 'control_c48_intel' [12:36, 10:09](846 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:45, 10:10](848 MB) -PASS -- TEST 'control_c192_intel' [23:55, 12:23](730 MB) -PASS -- TEST 'control_c384_intel' [27:09, 16:36](889 MB) -PASS -- TEST 'control_c384gdas_intel' [28:07, 14:32](1017 MB) -PASS -- TEST 'control_stochy_intel' [17:35, 02:12](603 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:26, 01:21](433 MB) -PASS -- TEST 'control_lndp_intel' [18:37, 02:10](603 MB) -PASS -- TEST 'control_iovr4_intel' [17:38, 03:16](593 MB) -PASS -- TEST 'control_iovr5_intel' [19:39, 03:21](594 MB) -PASS -- TEST 'control_p8_intel' [20:54, 04:03](1571 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [17:36, 04:01](1563 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [13:29, 03:53](1577 MB) -PASS -- TEST 'control_restart_p8_intel' [07:17, 02:08](810 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:00, 03:52](1570 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:08, 02:05](845 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:01, 04:03](1565 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:06, 03:40](1663 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:55, 06:58](1579 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:53, 05:07](1631 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:28, 03:55](1589 MB) -PASS -- TEST 'merra2_thompson_intel' [11:47, 04:34](1573 MB) -PASS -- TEST 'regional_control_intel' [13:51, 07:19](762 MB) -PASS -- TEST 'regional_restart_intel' [11:46, 03:45](933 MB) -PASS -- TEST 'regional_decomp_intel' [13:46, 07:47](754 MB) -PASS -- TEST 'regional_2threads_intel' [07:48, 04:16](754 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [12:52, 07:20](764 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:41, 07:18](758 MB) - -PASS -- COMPILE 'rrfs_intel' [34:18, 32:57] -PASS -- TEST 'rap_control_intel' [13:08, 10:16](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:46, 05:39](1213 MB) -PASS -- TEST 'rap_decomp_intel' [13:08, 10:43](990 MB) -PASS -- TEST 'rap_2threads_intel' [12:37, 09:43](1082 MB) -PASS -- TEST 'rap_restart_intel' [11:28, 05:24](989 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:18, 10:15](991 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:18, 10:57](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:27, 07:46](986 MB) -PASS -- TEST 'hrrr_control_intel' [08:38, 05:17](984 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [18:13, 05:22](978 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [17:34, 04:48](1062 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:30, 02:46](925 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:46, 10:00](978 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:43, 12:29](1939 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:39, 12:01](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [33:17, 31:23] -PASS -- TEST 'control_csawmg_intel' [12:43, 08:13](691 MB) -PASS -- TEST 'control_csawmgt_intel' [13:40, 08:07](692 MB) -PASS -- TEST 'control_ras_intel' [09:25, 04:30](664 MB) - -PASS -- COMPILE 'wam_intel' [31:16, 30:05] -PASS -- TEST 'control_wam_intel' [07:22, 02:43](497 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [33:18, 31:54] -PASS -- TEST 'control_p8_faster_intel' [06:35, 03:41](1570 MB) -PASS -- TEST 'regional_control_faster_intel' [09:45, 06:49](763 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:09, 06:09] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:27, 03:28](754 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:33, 03:29](759 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:26, 03:47](764 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:23, 03:31](756 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:41, 05:19](805 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [09:43, 05:08](811 MB) -PASS -- TEST 'control_ras_debug_intel' [07:24, 03:24](769 MB) -PASS -- TEST 'control_diag_debug_intel' [06:35, 03:29](818 MB) -PASS -- TEST 'control_debug_p8_intel' [06:56, 03:32](1587 MB) -PASS -- TEST 'regional_debug_intel' [26:50, 21:43](774 MB) -PASS -- TEST 'rap_control_debug_intel' [09:21, 06:04](1147 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:21, 05:57](1143 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:27, 05:59](1148 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:26, 06:03](1149 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:24, 06:03](1155 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:38, 06:27](1228 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:20, 06:08](1148 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:20, 06:09](1148 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:12](1147 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 06:06](1150 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:23, 05:56](1150 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:22, 06:04](1145 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:26, 09:52](1149 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:24, 05:58](1143 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:30, 07:23](1145 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:27, 06:01](1147 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:33, 10:28](1152 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:09, 04:17] -PASS -- TEST 'control_wam_debug_intel' [10:20, 06:06](437 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [34:19, 30:22] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:45, 05:16](1087 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:23, 08:21](896 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:11, 04:24](867 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 07:58](944 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:45, 04:09](909 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 04:42](858 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:24, 06:25](900 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:30, 02:34](844 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:22, 42:59] -PASS -- TEST 'conus13km_control_intel' [49:19, 03:05](1107 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:53, 01:22](1058 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:51, 01:35](1027 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:19, 30:44] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [53:15, 05:36](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:08, 04:12] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [20:35, 06:02](1031 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [25:39, 05:56](1028 MB) -PASS -- TEST 'conus13km_debug_intel' [44:17, 18:22](1140 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [03:23, 18:43](854 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:56, 10:41](1086 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [00:18, 18:40](1210 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:08, 04:20] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:53, 06:10](1072 MB) - -PASS -- COMPILE 'hafsw_intel' [39:21, 34:44] -PASS -- TEST 'hafs_regional_atm_intel' [37:50, 07:09](725 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:40, 06:49](1087 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [45:02, 09:39](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [50:45, 16:28](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [55:08, 18:11](824 MB) -PASS -- TEST 'gnv1_nested_intel' [39:55, 06:21](786 MB) - -PASS -- COMPILE 'hafs_all_intel' [36:20, 32:13] -PASS -- TEST 'hafs_regional_docn_intel' [38:44, 08:53](773 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [38:59, 09:12](752 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [49:24, 08:03] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [26:34, 03:38](1055 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:16](1032 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [26:32, 03:38](937 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [27:30, 03:36](922 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:27, 03:35](929 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [26:31, 03:42](1065 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:33, 03:44](1051 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [27:31, 03:33](924 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [31:27, 07:52](885 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [31:28, 07:53](843 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [25:26, 03:40](1061 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:28, 05:08](2400 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [26:30, 05:25](2279 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [43:23, 03:19] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [21:27, 08:01](1015 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [50:24, 07:52] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:21, 03:48](1056 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [33:19, 01:40] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:40, 01:47](229 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [09:32, 01:29](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:25, 00:59](251 MB) - -PASS -- COMPILE 'atml_intel' [08:32, 38:50] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:48, 09:08](1613 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:44, 08:55](1612 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:49, 05:09](872 MB) - -PASS -- COMPILE 'atmw_intel' [48:24, 31:51] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:43, 02:21](1612 MB) - -PASS -- COMPILE 'atmwm_intel' [38:20, 31:14] -PASS -- TEST 'control_atmwav_intel' [05:11, 02:15](611 MB) - -PASS -- COMPILE 'atmaero_intel' [38:19, 30:49] -PASS -- TEST 'atmaero_control_p8_intel' [08:25, 05:16](1697 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:25, 06:25](1718 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:07, 06:40](1735 MB) +PASS -- COMPILE 's2swa_32bit_intel' [39:09, 38:13] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [34:43, 06:59](1795 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:09, 47:30] +PASS -- TEST 'cpld_control_gfsv17_intel' [21:35, 20:47](1664 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:24, 22:19](1892 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [47:58, 10:20](996 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [00:54, 23:54](1629 MB) + +PASS -- COMPILE 's2swa_intel' [18:12, 38:37] +PASS -- TEST 'cpld_control_p8_intel' [45:42, 07:28](1831 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:05, 07:26](1825 MB) +PASS -- TEST 'cpld_restart_p8_intel' [53:54, 04:29](1716 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:44, 07:38](1841 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:31, 04:41](1726 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [05:52, 07:05](2277 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [29:36, 07:38](1823 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:35, 06:19](1774 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [38:01, 07:27](1834 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [59:55, 07:03](1796 MB) + +PASS -- COMPILE 's2sw_intel' [36:08, 35:07] +PASS -- TEST 'cpld_control_noaero_p8_intel' [23:43, 05:51](1668 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:54, 05:42](1713 MB) + +PASS -- COMPILE 's2swa_debug_intel' [41:09, 05:02] +PASS -- TEST 'cpld_debug_p8_intel' [43:47, 10:28](1843 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:07, 04:50] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:28, 07:12](1680 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [41:10, 32:02] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:05, 05:45](1717 MB) + +PASS -- COMPILE 's2s_intel' [56:11, 32:30] +PASS -- TEST 'cpld_control_c48_intel' [24:03, 12:42](2796 MB) + +PASS -- COMPILE 's2swa_faster_intel' [09:16, 32:58] +PASS -- TEST 'cpld_control_p8_faster_intel' [48:59, 07:08](1834 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [52:15, 52:26] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:44, 20:58](1682 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:35, 10:19](1030 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:32, 22:25](1651 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [34:08, 05:05] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:16, 32:09](1690 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [02:10, 34:28] +PASS -- TEST 'control_flake_intel' [31:42, 04:43](646 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [29:46, 03:15](595 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:52, 03:43](607 MB) +PASS -- TEST 'control_latlon_intel' [30:38, 03:31](597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:48, 03:24](593 MB) +PASS -- TEST 'control_c48_intel' [18:38, 10:09](843 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [18:39, 10:09](845 MB) +PASS -- TEST 'control_c192_intel' [40:02, 12:43](730 MB) +PASS -- TEST 'control_c384_intel' [43:40, 15:57](897 MB) +PASS -- TEST 'control_c384gdas_intel' [43:15, 13:51](1020 MB) +PASS -- TEST 'control_stochy_intel' [26:38, 02:15](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:26, 01:22](435 MB) +PASS -- TEST 'control_lndp_intel' [29:42, 02:21](603 MB) +PASS -- TEST 'control_iovr4_intel' [30:42, 03:34](594 MB) +PASS -- TEST 'control_iovr5_intel' [26:41, 03:21](594 MB) +PASS -- TEST 'control_p8_intel' [32:33, 04:09](1575 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [33:00, 04:10](1571 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [31:58, 04:03](1581 MB) +PASS -- TEST 'control_restart_p8_intel' [04:14, 02:34](816 MB) +PASS -- TEST 'control_noqr_p8_intel' [31:48, 04:04](1571 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:34, 02:17](832 MB) +PASS -- TEST 'control_decomp_p8_intel' [30:37, 04:15](1562 MB) +PASS -- TEST 'control_2threads_p8_intel' [23:29, 03:52](1663 MB) +PASS -- TEST 'control_p8_lndp_intel' [16:05, 07:21](1570 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:06, 05:21](1634 MB) +PASS -- TEST 'control_p8_mynn_intel' [01:02, 04:03](1575 MB) +PASS -- TEST 'merra2_thompson_intel' [40:04, 04:50](1590 MB) +PASS -- TEST 'regional_control_intel' [32:49, 07:22](758 MB) +PASS -- TEST 'regional_restart_intel' [04:36, 03:52](931 MB) +PASS -- TEST 'regional_decomp_intel' [09:36, 07:31](759 MB) +PASS -- TEST 'regional_2threads_intel' [05:34, 04:28](752 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:47, 07:05](766 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 07:03](761 MB) + +PASS -- COMPILE 'rrfs_intel' [48:09, 32:19] +PASS -- TEST 'rap_control_intel' [12:12, 10:04](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:11, 05:49](1213 MB) +PASS -- TEST 'rap_decomp_intel' [12:02, 10:44](989 MB) +PASS -- TEST 'rap_2threads_intel' [11:54, 09:43](1084 MB) +PASS -- TEST 'rap_restart_intel' [07:31, 05:13](993 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:17, 10:14](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:56, 10:55](992 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:24, 07:28](1002 MB) +PASS -- TEST 'hrrr_control_intel' [07:17, 05:28](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:02, 05:27](977 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:57, 05:05](1063 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:48](916 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:26, 10:18](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:31, 12:27](1942 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:25, 12:19](1931 MB) + +PASS -- COMPILE 'csawmg_intel' [04:11, 30:57] +PASS -- TEST 'control_csawmg_intel' [08:38, 08:02](692 MB) +PASS -- TEST 'control_csawmgt_intel' [08:40, 07:57](699 MB) +PASS -- TEST 'control_ras_intel' [05:22, 04:28](667 MB) + +PASS -- COMPILE 'wam_intel' [38:08, 29:46] +PASS -- TEST 'control_wam_intel' [03:18, 02:49](502 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [46:09, 31:20] +PASS -- TEST 'control_p8_faster_intel' [05:34, 03:37](1581 MB) +PASS -- TEST 'regional_control_faster_intel' [07:36, 06:27](766 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:06, 05:40] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 03:22](764 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:24](758 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:44](759 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 03:22](763 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:34, 05:14](806 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 05:10](805 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 03:24](774 MB) +PASS -- TEST 'control_diag_debug_intel' [04:26, 03:26](818 MB) +PASS -- TEST 'control_debug_p8_intel' [04:55, 03:34](1594 MB) +PASS -- TEST 'regional_debug_intel' [22:44, 21:43](775 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 06:02](1154 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 05:55](1149 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 05:59](1150 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 06:01](1152 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 06:01](1157 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 06:17](1231 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 06:07](1151 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 06:07](1149 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:20, 06:04](1148 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 06:01](1154 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:18, 05:54](1149 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 06:00](1152 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:19, 09:48](1145 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 05:56](1140 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:20, 07:18](1152 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:18, 06:00](1145 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:24, 10:26](1156 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:06, 03:45] +PASS -- TEST 'control_wam_debug_intel' [07:20, 06:08](468 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:08, 30:02] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 05:07](1070 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:56, 08:08](900 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:02, 04:23](868 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:16, 07:49](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 04:01](907 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:07, 04:38](856 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:12](897 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:20](849 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:10, 42:24] +PASS -- TEST 'conus13km_control_intel' [04:02, 02:54](1105 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:37, 01:30](1052 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:34, 01:33](1023 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:08, 30:23] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:46, 05:30](903 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [15:07, 03:55] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 05:58](1030 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:51](1027 MB) +PASS -- TEST 'conus13km_debug_intel' [19:47, 18:22](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:42, 18:35](880 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:38, 10:41](1083 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:42, 18:26](1203 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:06, 03:53] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:18, 06:03](1071 MB) + +PASS -- COMPILE 'hafsw_intel' [39:08, 34:41] +PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:59](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:23, 06:24](1085 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:35, 09:12](776 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 16:07](800 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:26, 17:54](830 MB) +PASS -- TEST 'gnv1_nested_intel' [07:09, 05:32](776 MB) + +PASS -- COMPILE 'hafs_all_intel' [02:10, 31:56] +PASS -- TEST 'hafs_regional_docn_intel' [10:22, 08:35](766 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:21, 08:34](755 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [33:08, 08:05] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 03:37](1060 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 02:11](1031 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 03:31](920 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 03:37](927 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 03:40](925 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 03:37](1056 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 03:39](1063 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 03:31](927 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:07, 07:52](885 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 07:47](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 03:36](1063 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 05:01](2401 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 05:03](2356 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [24:07, 03:23] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 07:57](1017 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:07, 08:15] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:36](1061 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 02:06] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 01:34](230 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 01:17](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:49](257 MB) + +PASS -- COMPILE 'atml_intel' [35:11, 34:22] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:42, 07:52](1613 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 07:45](1603 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 04:09](862 MB) + +PASS -- COMPILE 'atmw_intel' [33:08, 32:49] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:24, 02:17](1612 MB) + +PASS -- COMPILE 'atmwm_intel' [32:09, 31:12] +PASS -- TEST 'control_atmwav_intel' [04:10, 02:11](613 MB) + +PASS -- COMPILE 'atmaero_intel' [31:08, 30:28] +PASS -- TEST 'atmaero_control_p8_intel' [07:22, 05:08](1702 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:20, 06:16](1719 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:07, 06:37](1729 MB) SYNOPSIS: -Starting Date/Time: 20240411 19:42:09 -Ending Date/Time: 20240412 00:07:36 -Total Time: 04h:26m:09s +Starting Date/Time: 20240415 20:38:03 +Ending Date/Time: 20240416 01:26:35 +Total Time: 04h:49m:06s Compiles Completed: 33/33 Tests Completed: 161/161 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index ba251e694f..e925006e5b 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffacfb6d50c9803809d458a42c634f89aaec8861 +684ddd65adbf26b3a8003e05c8af6c4e19be63f8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb) + 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) + b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -26,19 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) NOTES: @@ -48,276 +36,277 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_198648 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_215054 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:07, 15:40] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [35:04, 05:11](3180 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:02] -PASS -- TEST 'cpld_control_gfsv17_intel' [44:05, 16:36](1738 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:15, 18:28](2023 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [18:01, 08:09](1110 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:20, 18:49](1642 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:09] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:42, 23:00](1692 MB) - -PASS -- COMPILE 's2swa_intel' [17:07, 15:27] -PASS -- TEST 'cpld_control_p8_intel' [36:08, 05:41](3213 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:18, 05:41](3206 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:05, 03:31](3252 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [37:05, 05:46](3235 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:38, 03:32](3277 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [37:05, 06:10](3559 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [37:05, 05:44](3200 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [34:52, 04:44](3066 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:26, 05:39](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [38:28, 10:18](3263 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:42, 06:18](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [45:42, 10:53](4115 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:10, 06:53](4374 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [36:02, 05:23](3178 MB) - -PASS -- COMPILE 's2sw_intel' [15:06, 13:28] -PASS -- TEST 'cpld_control_noaero_p8_intel' [32:23, 04:30](1737 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:44, 04:32](1773 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:20] -PASS -- TEST 'cpld_debug_p8_intel' [11:48, 08:27](3253 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:12] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:04, 05:57](1750 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:06, 12:43] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:45, 04:30](1782 MB) - -PASS -- COMPILE 's2s_intel' [15:06, 12:38] -PASS -- TEST 'cpld_control_c48_intel' [33:08, 08:10](2831 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:06] -PASS -- TEST 'cpld_control_p8_faster_intel' [32:58, 05:24](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [28:08, 26:56] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:30, 16:29](1779 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:51, 08:10](1174 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:31, 18:41](1683 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:51] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:28, 24:28](1718 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:43] -PASS -- TEST 'control_flake_intel' [28:29, 03:30](704 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [27:31, 02:29](653 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:34, 02:36](660 MB) -PASS -- TEST 'control_latlon_intel' [27:27, 02:32](654 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:37, 02:34](652 MB) -PASS -- TEST 'control_c48_intel' [30:36, 05:58](874 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [30:36, 05:58](879 MB) -PASS -- TEST 'control_c192_intel' [33:45, 09:04](850 MB) -PASS -- TEST 'control_c384_intel' [35:49, 10:02](1251 MB) -PASS -- TEST 'control_c384gdas_intel' [36:10, 09:02](1360 MB) -PASS -- TEST 'control_stochy_intel' [15:22, 01:42](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:18, 01:01](502 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:42](617 MB) -PASS -- TEST 'control_iovr4_intel' [04:26, 02:33](649 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:29](654 MB) -PASS -- TEST 'control_p8_intel' [05:12, 03:02](1630 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:15, 03:04](1637 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 02:52](1630 MB) -PASS -- TEST 'control_restart_p8_intel' [04:16, 01:46](890 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:13, 02:57](1574 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:05, 01:46](927 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:11, 03:11](1617 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:04, 03:06](1719 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:37, 05:22](1633 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:33, 04:06](1695 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:08](1639 MB) -PASS -- TEST 'merra2_thompson_intel' [06:46, 03:32](1593 MB) -PASS -- TEST 'regional_control_intel' [07:46, 05:06](858 MB) -PASS -- TEST 'regional_restart_intel' [04:35, 02:47](1018 MB) -PASS -- TEST 'regional_decomp_intel' [07:46, 05:36](848 MB) -PASS -- TEST 'regional_2threads_intel' [05:45, 03:47](851 MB) -PASS -- TEST 'regional_noquilt_intel' [07:47, 05:16](1362 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 05:14](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 05:12](858 MB) -PASS -- TEST 'regional_wofs_intel' [08:51, 06:39](1919 MB) - -PASS -- COMPILE 'rrfs_intel' [21:10, 11:27] -PASS -- TEST 'rap_control_intel' [10:27, 07:55](1111 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:58, 04:52](1293 MB) -PASS -- TEST 'rap_decomp_intel' [11:11, 08:07](1027 MB) -PASS -- TEST 'rap_2threads_intel' [10:30, 07:55](1176 MB) -PASS -- TEST 'rap_restart_intel' [13:26, 04:01](1101 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:34, 07:47](1101 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:21, 08:03](1032 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [19:27, 05:51](1131 MB) -PASS -- TEST 'hrrr_control_intel' [08:29, 03:59](1041 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:08, 04:05](1023 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:23, 03:24](1111 MB) -PASS -- TEST 'hrrr_control_restart_intel' [15:29, 02:12](998 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:20, 07:38](1035 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:05](1993 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:21, 08:58](2079 MB) - -PASS -- COMPILE 'csawmg_intel' [19:10, 11:33] -PASS -- TEST 'control_csawmg_intel' [07:40, 05:59](751 MB) -PASS -- TEST 'control_csawmgt_intel' [07:42, 06:00](747 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:18](738 MB) - -PASS -- COMPILE 'wam_intel' [18:09, 10:46] -PASS -- TEST 'control_wam_intel' [04:19, 02:08](660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:10, 11:20] -PASS -- TEST 'control_p8_faster_intel' [05:31, 02:40](1631 MB) -PASS -- TEST 'regional_control_faster_intel' [06:42, 04:42](850 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:08, 04:46] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:40](812 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:49](813 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:05](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [09:16, 02:49](818 MB) -PASS -- TEST 'control_csawmg_debug_intel' [14:40, 04:11](859 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [14:40, 04:04](865 MB) -PASS -- TEST 'control_ras_debug_intel' [11:29, 02:45](833 MB) -PASS -- TEST 'control_diag_debug_intel' [11:24, 02:51](869 MB) -PASS -- TEST 'control_debug_p8_intel' [16:55, 02:59](1636 MB) -PASS -- TEST 'regional_debug_intel' [30:51, 17:25](841 MB) -PASS -- TEST 'rap_control_debug_intel' [13:20, 05:05](1211 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:26, 04:51](1200 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [17:26, 04:44](1207 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [17:24, 04:59](1205 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:20, 04:56](1203 MB) -PASS -- TEST 'rap_diag_debug_intel' [17:29, 05:16](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:33, 05:10](1203 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:35, 05:29](1197 MB) -PASS -- TEST 'rap_lndp_debug_intel' [13:41, 05:07](1202 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:40, 04:55](1205 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:33, 04:58](1206 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:32, 04:54](1199 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:36, 08:09](1202 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [14:39, 05:06](1190 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [16:34, 06:01](1201 MB) -PASS -- TEST 'rap_flake_debug_intel' [14:33, 05:03](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:40, 08:27](1203 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:08, 03:57] -PASS -- TEST 'control_wam_debug_intel' [09:36, 05:18](514 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:09, 11:05] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:20, 04:41](1161 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:14, 06:42](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:20, 03:37](978 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:11, 06:40](1090 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:37, 03:05](976 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:24, 03:49](925 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:24, 04:49](1035 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [12:30, 01:54](933 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:09, 13:13] -PASS -- TEST 'conus13km_control_intel' [02:11, 02:07](1204 MB) -PASS -- TEST 'conus13km_2threads_intel' [12:49, 01:01](1122 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [11:50, 01:17](1112 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:08, 10:55] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:53, 04:23](996 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:35] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:35, 04:57](1082 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 04:48](1077 MB) -PASS -- TEST 'conus13km_debug_intel' [17:11, 14:36](1227 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:00, 14:21](930 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:52, 08:09](1154 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:58, 14:09](1297 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:08, 03:37] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [02:30, 05:05](1120 MB) - -PASS -- COMPILE 'hafsw_intel' [16:07, 14:06] -PASS -- TEST 'hafs_regional_atm_intel' [00:18, 05:32](742 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:26, 05:52](1117 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:28, 07:00](829 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [24:17, 13:19](859 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:19, 14:37](883 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [17:00, 06:12](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:24, 07:33](519 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [12:49, 03:10](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:21, 07:54](482 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:50, 04:09](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:55, 03:54](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:59, 05:22](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:23, 01:26](405 MB) -PASS -- TEST 'gnv1_nested_intel' [14:55, 04:32](802 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:09, 03:50] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [22:52, 13:21](569 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:09, 13:08] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:03, 09:35](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:08, 09:36](723 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:08, 13:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:05, 07:01](789 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:08, 12:43] -PASS -- TEST 'hafs_regional_docn_intel' [13:18, 06:19](830 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:13, 06:26](817 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:53, 15:56](1207 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:07, 08:49] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:42](1136 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:44](1084 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:32](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:39](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:42](1025 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:45](1135 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:42](1128 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:35](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:12, 06:06](1047 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 05:55](1031 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 02:37](1133 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:41](2435 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:37](2493 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:07, 03:47] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 06:18](1056 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:07, 07:27] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:38](1128 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:08] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:23, 00:48](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:19, 00:48](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:34](308 MB) - -PASS -- COMPILE 'atml_intel' [19:06, 13:17] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:36, 04:19](1606 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:28, 04:10](1608 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:22](894 MB) - -PASS -- COMPILE 'atmw_intel' [18:09, 13:31] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:23, 01:49](1673 MB) - -PASS -- COMPILE 'atmwm_intel' [14:08, 12:00] -PASS -- TEST 'control_atmwav_intel' [04:08, 01:39](679 MB) - -PASS -- COMPILE 'atmaero_intel' [13:07, 11:34] -PASS -- TEST 'atmaero_control_p8_intel' [09:18, 03:53](3027 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:18, 04:45](3096 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:57, 05:02](3113 MB) - -PASS -- COMPILE 'atmaq_intel' [13:07, 11:05] - -PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:41] -PASS -- TEST 'regional_atmaq_debug_intel' [25:45, 20:45](4578 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:06, 14:25] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:18, 05:08](3178 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:06, 21:07] +PASS -- TEST 'cpld_control_gfsv17_intel' [18:54, 16:32](1749 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:10, 17:26](2033 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:01, 08:23](1114 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:46, 18:34](1647 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 05:46] +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:51, 22:56](1696 MB) + +PASS -- COMPILE 's2swa_intel' [17:06, 16:53] +PASS -- TEST 'cpld_control_p8_intel' [07:38, 05:35](3208 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:58, 05:36](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:54, 03:22](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:38, 05:41](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:54, 03:37](3269 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:38, 06:06](3553 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:38, 05:43](3205 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:33, 04:41](3069 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:56, 05:42](3209 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:46, 10:00](3338 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:33, 06:29](3618 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:07, 11:01](4117 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:52, 07:01](4368 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:44, 05:20](3173 MB) + +PASS -- COMPILE 's2sw_intel' [16:06, 15:26] +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:59, 04:26](1731 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:15, 04:24](1782 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:06, 05:42] +PASS -- TEST 'cpld_debug_p8_intel' [10:23, 08:36](3251 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:06, 05:57] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:06, 05:57](1754 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:06, 13:16] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:23, 04:22](1780 MB) + +PASS -- COMPILE 's2s_intel' [14:06, 13:16] +PASS -- TEST 'cpld_control_c48_intel' [08:52, 08:03](2830 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:06, 20:58] +PASS -- TEST 'cpld_control_p8_faster_intel' [07:37, 05:24](3215 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 18:17] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:16, 16:40](1773 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 08:11](1176 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:11, 18:35](1678 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 05:08] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:02, 24:38](1722 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:06, 13:08] +PASS -- TEST 'control_flake_intel' [04:23, 03:31](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:27](652 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:28, 02:34](653 MB) +PASS -- TEST 'control_latlon_intel' [03:21, 02:29](655 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:30](654 MB) +PASS -- TEST 'control_c48_intel' [06:26, 06:00](874 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:27, 05:58](871 MB) +PASS -- TEST 'control_c192_intel' [10:41, 09:10](858 MB) +PASS -- TEST 'control_c384_intel' [12:35, 10:13](1247 MB) +PASS -- TEST 'control_c384gdas_intel' [13:04, 09:04](1358 MB) +PASS -- TEST 'control_stochy_intel' [02:23, 01:47](654 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:23, 01:02](505 MB) +PASS -- TEST 'control_lndp_intel' [02:23, 01:37](658 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:30](650 MB) +PASS -- TEST 'control_iovr5_intel' [03:20, 02:34](650 MB) +PASS -- TEST 'control_p8_intel' [04:08, 02:58](1626 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:10, 02:58](1628 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:34, 02:48](1628 MB) +PASS -- TEST 'control_restart_p8_intel' [03:07, 01:46](898 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:16, 03:00](1620 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:39](934 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:14, 02:59](1616 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:03](1669 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:59, 05:15](1624 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:37, 03:58](1693 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:05](1629 MB) +PASS -- TEST 'merra2_thompson_intel' [05:40, 03:37](1635 MB) +PASS -- TEST 'regional_control_intel' [06:46, 05:22](856 MB) +PASS -- TEST 'regional_restart_intel' [03:37, 02:46](1026 MB) +PASS -- TEST 'regional_decomp_intel' [06:38, 05:38](852 MB) +PASS -- TEST 'regional_2threads_intel' [04:41, 03:48](847 MB) +PASS -- TEST 'regional_noquilt_intel' [06:42, 05:12](1365 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 05:13](862 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 05:13](860 MB) +PASS -- TEST 'regional_wofs_intel' [07:37, 06:32](1924 MB) + +PASS -- COMPILE 'rrfs_intel' [12:06, 11:51] +PASS -- TEST 'rap_control_intel' [10:29, 08:03](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 04:47](1290 MB) +PASS -- TEST 'rap_decomp_intel' [10:25, 08:04](1033 MB) +PASS -- TEST 'rap_2threads_intel' [10:23, 07:53](1185 MB) +PASS -- TEST 'rap_restart_intel' [05:19, 04:02](1111 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:44](1104 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:27, 08:07](1037 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 05:52](1131 MB) +PASS -- TEST 'hrrr_control_intel' [05:18, 03:59](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:55, 04:11](1015 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:59, 03:21](1109 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:21, 02:16](1002 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:24, 07:35](1098 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:08](1993 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:24, 08:58](2072 MB) + +PASS -- COMPILE 'csawmg_intel' [12:06, 11:07] +PASS -- TEST 'control_csawmg_intel' [07:48, 06:05](743 MB) +PASS -- TEST 'control_csawmgt_intel' [06:41, 05:59](746 MB) +PASS -- TEST 'control_ras_intel' [04:20, 03:19](741 MB) + +PASS -- COMPILE 'wam_intel' [11:06, 10:40] +PASS -- TEST 'control_wam_intel' [03:23, 02:06](654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:06, 13:13] +PASS -- TEST 'control_p8_faster_intel' [04:32, 02:42](1621 MB) +PASS -- TEST 'regional_control_faster_intel' [06:43, 04:40](850 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 04:37] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:51](818 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:28, 02:45](814 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:09](815 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:49](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:38, 04:17](867 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:35, 04:16](863 MB) +PASS -- TEST 'control_ras_debug_intel' [03:22, 02:52](831 MB) +PASS -- TEST 'control_diag_debug_intel' [03:23, 02:47](872 MB) +PASS -- TEST 'control_debug_p8_intel' [03:43, 03:01](1640 MB) +PASS -- TEST 'regional_debug_intel' [18:39, 17:40](849 MB) +PASS -- TEST 'rap_control_debug_intel' [06:20, 05:33](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:20, 05:05](1197 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 05:04](1202 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:57](1207 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 05:01](1202 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:20](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 05:04](1197 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 05:03](1197 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:04](1208 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:56](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:18, 05:09](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 05:04](1202 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:16, 07:46](1204 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:57](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 05:45](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:53](1206 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:23, 08:17](1204 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:05, 03:46] +PASS -- TEST 'control_wam_debug_intel' [05:18, 05:01](511 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 11:21] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:55, 04:32](1159 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:23, 06:23](1050 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:20, 03:24](976 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 06:46](1095 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:10, 02:59](964 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:15, 03:36](927 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:15, 04:55](972 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 01:52](941 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:06, 13:34] +PASS -- TEST 'conus13km_control_intel' [03:58, 02:07](1201 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:43, 01:04](1120 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:40, 01:19](1111 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 12:38] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 04:13](993 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 03:19] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:54](1085 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:17, 04:51](1090 MB) +PASS -- TEST 'conus13km_debug_intel' [16:44, 14:22](1228 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:42, 14:19](928 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:38, 08:26](1152 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:02](1296 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 03:23] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 05:01](1130 MB) + +PASS -- COMPILE 'hafsw_intel' [13:06, 12:57] +PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:31](736 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:51](1116 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 07:03](835 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 12:50](866 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:24, 14:41](884 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:51, 06:23](506 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:37](521 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 03:09](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:20, 08:00](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 04:10](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:56](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 05:19](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 01:36](405 MB) +PASS -- TEST 'gnv1_nested_intel' [05:53, 04:38](802 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:06, 04:00] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:12](562 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:06, 13:46] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:59, 09:36](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:11, 09:41](743 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:06, 13:37] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 06:54](732 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:06, 12:20] +PASS -- TEST 'hafs_regional_docn_intel' [10:10, 06:24](829 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:24](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:00](1213 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:06, 07:06] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:40](1132 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:41](1051 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:32](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:38](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:34](1016 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:44](1124 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:39](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:12, 02:31](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 05:57](1059 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:09, 05:58](1037 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:36](1138 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 03:32](2496 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:13, 03:37](2495 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 03:34] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:14, 06:13](1065 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:06, 09:58] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:38](1126 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:58] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:24, 00:52](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:18, 00:51](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:33](322 MB) + +PASS -- COMPILE 'atml_intel' [13:06, 12:36] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:35, 04:12](1612 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:36, 04:17](1600 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 02:31](889 MB) + +PASS -- COMPILE 'atmw_intel' [12:06, 11:29] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 01:46](1663 MB) + +PASS -- COMPILE 'atmwm_intel' [14:06, 14:04] +PASS -- TEST 'control_atmwav_intel' [03:06, 01:42](674 MB) + +PASS -- COMPILE 'atmaero_intel' [12:06, 11:05] +PASS -- TEST 'atmaero_control_p8_intel' [05:18, 04:02](3026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:14, 04:49](3100 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:07](3112 MB) + +PASS -- COMPILE 'atmaq_intel' [12:06, 11:11] + +PASS -- COMPILE 'atmaq_debug_intel' [04:06, 03:25] +PASS -- TEST 'regional_atmaq_debug_intel' [23:39, 21:26](4572 MB) SYNOPSIS: -Starting Date/Time: 20240411 14:18:10 -Ending Date/Time: 20240411 17:26:58 -Total Time: 03h:09m:32s +Starting Date/Time: 20240415 18:41:28 +Ending Date/Time: 20240415 20:03:54 +Total Time: 01h:23m:13s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 48a4d36a3a..4c318d73a9 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffacfb6d50c9803809d458a42c634f89aaec8861 +d5f1957f6d43c8e93bd556e9862958738751400a Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb) + 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/HEAD-4-g6e1bc3e) + b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-396-gb447c63) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -26,19 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) NOTES: @@ -48,236 +36,234 @@ 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-20240408 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_227744 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_225418 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:38, 11:00] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:48, 01:19](2976 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:37, 11:25] -PASS -- TEST 'cpld_control_gfsv17_intel' [57:49, 01:27](1591 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:25, 01:31](1711 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [34:20, 01:36](849 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [57:50, 01:46](1574 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [19:00, 17:24] -PASS -- TEST 'cpld_debug_gfsv17_intel' [51:27, 01:33](1602 MB) - -PASS -- COMPILE 's2swa_intel' [31:18, 29:28] -PASS -- TEST 'cpld_control_p8_intel' [35:59, 02:13](3005 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [34:19, 01:49](3000 MB) -PASS -- TEST 'cpld_restart_p8_intel' [25:04, 01:57](3061 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [34:19, 01:42](3027 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [23:41, 01:18](3081 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [34:09, 01:15](3315 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [33:18, 01:37](3001 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:16, 01:16](2927 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:13, 01:43](3002 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:22, 04:30](3954 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:13, 04:34](4246 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [33:11, 01:55](2970 MB) - -PASS -- COMPILE 's2sw_intel' [12:37, 11:31] -PASS -- TEST 'cpld_control_noaero_p8_intel' [57:49, 01:14](1586 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [57:49, 01:23](1639 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:35, 09:58] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:52, 01:12](1632 MB) - -PASS -- COMPILE 's2s_intel' [25:07, 23:46] -PASS -- TEST 'cpld_control_c48_intel' [45:18, 00:50](2648 MB) - -PASS -- COMPILE 's2swa_faster_intel' [32:25, 30:58] -PASS -- TEST 'cpld_control_p8_faster_intel' [32:38, 01:17](3005 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:38, 11:16] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [57:49, 00:50](1607 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:38, 01:00](906 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:39, 01:18](1573 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:51, 15:27] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [53:37, 00:44](1614 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:52, 12:39] -PASS -- TEST 'control_flake_intel' [40:59, 00:45](574 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [40:59, 01:11](520 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [40:59, 01:16](528 MB) -PASS -- TEST 'control_latlon_intel' [40:59, 00:40](523 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [40:59, 00:44](521 MB) -PASS -- TEST 'control_c48_intel' [40:58, 00:53](714 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [40:58, 00:52](714 MB) -PASS -- TEST 'control_c192_intel' [40:59, 00:51](640 MB) -PASS -- TEST 'control_c384_intel' [41:03, 01:37](955 MB) -PASS -- TEST 'control_c384gdas_intel' [41:03, 02:41](1090 MB) -PASS -- TEST 'control_stochy_intel' [40:59, 01:19](534 MB) -PASS -- TEST 'control_stochy_restart_intel' [32:38, 00:17](330 MB) -PASS -- TEST 'control_lndp_intel' [40:59, 00:56](529 MB) -PASS -- TEST 'control_iovr4_intel' [40:59, 01:10](524 MB) -PASS -- TEST 'control_iovr5_intel' [40:59, 01:07](525 MB) -PASS -- TEST 'control_p8_intel' [40:59, 01:06](1505 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [40:59, 01:29](1502 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [40:59, 01:30](1510 MB) -PASS -- TEST 'control_restart_p8_intel' [32:20, 01:43](695 MB) -PASS -- TEST 'control_noqr_p8_intel' [40:59, 01:10](1500 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [32:18, 01:37](700 MB) -PASS -- TEST 'control_decomp_p8_intel' [40:59, 00:56](1495 MB) -PASS -- TEST 'control_2threads_p8_intel' [40:59, 01:23](1595 MB) -PASS -- TEST 'control_p8_lndp_intel' [40:59, 00:41](1501 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [32:15, 01:34](1558 MB) -PASS -- TEST 'control_p8_mynn_intel' [32:13, 01:21](1509 MB) -PASS -- TEST 'merra2_thompson_intel' [31:00, 02:15](1507 MB) -PASS -- TEST 'regional_control_intel' [30:59, 01:06](608 MB) -PASS -- TEST 'regional_restart_intel' [24:04, 00:34](782 MB) -PASS -- TEST 'regional_decomp_intel' [30:54, 00:47](607 MB) -PASS -- TEST 'regional_2threads_intel' [30:51, 00:50](661 MB) -PASS -- TEST 'regional_noquilt_intel' [30:07, 00:44](1145 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [30:01, 00:18](608 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [29:59, 00:15](609 MB) -PASS -- TEST 'regional_wofs_intel' [27:43, 00:19](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [23:03, 17:34] -PASS -- TEST 'rap_control_intel' [27:44, 01:44](920 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [26:54, 00:34](1093 MB) -PASS -- TEST 'rap_decomp_intel' [26:42, 01:29](919 MB) -PASS -- TEST 'rap_2threads_intel' [26:02, 00:56](1007 MB) -PASS -- TEST 'rap_restart_intel' [18:10, 01:49](786 MB) -PASS -- TEST 'rap_sfcdiff_intel' [25:35, 01:55](917 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [24:58, 01:30](915 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [16:04, 02:05](783 MB) -PASS -- TEST 'hrrr_control_intel' [24:57, 01:10](910 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [24:54, 01:06](911 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [24:45, 01:14](995 MB) -PASS -- TEST 'hrrr_control_restart_intel' [19:41, 01:06](744 MB) -PASS -- TEST 'rrfs_v1beta_intel' [24:13, 01:58](910 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [24:05, 00:39](1875 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:44, 00:29](1864 MB) - -PASS -- COMPILE 'csawmg_intel' [15:47, 10:08] -PASS -- TEST 'control_csawmg_intel' [42:01, 00:54](602 MB) -PASS -- TEST 'control_csawmgt_intel' [42:01, 00:59](601 MB) -PASS -- TEST 'control_ras_intel' [42:01, 01:03](558 MB) - -PASS -- COMPILE 'wam_intel' [20:59, 15:30] -PASS -- TEST 'control_wam_intel' [23:41, 01:12](271 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [24:12, 19:15] -PASS -- TEST 'control_p8_faster_intel' [23:39, 01:37](1506 MB) -PASS -- TEST 'regional_control_faster_intel' [23:33, 01:01](610 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [26:10, 16:14] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:32, 00:39](688 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:16, 01:02](688 MB) -PASS -- TEST 'control_stochy_debug_intel' [23:09, 00:39](689 MB) -PASS -- TEST 'control_lndp_debug_intel' [23:04, 00:58](693 MB) -PASS -- TEST 'control_csawmg_debug_intel' [22:06, 00:26](731 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [21:59, 00:27](731 MB) -PASS -- TEST 'control_ras_debug_intel' [20:40, 01:11](703 MB) -PASS -- TEST 'control_diag_debug_intel' [19:53, 00:23](749 MB) -PASS -- TEST 'control_debug_p8_intel' [19:41, 01:15](1521 MB) -PASS -- TEST 'regional_debug_intel' [19:40, 01:06](630 MB) -PASS -- TEST 'rap_control_debug_intel' [19:22, 01:05](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [19:13, 01:00](1070 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [18:58, 00:20](1071 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [18:37, 01:12](1072 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [18:36, 00:31](1073 MB) -PASS -- TEST 'rap_diag_debug_intel' [18:36, 01:05](1163 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:14, 01:14](1075 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:08, 00:16](1073 MB) -PASS -- TEST 'rap_lndp_debug_intel' [17:45, 00:57](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:35, 01:01](1074 MB) -PASS -- TEST 'rap_noah_debug_intel' [17:17, 00:24](1075 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [16:47, 00:38](1071 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:24, 01:00](1068 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [16:18, 00:57](1066 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [16:09, 01:06](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [15:50, 01:16](1076 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:22, 01:57](1083 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:50, 05:23] -PASS -- TEST 'control_wam_debug_intel' [15:13, 00:44](297 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:51, 11:18] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:57, 01:02](957 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:50, 01:29](793 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:36, 02:02](788 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:19, 01:13](850 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:07, 01:54](837 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:00, 01:26](785 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:14, 01:59](686 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:44, 01:10](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:47, 10:18] -PASS -- TEST 'conus13km_control_intel' [12:52, 00:44](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:58, 00:39](1005 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:56, 00:28](881 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:43, 08:21] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:44, 01:10](811 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [14:47, 11:04] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:45, 01:10](955 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:35, 00:24](954 MB) -PASS -- TEST 'conus13km_debug_intel' [10:14, 00:33](1037 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [09:58, 00:55](709 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:32, 00:59](1042 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [09:30, 01:08](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:46, 10:45] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:54, 00:48](983 MB) - -PASS -- COMPILE 'hafsw_intel' [17:59, 14:11] -PASS -- TEST 'hafs_regional_atm_intel' [08:50, 01:32](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:42, 01:24](965 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:34, 02:02](662 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [08:08, 02:20](699 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [08:07, 02:00](713 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:41, 00:52](388 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:39, 02:02](403 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:08, 01:46](283 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:49, 02:05](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 01:23](418 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:43, 00:46](410 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:32, 00:49](490 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:26, 00:28](323 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:57, 14:57] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:17, 01:06](499 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:01, 21:06] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:33, 01:04](537 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [03:53, 01:23](708 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:48, 14:24] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [03:14, 01:21](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:35, 09:07] -PASS -- TEST 'hafs_regional_docn_intel' [03:10, 02:23](664 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [03:01, 02:11](645 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [02:40, 00:15](880 MB) - -PASS -- COMPILE 'atml_intel' [19:54, 18:35] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [02:06, 01:59](1553 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [01:09, 01:32](1542 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [53:21, 00:57](747 MB) - -PASS -- COMPILE 'atmaero_intel' [18:54, 18:06] -PASS -- TEST 'atmaero_control_p8_intel' [00:47, 01:35](2854 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [00:12, 01:23](2910 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:57, 01:26](2921 MB) - -PASS -- COMPILE 'atmaq_intel' [17:52, 16:26] - -PASS -- COMPILE 'atmaq_debug_intel' [04:19, 04:00] -PASS -- TEST 'regional_atmaq_debug_intel' [59:39, 00:45](4438 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:21, 11:33] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:36, 02:10](2974 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:41, 28:12] +PASS -- TEST 'cpld_control_gfsv17_intel' [40:17, 02:07](1595 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:20, 01:53](1718 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [19:17, 01:38](849 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:18, 01:29](1581 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:14, 04:21] +PASS -- TEST 'cpld_debug_gfsv17_intel' [04:45, 01:38](1606 MB) + +PASS -- COMPILE 's2swa_intel' [11:22, 10:49] +PASS -- TEST 'cpld_control_p8_intel' [58:36, 01:31](3004 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [58:36, 01:40](3001 MB) +PASS -- TEST 'cpld_restart_p8_intel' [48:11, 01:17](3065 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [58:36, 01:02](3030 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [48:11, 01:16](3081 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [58:36, 01:37](3320 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [58:36, 01:22](2999 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [58:37, 01:36](2931 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:35, 01:42](3002 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [58:45, 05:07](3949 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:20, 03:40](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [58:36, 02:02](2970 MB) + +PASS -- COMPILE 's2sw_intel' [12:22, 11:03] +PASS -- TEST 'cpld_control_noaero_p8_intel' [57:35, 00:55](1589 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [57:35, 01:22](1639 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:34, 21:25] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:23, 01:47](1633 MB) + +PASS -- COMPILE 's2s_intel' [26:38, 24:44] +PASS -- TEST 'cpld_control_c48_intel' [43:18, 00:55](2652 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:32, 18:20] +PASS -- TEST 'cpld_control_p8_faster_intel' [17:20, 01:58](3005 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:21, 11:28] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [57:36, 01:32](1605 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [36:09, 01:16](904 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:58, 01:28](1586 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [23:36, 21:54] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:22, 01:10](1613 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [24:34, 22:37] +PASS -- TEST 'control_flake_intel' [40:09, 00:43](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [40:09, 01:01](522 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [40:09, 01:04](532 MB) +PASS -- TEST 'control_latlon_intel' [40:09, 00:56](523 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [40:09, 01:03](526 MB) +PASS -- TEST 'control_c48_intel' [40:08, 01:13](714 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [40:08, 01:12](719 MB) +PASS -- TEST 'control_c192_intel' [40:09, 00:26](637 MB) +PASS -- TEST 'control_c384_intel' [37:32, 01:06](951 MB) +PASS -- TEST 'control_c384gdas_intel' [37:32, 02:19](1093 MB) +PASS -- TEST 'control_stochy_intel' [35:33, 01:14](527 MB) +PASS -- TEST 'control_stochy_restart_intel' [28:04, 00:37](331 MB) +PASS -- TEST 'control_lndp_intel' [33:45, 00:28](526 MB) +PASS -- TEST 'control_iovr4_intel' [33:43, 00:22](524 MB) +PASS -- TEST 'control_iovr5_intel' [33:40, 01:19](525 MB) +PASS -- TEST 'control_p8_intel' [33:35, 01:29](1512 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [33:00, 01:37](1506 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [33:00, 01:41](1506 MB) +PASS -- TEST 'control_restart_p8_intel' [25:16, 01:08](689 MB) +PASS -- TEST 'control_noqr_p8_intel' [33:00, 01:16](1496 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [19:16, 01:33](701 MB) +PASS -- TEST 'control_decomp_p8_intel' [32:44, 01:40](1498 MB) +PASS -- TEST 'control_2threads_p8_intel' [32:05, 01:34](1594 MB) +PASS -- TEST 'control_p8_lndp_intel' [31:10, 00:45](1502 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [30:39, 01:53](1564 MB) +PASS -- TEST 'control_p8_mynn_intel' [30:30, 01:42](1515 MB) +PASS -- TEST 'merra2_thompson_intel' [30:27, 01:28](1511 MB) +PASS -- TEST 'regional_control_intel' [29:44, 00:45](610 MB) +PASS -- TEST 'regional_restart_intel' [19:57, 00:29](777 MB) +PASS -- TEST 'regional_decomp_intel' [29:42, 00:31](608 MB) +PASS -- TEST 'regional_2threads_intel' [29:41, 00:29](665 MB) +PASS -- TEST 'regional_noquilt_intel' [29:38, 00:51](1145 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [28:58, 00:41](610 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [28:56, 00:34](608 MB) +PASS -- TEST 'regional_wofs_intel' [28:34, 01:02](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [17:26, 15:10] +PASS -- TEST 'rap_control_intel' [28:12, 01:25](917 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:09, 01:08](1096 MB) +PASS -- TEST 'rap_decomp_intel' [41:09, 01:48](920 MB) +PASS -- TEST 'rap_2threads_intel' [41:09, 01:58](1010 MB) +PASS -- TEST 'rap_restart_intel' [15:50, 01:28](786 MB) +PASS -- TEST 'rap_sfcdiff_intel' [41:09, 01:22](915 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [41:09, 01:52](914 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [27:27, 01:30](785 MB) +PASS -- TEST 'hrrr_control_intel' [41:09, 01:08](907 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [41:09, 01:06](909 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [41:10, 01:37](995 MB) +PASS -- TEST 'hrrr_control_restart_intel' [27:16, 00:55](742 MB) +PASS -- TEST 'rrfs_v1beta_intel' [41:09, 01:28](909 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [41:09, 01:15](1875 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:11, 00:30](1860 MB) + +PASS -- COMPILE 'csawmg_intel' [21:30, 19:17] +PASS -- TEST 'control_csawmg_intel' [24:36, 01:07](600 MB) +PASS -- TEST 'control_csawmgt_intel' [24:33, 01:11](599 MB) +PASS -- TEST 'control_ras_intel' [23:36, 00:47](562 MB) + +PASS -- COMPILE 'wam_intel' [20:29, 18:36] +PASS -- TEST 'control_wam_intel' [23:05, 01:01](271 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:26, 14:44] +PASS -- TEST 'control_p8_faster_intel' [22:32, 01:25](1513 MB) +PASS -- TEST 'regional_control_faster_intel' [22:10, 00:58](612 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:22, 07:14] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:02, 00:43](686 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:52, 00:49](691 MB) +PASS -- TEST 'control_stochy_debug_intel' [21:35, 00:24](689 MB) +PASS -- TEST 'control_lndp_debug_intel' [21:13, 01:08](695 MB) +PASS -- TEST 'control_csawmg_debug_intel' [21:07, 00:23](733 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [19:58, 00:37](731 MB) +PASS -- TEST 'control_ras_debug_intel' [19:58, 00:27](700 MB) +PASS -- TEST 'control_diag_debug_intel' [19:56, 00:31](748 MB) +PASS -- TEST 'control_debug_p8_intel' [19:54, 00:58](1526 MB) +PASS -- TEST 'regional_debug_intel' [19:44, 00:47](631 MB) +PASS -- TEST 'rap_control_debug_intel' [19:10, 01:15](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [18:44, 00:33](1073 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [16:43, 01:20](1072 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [16:00, 01:08](1072 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:39, 01:12](1077 MB) +PASS -- TEST 'rap_diag_debug_intel' [15:36, 01:06](1159 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:02, 00:39](1073 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:26, 00:21](1075 MB) +PASS -- TEST 'rap_lndp_debug_intel' [14:16, 00:32](1075 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:05, 00:37](1076 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:52, 00:51](1074 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:32, 00:52](1073 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:49, 00:56](1074 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [12:48, 00:58](1072 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:44, 01:02](1078 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:30, 01:04](1076 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:25, 01:28](1079 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:19, 06:52] +PASS -- TEST 'control_wam_debug_intel' [12:23, 01:09](301 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:28, 13:18] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:16, 01:20](953 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:49, 01:17](789 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:23, 02:06](788 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:13, 00:59](848 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:13, 02:07](848 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:11, 02:02](791 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:30, 01:28](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:41, 01:11](669 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:31, 13:15] +PASS -- TEST 'conus13km_control_intel' [09:14, 00:40](1003 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:21, 00:24](1009 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:13, 00:19](882 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:24, 11:22] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:40, 01:05](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:13, 03:01] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:19, 00:58](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 00:38](951 MB) +PASS -- TEST 'conus13km_debug_intel' [07:25, 01:06](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [07:16, 00:49](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:08, 00:54](1038 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [06:57, 00:44](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [15:30, 12:02] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:51, 00:51](980 MB) + +PASS -- COMPILE 'hafsw_intel' [21:30, 16:17] +PASS -- TEST 'hafs_regional_atm_intel' [05:47, 01:53](616 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:44, 01:16](967 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:33, 01:25](660 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [05:26, 02:18](703 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:15, 01:19](711 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:05, 00:59](390 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [04:23, 01:46](404 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:07, 01:02](283 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:02, 02:42](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:42, 01:26](415 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:18, 01:46](411 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [02:50, 01:27](488 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:22, 01:13](314 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [18:28, 13:42] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:03, 01:27](502 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:42, 19:16] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:45, 01:42](533 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:40, 01:24](708 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:39, 15:59] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:52, 01:33](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:34, 16:23] +PASS -- TEST 'hafs_regional_docn_intel' [01:01, 02:01](659 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [00:55, 01:58](650 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [00:14, 01:17](880 MB) + +PASS -- COMPILE 'atml_intel' [22:41, 18:42] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [59:59, 01:47](1546 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [59:22, 01:16](1540 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [51:52, 00:49](741 MB) + +PASS -- COMPILE 'atmaero_intel' [14:33, 11:08] +PASS -- TEST 'atmaero_control_p8_intel' [59:11, 01:31](2851 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [58:54, 01:59](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [58:10, 01:14](2923 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [14:29, 10:39] +PASS -- TEST 'regional_atmaq_debug_intel' [58:09, 01:40](4435 MB) SYNOPSIS: -Starting Date/Time: 20240411 18:49:14 -Ending Date/Time: 20240411 20:32:17 -Total Time: 01h:43m:42s -Compiles Completed: 31/31 +Starting Date/Time: 20240416 14:49:41 +Ending Date/Time: 20240416 16:29:19 +Total Time: 01h:40m:15s +Compiles Completed: 30/30 Tests Completed: 157/157 NOTES: diff --git a/tests/module-setup.sh b/tests/module-setup.sh index f392a6c084..57e02965c7 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -1,42 +1,42 @@ #!/bin/bash set -eu -if [[ $MACHINE_ID = jet ]] ; then +if [[ ${MACHINE_ID} = jet ]] ; then # We are on NOAA Jet if ( ! eval module help > /dev/null 2>&1 ) ; then source /apps/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = hera ]] ; then +elif [[ ${MACHINE_ID} = hera ]] ; then # We are on NOAA Hera if ( ! eval module help > /dev/null 2>&1 ) ; then source /apps/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = orion ]] ; then +elif [[ ${MACHINE_ID} = orion ]] ; then # We are on Orion if ( ! eval module help > /dev/null 2>&1 ) ; then source /apps/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = hercules ]] ; then +elif [[ ${MACHINE_ID} = hercules ]] ; then # We are on Hercules if ( ! eval module help > /dev/null 2>&1 ) ; then source /apps/other/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = s4 ]] ; then +elif [[ ${MACHINE_ID} = s4 ]] ; then # We are on SSEC Wisconsin S4 if ( ! eval module help > /dev/null 2>&1 ) ; then source /usr/share/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]] ; then +elif [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]] ; then # We are on NOAA Cactus or Dogwood if ( ! eval module help > /dev/null 2>&1 ) ; then source /usr/share/lmod/lmod/init/bash @@ -44,28 +44,28 @@ elif [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]] ; then module purge module reset -elif [[ $MACHINE_ID = derecho ]] ; then +elif [[ ${MACHINE_ID} = derecho ]] ; then # We are on NCAR Derecho if ( ! eval module help > /dev/null 2>&1 ) ; then source /usr/share/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = noaacloud ]] ; then +elif [[ ${MACHINE_ID} = noaacloud ]] ; then # We are on NOAA Cloud if ( ! eval module help > /dev/null 2>&1 ) ; then source /apps/lmod/8.5.2/init/bash fi module purge -elif [[ $MACHINE_ID = stampede ]] ; then +elif [[ ${MACHINE_ID} = stampede ]] ; then # We are on TACC Stampede if ( ! eval module help > /dev/null 2>&1 ) ; then source /opt/apps/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = gaea ]] ; then +elif [[ ${MACHINE_ID} = gaea ]] ; then # We are on GAEA if ( ! eval module help > /dev/null 2>&1 ) ; then # We cannot simply load the module command. The GAEA @@ -77,7 +77,7 @@ elif [[ $MACHINE_ID = gaea ]] ; then fi module reset -elif [[ $MACHINE_ID = expanse ]]; then +elif [[ ${MACHINE_ID} = expanse ]]; then # We are on SDSC Expanse if ( ! eval module help > /dev/null 2>&1 ) ; then source /etc/profile.d/modules.sh diff --git a/tests/opnReqTest b/tests/opnReqTest index b9a003b706..db44db7c0b 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -78,7 +78,7 @@ find_build() { build_opnReqTests() { rm -f fv3_std.exe fv3_dbg.exe fv3_bit.exe modules.fv3_std modules.fv3_dbg modules.fv3_bit - + export RTVERBOSE=false model_found=false base_opt= find_build diff --git a/tests/rt.conf b/tests/rt.conf index 0f99745539..1dc257527b 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -320,7 +320,7 @@ RUN | atmaero_control_p8_rad | - noaacloud RUN | atmaero_control_p8_rad_micro | - noaacloud | baseline | ### ATM-CMAQ tests ### -COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | +#COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | #RUN | regional_atmaq | - jet s4 | baseline | COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index e05e8d4636..0b693c1966 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -1,15 +1,17 @@ #!/bin/bash -set -eux - +set -eu +set -o errexit #Lets trap exit info as error for logging +echo "******Regression Testing Script Started******" SECONDS=0 hostname die() { echo "$@" >&2; exit 1; } + usage() { - set +x + set +x #No reason to print out a bunch of echo statements here echo - echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -o | -r | -w" + echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -o | -r | -v | -w" echo echo " -a to use on for HPC queue" echo " -b create new baselines only for tests listed in " @@ -23,16 +25,16 @@ usage() { echo " -n run single test " echo " -o compile only, skip tests" echo " -r use Rocoto workflow manager" + echo " -v verbose output" echo " -w for weekly_test, skip comparing baseline results" echo set -x - exit 1 } [[ $# -eq 0 ]] && usage update_rtconf() { - + echo "rt.sh: Checking & Updating test configuration..." find_match() { # This function finds if a test in $TESTS_FILE matches one # in our list of tests to be run. @@ -41,13 +43,13 @@ update_rtconf() { TWC=("$@") FOUND=false for i in "${!TWC[@]}"; do - if [[ "${TWC[$i]}" == "${THIS_TEST_WITH_COMPILER}" ]]; then + if [[ "${TWC[${i}]}" == "${THIS_TEST_WITH_COMPILER}" ]]; then FOUND=true echo "${i}" return fi done - if [[ $FOUND == false ]]; then + if [[ ${FOUND} == false ]]; then echo "-1" fi } @@ -56,16 +58,16 @@ update_rtconf() { # -b or -n options being called/used. # THE USER CHOSE THE -b OPTION - if [[ $NEW_BASELINES_FILE != '' ]]; then - [[ -s "$NEW_BASELINES_FILE" ]] || die "${NEW_BASELINES_FILE} is empty, exiting..." + if [[ ${NEW_BASELINES_FILE} != '' ]]; then + [[ -s "${NEW_BASELINES_FILE}" ]] || die "${NEW_BASELINES_FILE} is empty, exiting..." TEST_WITH_COMPILE=() - readarray -t TEST_WITH_COMPILE < "$NEW_BASELINES_FILE" + readarray -t TEST_WITH_COMPILE < "${NEW_BASELINES_FILE}" # else USER CHOSE THE -l OPTION - elif [[ $DEFINE_CONF_FILE == true ]]; then + elif [[ ${DEFINE_CONF_FILE} == true ]]; then echo "No update needed to TESTS_FILE" return # else USER CHOSE THE -n OPTION - elif [[ $RUN_SINGLE_TEST == true ]]; then + elif [[ ${RUN_SINGLE_TEST} == true ]]; then TEST_WITH_COMPILE=("${SRT_NAME} ${SRT_COMPILER}") else echo "No update needed to rt.conf" @@ -73,33 +75,36 @@ update_rtconf() { fi RT_TEMP_CONF="rt_temp.conf" - rm -f $RT_TEMP_CONF && touch $RT_TEMP_CONF + rm -f "${RT_TEMP_CONF}" && touch "${RT_TEMP_CONF}" local compile_line='' - - while read -r line || [ "$line" ]; do + while read -r line || [[ -n "${line}" ]]; do line="${line#"${line%%[![:space:]]*}"}" - [[ -n $line ]] || continue + [[ -n "${line}" ]] || continue [[ ${#line} == 0 ]] && continue - [[ $line == \#* ]] && continue + [[ ${line} == \#* ]] && continue - if [[ $line =~ COMPILE ]] ; then - MACHINES=$(echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') - RT_COMPILER_IN=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + if [[ ${line} =~ COMPILE ]] ; then + MACHINES=$(cut -d'|' -f5 <<< "${line}") + MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}") + RT_COMPILER_IN=$(cut -d'|' -f3 <<< "${line}") + RT_COMPILER_IN=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RT_COMPILER_IN}") if [[ ${MACHINES} == '' ]]; then - compile_line=$line - COMPILE_LINE_USED=false + compile_line=${line} + COMPILE_LINE_USED=false elif [[ ${MACHINES} == -* ]]; then - [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line; COMPILE_LINE_USED=false + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=${line}; COMPILE_LINE_USED=false elif [[ ${MACHINES} == +* ]]; then - [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line; COMPILE_LINE_USED=false + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=${line}; COMPILE_LINE_USED=false fi fi - if [[ $line =~ RUN ]]; then + if [[ ${line} =~ RUN ]]; then to_run_test=false - tmp_test=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - MACHINES=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + tmp_test=$(cut -d'|' -f2 <<< "${line}") + tmp_test=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${tmp_test}") + MACHINES=$(cut -d'|' -f3 <<< "${line}") + MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}") if [[ ${MACHINES} == '' ]]; then to_run_test=true elif [[ ${MACHINES} == -* ]]; then @@ -107,49 +112,53 @@ update_rtconf() { elif [[ ${MACHINES} == +* ]]; then [[ ${MACHINES} =~ ${MACHINE_ID} ]] && to_run_test=true fi - if [[ $to_run_test == true ]]; then - TEST_IDX=$(find_match "$tmp_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") + if [[ ${to_run_test} == true ]]; then + TEST_IDX=$(set -e; find_match "${tmp_test} ${RT_COMPILER_IN}" "${TEST_WITH_COMPILE[@]}") - if [[ $TEST_IDX != -1 ]]; then - if [[ $COMPILE_LINE_USED == false ]]; then - echo -en '\n' >> $RT_TEMP_CONF - echo "$compile_line" >> $RT_TEMP_CONF + if [[ ${TEST_IDX} != -1 ]]; then + if [[ ${COMPILE_LINE_USED} == false ]]; then + echo -en '\n' >> "${RT_TEMP_CONF}" + echo "${compile_line}" >> "${RT_TEMP_CONF}" + COMPILE_LINE_USED=true fi - dep_test=$(echo "$line" | grep -w "$tmp_test" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') + dep_test=$(grep -w "${tmp_test}" <<< "${line}") + dep_test=$(cut -d'|' -f5 <<< "${dep_test}") + dep_test=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${dep_test}") - if [[ $dep_test != '' ]]; then - if [[ $(find_match "$dep_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") == -1 ]]; then - - dep_line=$(grep -w "$dep_test" rt.conf | grep -v "$tmp_test") + if [[ ${dep_test} != '' ]]; then + find_match_result=$(set -e; find_match "${dep_test} ${RT_COMPILER_IN}" "${TEST_WITH_COMPILE[@]}") + if [[ ${find_match_result} == -1 ]]; then + dep_line=$(grep -w "${dep_test}" rt.conf) + dep_line=$(grep -v "${tmp_test}" <<< "${dep_line}") dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}" - dep_line=$(echo "${dep_line}" | tr -d '\n') - CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "$dep_line") - CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "$dep_line") + dep_line=$(tr -d '\n' <<< "${dep_line}") + CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "${dep_line}") + CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "${dep_line}") - if [[ $RT_COMPILER_IN == "intel" ]]; then - echo "RUN ${CORRECT_LINE[1]}" >> $RT_TEMP_CONF - elif [[ $RT_COMPILER_IN == "gnu" ]]; then - echo "RUN ${CORRECT_LINE[2]}" >> $RT_TEMP_CONF + if [[ ${RT_COMPILER_IN} == "intel" ]]; then + echo "RUN ${CORRECT_LINE[1]}" >> "${RT_TEMP_CONF}" + elif [[ ${RT_COMPILER_IN} == "gnu" ]]; then + echo "RUN ${CORRECT_LINE[2]}" >> "${RT_TEMP_CONF}" fi fi fi - echo "$line" >> $RT_TEMP_CONF - fi + echo "${line}" >> "${RT_TEMP_CONF}" + fi fi fi - done < "$TESTS_FILE" + done < "${TESTS_FILE}" - if [[ ! -s $RT_TEMP_CONF ]]; then - echo "The tests listed/chosen do not exist or cannot be run on $MACHINE_ID" + if [[ ! -s ${RT_TEMP_CONF} ]]; then + echo "The tests listed/chosen do not exist or cannot be run on ${MACHINE_ID}" exit 1 else - TESTS_FILE=$RT_TEMP_CONF + TESTS_FILE=${RT_TEMP_CONF} fi } generate_log() { - + echo "rt.sh: Generating Regression Testing Log..." COMPILE_COUNTER=0 FAILED_COMPILES=() TEST_COUNTER=0 @@ -159,19 +168,21 @@ generate_log() { FAILED_TEST_LOGS=() TEST_CHANGES_LOG="test_changes.list" TEST_END_TIME="$(date '+%Y%m%d %T')" + GIT_HASHES=$(git rev-parse HEAD) cat << EOF > "${REGRESSIONTEST_LOG}" ====START OF ${MACHINE_ID^^} REGRESSION TESTING LOG==== UFSWM hash used in testing: -$(git rev-parse HEAD) +${GIT_HASHES} Submodule hashes used in testing: EOF cd .. - if [[ $MACHINE_ID != hera ]]; then - git submodule status --recursive >> "${REGRESSIONTEST_LOG}" + if [[ ${MACHINE_ID} != hera ]]; then + git submodule status --recursive >> "${REGRESSIONTEST_LOG}" + else + git submodule status >> "${REGRESSIONTEST_LOG}" fi - git submodule status >> "${REGRESSIONTEST_LOG}" echo; echo >> "${REGRESSIONTEST_LOG}" cd tests @@ -189,35 +200,42 @@ COMPARISON DIRECTORY: ${RUNDIR_ROOT} RT.SH OPTIONS USED: EOF - [[ -n $ACCNR ]] && echo "* (-a) - HPC PROJECT ACCOUNT: ${ACCNR}" >> "${REGRESSIONTEST_LOG}" - [[ -n $NEW_BASELINES_FILE ]] && echo "* (-b) - NEW BASELINES FROM FILE: ${NEW_BASELINES_FILE}" >> "${REGRESSIONTEST_LOG}" - [[ $CREATE_BASELINE == true ]] && echo "* (-c) - CREATE NEW BASELINES" >> "${REGRESSIONTEST_LOG}" - [[ $DEFINE_CONF_FILE == true ]] && echo "* (-l) - USE CONFIG FILE: ${TESTS_FILE}" >> "${REGRESSIONTEST_LOG}" - [[ $RTPWD_NEW_BASELINE == true ]] && echo "* (-m) - COMPARE AGAINST CREATED BASELINES" >> "${REGRESSIONTEST_LOG}" - [[ $RUN_SINGLE_TEST == true ]] && echo "* (-n) - RUN SINGLE TEST: ${SINGLE_OPTS}" >> "${REGRESSIONTEST_LOG}" - [[ $COMPILE_ONLY == true ]]&& echo "* 9 (-o) COMPILE ONLY, SKIP TESTS" >> "${REGRESSIONTEST_LOG}" - [[ $delete_rundir == true ]] && echo "* (-d) - DELETE RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" - [[ $skip_check_results == true ]] && echo "* (-w) - SKIP RESULTS CHECK" >> "${REGRESSIONTEST_LOG}" - [[ $KEEP_RUNDIR == true ]] && echo "* (-k) - KEEP RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" - [[ $ROCOTO == true ]] && echo "* (-r) - USE ROCOTO" >> "${REGRESSIONTEST_LOG}" - [[ $ECFLOW == true ]] && echo "* (-e) - USE ECFLOW" >> "${REGRESSIONTEST_LOG}" - - - [[ -f "${TEST_CHANGES_LOG}" ]] && rm ${TEST_CHANGES_LOG} - touch ${TEST_CHANGES_LOG} - while read -r line || [ "$line" ]; do + [[ -n ${ACCNR} ]] && echo "* (-a) - HPC PROJECT ACCOUNT: ${ACCNR}" >> "${REGRESSIONTEST_LOG}" + [[ -n ${NEW_BASELINES_FILE} ]] && echo "* (-b) - NEW BASELINES FROM FILE: ${NEW_BASELINES_FILE}" >> "${REGRESSIONTEST_LOG}" + [[ ${CREATE_BASELINE} == true ]] && echo "* (-c) - CREATE NEW BASELINES" >> "${REGRESSIONTEST_LOG}" + [[ ${DEFINE_CONF_FILE} == true ]] && echo "* (-l) - USE CONFIG FILE: ${TESTS_FILE}" >> "${REGRESSIONTEST_LOG}" + [[ ${RTPWD_NEW_BASELINE} == true ]] && echo "* (-m) - COMPARE AGAINST CREATED BASELINES" >> "${REGRESSIONTEST_LOG}" + [[ ${RUN_SINGLE_TEST} == true ]] && echo "* (-n) - RUN SINGLE TEST: ${SINGLE_OPTS}" >> "${REGRESSIONTEST_LOG}" + [[ ${COMPILE_ONLY} == true ]]&& echo "* (-o) - COMPILE ONLY, SKIP TESTS" >> "${REGRESSIONTEST_LOG}" + [[ ${delete_rundir} == true ]] && echo "* (-d) - DELETE RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" + [[ ${skip_check_results} == true ]] && echo "* (-w) - SKIP RESULTS CHECK" >> "${REGRESSIONTEST_LOG}" + [[ ${KEEP_RUNDIR} == true ]] && echo "* (-k) - KEEP RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" + [[ ${ROCOTO} == true ]] && echo "* (-r) - USE ROCOTO" >> "${REGRESSIONTEST_LOG}" + [[ ${ECFLOW} == true ]] && echo "* (-e) - USE ECFLOW" >> "${REGRESSIONTEST_LOG}" + [[ ${RTVERBOSE} == true ]] && echo "* (-v) - VERBOSE OUTPUT" >> "${REGRESSIONTEST_LOG}" + + + [[ -f "${TEST_CHANGES_LOG}" ]] && rm "${TEST_CHANGES_LOG}" + touch "${TEST_CHANGES_LOG}" + while read -r line; do line="${line#"${line%%[![:space:]]*}"}" - [[ -n "$line" ]] || continue + [[ -n "${line}" ]] || continue [[ ${#line} == 0 ]] && continue - [[ $line == \#* ]] && continue + [[ ${line} == \#* ]] && continue local valid_compile=false local valid_test=false - if [[ $line == COMPILE* ]] ; then + if [[ ${line} == COMPILE* ]] ; then - CMACHINES=$(echo "$line" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') - COMPILER=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') - COMPILE_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') + CMACHINES=$(cut -d'|' -f5 <<< "${line}") + CMACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${CMACHINES}") + + COMPILER=$(cut -d'|' -f3 <<< "${line}") + COMPILER=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILER}") + + COMPILE_NAME=$(cut -d'|' -f2 <<< "${line}") + COMPILE_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILE_NAME}") + COMPILE_ID=${COMPILE_NAME}_${COMPILER} if [[ ${CMACHINES} == '' ]]; then @@ -228,7 +246,7 @@ EOF [[ ${CMACHINES} =~ ${MACHINE_ID} ]] && valid_compile=true fi - if [[ $valid_compile == true ]]; then + if [[ ${valid_compile} == true ]]; then COMPILE_COUNTER=$((COMPILE_COUNTER+1)) FAIL_LOG="" COMPILE_RESULT="" @@ -236,52 +254,55 @@ EOF COMPILE_TIME="" RT_COMPILE_TIME="" if [[ ! -f "${LOG_DIR}/compile_${COMPILE_ID}.log" ]]; then - COMPILE_RESULT="MISSING" + COMPILE_RESULT="FAILED: UNABLE TO START COMPILE" FAIL_LOG="N/A" elif [[ -f fail_compile_${COMPILE_ID} ]]; then - COMPILE_RESULT="FAIL TO RUN" + COMPILE_RESULT="FAILED: UNABLE TO COMPILE" FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" - else if grep -q "quota" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then - COMPILE_RESULT="FAIL FROM DISK QUOTA" + COMPILE_RESULT="FAILED: DISK QUOTA ISSUE" FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" elif grep -q "timeout" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then - COMPILE_RESULT="FAIL FROM TIMEOUT" + COMPILE_RESULT="FAILED: TEST TIMED OUT" FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" - else - COMPILE_RESULT="PASS" - TIME_FILE="${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt" - if [[ -f "${TIME_FILE}" ]]; then - while read -r times || [ "$times" ]; do - times="${times#"${times%%[![:space:]]*}"}" + fi + else + COMPILE_RESULT="PASS" + TIME_FILE="${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt" + if [[ -f "${TIME_FILE}" ]]; then + while read -r times || [[ -n "${times}" ]]; do + times="${times#"${times%%[![:space:]]*}"}" - DATE1=$(echo "$times" | cut -d ',' -f2 ) - DATE2=$(echo "$times" | cut -d ',' -f3 ) - DATE3=$(echo "$times" | cut -d ',' -f4 ) - DATE4=$(echo "$times" | cut -d ',' -f5 ) + DATE1=$(cut -d ',' -f2 <<< "${times}") + DATE2=$(cut -d ',' -f3 <<< "${times}") + DATE3=$(cut -d ',' -f4 <<< "${times}") + DATE4=$(cut -d ',' -f5 <<< "${times}") - COMPILE_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S') - RT_COMPILE_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S') + COMPILE_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S') + RT_COMPILE_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S') - done < "$TIME_FILE" - fi + done < "${TIME_FILE}" + fi fi echo >> "${REGRESSIONTEST_LOG}" echo "${COMPILE_RESULT} -- COMPILE '${COMPILE_ID}' [${RT_COMPILE_TIME}, ${COMPILE_TIME}]" >> "${REGRESSIONTEST_LOG}" - [[ -n $FAIL_LOG ]] && FAILED_COMPILES+=("COMPILE ${COMPILE_ID}: ${COMPILE_RESULT}") - [[ -n $FAIL_LOG ]] && FAILED_COMPILE_LOGS+=("${FAIL_LOG}") + [[ -n ${FAIL_LOG} ]] && FAILED_COMPILES+=("COMPILE ${COMPILE_ID}: ${COMPILE_RESULT}") + [[ -n ${FAIL_LOG} ]] && FAILED_COMPILE_LOGS+=("${FAIL_LOG}") fi - elif [[ $line =~ RUN ]]; then + elif [[ ${line} =~ RUN ]]; then - if [[ $COMPILE_ONLY == true ]]; then + if [[ ${COMPILE_ONLY} == true ]]; then continue fi - RMACHINES=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') - TEST_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - GEN_BASELINE=$(echo "$line" | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//') + RMACHINES=$(cut -d '|' -f3 <<< "${line}") + RMACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RMACHINES}") + TEST_NAME=$(cut -d '|' -f2 <<< "${line}") + TEST_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${TEST_NAME}") + GEN_BASELINE=$(cut -d '|' -f4 <<< "${line}") + GEN_BASELINE=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${GEN_BASELINE}") if [[ ${RMACHINES} == '' ]]; then valid_test=true @@ -291,7 +312,7 @@ EOF [[ ${RMACHINES} =~ ${MACHINE_ID} ]] && valid_test=true fi - if [[ $valid_test == true ]]; then + if [[ ${valid_test} == true ]]; then TEST_COUNTER=$((TEST_COUNTER+1)) GETMEMFROMLOG="" FAIL_LOG="" @@ -300,57 +321,66 @@ EOF TEST_TIME="" RT_TEST_TIME="" RT_TEST_MEM="" - if [[ $CREATE_BASELINE == true && $GEN_BASELINE != "baseline" ]]; then + if [[ ${CREATE_BASELINE} == true && ${GEN_BASELINE} != "baseline" ]]; then TEST_RESULT="SKIPPED (TEST DOES NOT GENERATE BASELINE)" elif [[ ! -f "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" ]]; then - TEST_RESULT="MISSING" + TEST_RESULT="FAILED: UNABLE TO START RUN" FAIL_LOG="N/A" elif [[ -f fail_test_${TEST_NAME}_${COMPILER} ]]; then if [[ -f "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" ]]; then - TEST_RESULT="FAIL TO COMPARE" - FAIL_LOG="${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" + if grep -q "FAIL" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"; then + TEST_RESULT="FAILED: UNABLE TO RUN COMPARISON" + FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" + # We need to catch a "PASS" in rt_*.log even if a fail_test_* files exists + # I'm not sure why this can happen. + elif grep -q "PASS" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"; then + TEST_RESULT="PASS" + else + TEST_RESULT="FAILED: BASELINE COMPARISON" + FAIL_LOG="${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" + fi else - TEST_RESULT="FAIL TO RUN" + TEST_RESULT="FAILED: RUN DID NOT COMPLETE" FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" fi - else if grep -q "quota" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then - TEST_RESULT="FAIL FROM DISK QUOTA" + TEST_RESULT="FAILED: DISK QUOTA ISSUE" FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" elif grep -q "timeout" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then - TEST_RESULT="FAIL FROM TIMEOUT" + TEST_RESULT="FAILED: TEST TIMED OUT" FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" - else - - TEST_RESULT="PASS" - TIME_FILE="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}_timestamp.txt" - GETMEMFROMLOG=$(grep "The maximum resident set size" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log") - RT_TEST_MEM=$(echo "${GETMEMFROMLOG:9:${#GETMEMFROMLOG}-1}" | tr -dc '0-9') - RT_TEST_MEM=$((RT_TEST_MEM/1000)) - if [[ -f "${TIME_FILE}" ]]; then - while read -r times || [ "$times" ]; do - times="${times#"${times%%[![:space:]]*}"}" - - DATE1=$(echo "$times" | cut -d ',' -f2 ) - DATE2=$(echo "$times" | cut -d ',' -f3 ) - DATE3=$(echo "$times" | cut -d ',' -f4 ) - DATE4=$(echo "$times" | cut -d ',' -f5 ) - - TEST_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S') - RT_TEST_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S') - - done < "$TIME_FILE" - fi + fi + else + TEST_RESULT="PASS" + fi + if [[ ${TEST_RESULT} == "PASS" ]]; then + TIME_FILE="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}_timestamp.txt" + GETMEMFROMLOG=$(grep "The maximum resident set size" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log") + RT_TEST_MEM=$(echo "${GETMEMFROMLOG:9:${#GETMEMFROMLOG}-1}" | tr -dc '0-9') + RT_TEST_MEM=$((RT_TEST_MEM/1000)) + if [[ -f "${TIME_FILE}" ]]; then + while read -r times || [[ -n "${times}" ]]; do + times="${times#"${times%%[![:space:]]*}"}" + + DATE1=$(cut -d ',' -f2 <<< "${times}") + DATE2=$(cut -d ',' -f3 <<< "${times}") + DATE3=$(cut -d ',' -f4 <<< "${times}") + DATE4=$(cut -d ',' -f5 <<< "${times}") + + TEST_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S') + RT_TEST_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S') + + done < "${TIME_FILE}" fi fi echo "${TEST_RESULT} -- TEST '${TEST_NAME}_${COMPILER}' [${RT_TEST_TIME}, ${TEST_TIME}](${RT_TEST_MEM} MB)" >> "${REGRESSIONTEST_LOG}" - [[ -n $FAIL_LOG ]] && FAILED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}") - [[ -n $FAIL_LOG ]] && FAILED_TEST_LOGS+=("${FAIL_LOG}") - [[ -n $FAIL_LOG ]] && FAILED_TEST_ID+=("${TEST_NAME} ${COMPILER}") + [[ -n ${FAIL_LOG} ]] && FAILED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}") + [[ -n ${FAIL_LOG} ]] && FAILED_TEST_LOGS+=("${FAIL_LOG}") + [[ -n ${FAIL_LOG} ]] && FAILED_TEST_ID+=("${TEST_NAME} ${COMPILER}") fi fi - done < "$TESTS_FILE" + done < "${TESTS_FILE}" elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) ) @@ -367,18 +397,18 @@ EOF if [[ "${#FAILED_COMPILES[@]}" -ne "0" ]]; then echo "Failed Compiles:" >> "${REGRESSIONTEST_LOG}" for i in "${!FAILED_COMPILES[@]}"; do - echo "* ${FAILED_COMPILES[$i]}" >> "${REGRESSIONTEST_LOG}" - echo "-- LOG: ${FAILED_COMPILE_LOGS[$i]}" >> "${REGRESSIONTEST_LOG}" + echo "* ${FAILED_COMPILES[${i}]}" >> "${REGRESSIONTEST_LOG}" + echo "-- LOG: ${FAILED_COMPILE_LOGS[${i}]}" >> "${REGRESSIONTEST_LOG}" done fi # PRINT FAILED TESTS if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then - echo "Failed Tests:" >> ${REGRESSIONTEST_LOG} + echo "Failed Tests:" >> "${REGRESSIONTEST_LOG}" for j in "${!FAILED_TESTS[@]}"; do - echo "* ${FAILED_TESTS[$j]}" >> "${REGRESSIONTEST_LOG}" - echo "-- LOG: ${FAILED_TEST_LOGS[$j]}" >> "${REGRESSIONTEST_LOG}" + echo "* ${FAILED_TESTS[${j}]}" >> "${REGRESSIONTEST_LOG}" + echo "-- LOG: ${FAILED_TEST_LOGS[${j}]}" >> "${REGRESSIONTEST_LOG}" done fi @@ -386,7 +416,7 @@ EOF # WRITE FAILED_TEST_ID LIST TO TEST_CHANGES_LOG if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then for item in "${FAILED_TEST_ID[@]}"; do - echo "$item" >> "${TEST_CHANGES_LOG}" + echo "${item}" >> "${TEST_CHANGES_LOG}" done fi @@ -404,7 +434,7 @@ EOF echo "Performing Cleanup..." rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp [[ ${KEEP_RUNDIR} == false ]] && rm -rf "${RUNDIR_ROOT}" && rm "${PATHRT}/run_dir" - [[ ${ROCOTO} == true ]] && rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" *_lock.db + [[ ${ROCOTO} == true ]] && rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" ./*_lock.db [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* echo "REGRESSION TEST RESULT: SUCCESS" else @@ -425,9 +455,7 @@ EOF } create_or_run_compile_task() { - - cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env -export JOB_NR=${JOB_NR} + cat << EOF > "${RUNDIR_ROOT}/compile_${COMPILE_ID}.env" export COMPILE_ID=${COMPILE_ID} export MACHINE_ID=${MACHINE_ID} export RT_COMPILER=${RT_COMPILER} @@ -441,14 +469,17 @@ export ROCOTO=${ROCOTO} export ECFLOW=${ECFLOW} export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} export LOG_DIR=${LOG_DIR} +export RTVERBOSE=${RTVERBOSE} EOF - if [[ $ROCOTO == true ]]; then + if [[ ${ROCOTO} == true ]]; then rocoto_create_compile_task - elif [[ $ECFLOW == true ]]; then + elif [[ ${ECFLOW} == true ]]; then ecflow_create_compile_task else - ./run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" ${COMPILE_ID} > ${LOG_DIR}/compile_${COMPILE_ID}.log 2>&1 + echo "rt.sh: Running compile ${COMPILE_ID}" + ./run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log" 2>&1 + echo "rt.sh: Compile ${COMPILE_ID} completed." fi RT_SUFFIX="" @@ -456,57 +487,77 @@ EOF } rt_35d() { -if [[ $TEST_NAME =~ '35d' ]] ; then - local sy=$(echo ${DATE_35D} | cut -c 1-4) - local sm=$(echo ${DATE_35D} | cut -c 5-6) + echo "rt.sh: Running 35day Regression Test..." + local sy + local sm +if [[ ${TEST_NAME} =~ '35d' ]] ; then + sy=$(cut -c 1-4 <<< "${DATE_35D}") + sm=$(cut -c 5-6 <<< "${DATE_35D}") local new_test_name="tests/${TEST_NAME}_${DATE_35D}" - rm -f $new_test_name - cp tests/$TEST_NAME $new_test_name + rm -f "${new_test_name}" + cp tests/"${TEST_NAME}" "${new_test_name}" - sed -i -e "s/\(export SYEAR\)/\1=\"$sy\"/" $new_test_name - sed -i -e "s/\(export SMONTH\)/\1=\"$sm\"/" $new_test_name + sed -i -e "s/\(export SYEAR\)/\1=\"${sy}\"/" "${new_test_name}" + sed -i -e "s/\(export SMONTH\)/\1=\"${sm}\"/" "${new_test_name}" TEST_NAME=${new_test_name#tests/} fi } +handle_error() { + echo "rt.sh: Getting error information..." + local exit_code=$1 + local exit_line=$2 + echo "Exited at line ${exit_line} having code ${exit_code}" + rt_trap +} + rt_trap() { + echo "rt.sh: Exited abnormally, killing workflow and cleaning up" [[ ${ROCOTO:-false} == true ]] && rocoto_kill [[ ${ECFLOW:-false} == true ]] && ecflow_kill cleanup } cleanup() { - [[ $(awk '{print $2}' < "${LOCKDIR}/PID") == $$ ]] && rm -rf ${LOCKDIR} + echo "rt.sh: Cleaning up..." + awk_info=$(awk '{print $2}' < "${LOCKDIR}/PID") + [[ ${awk_info} == "$$" ]] && rm -rf "${LOCKDIR}" [[ ${ECFLOW:-false} == true ]] && ecflow_stop trap 0 + echo "rt.sh: Exiting." exit } trap '{ echo "rt.sh interrupted"; rt_trap ; }' INT trap '{ echo "rt.sh quit"; rt_trap ; }' QUIT trap '{ echo "rt.sh terminated"; rt_trap ; }' TERM -trap '{ echo "rt.sh error on line $LINENO"; cleanup ; }' ERR +trap '{ handle_error $? $LINENO ; }' ERR trap '{ echo "rt.sh finished"; cleanup ; }' EXIT + # PATHRT - Path to regression tests directory -readonly PATHRT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P )" -cd ${PATHRT} +PATHRT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P )" +readonly PATHRT +cd "${PATHRT}" # PATHTR - Path to nmmb trunk directory -readonly PATHTR=$( cd ${PATHRT}/.. && pwd ) +PATHTR=$( cd "${PATHRT}/.." && pwd ) +readonly PATHTR # make sure only one instance of rt.sh is running readonly LOCKDIR="${PATHRT}"/lock +HOSTNAME_IN=$(hostname) if mkdir "${LOCKDIR}" ; then - echo $(hostname) $$ > "${LOCKDIR}/PID" + echo "${HOSTNAME_IN}" $$ > "${LOCKDIR}/PID" else echo "Only one instance of rt.sh can be running at a time" exit 1 fi -source detect_machine.sh # Note: this does not set ACCNR. The "if" block below does. +source detect_machine.sh source rt_utils.sh +# shellcheck disable=SC1091 source module-setup.sh CREATE_BASELINE=false @@ -516,30 +567,33 @@ KEEP_RUNDIR=false TEST_35D=false export skip_check_results=false export delete_rundir=false -SKIP_ORDER=false + COMPILE_ONLY=false RTPWD_NEW_BASELINE=false TESTS_FILE='rt.conf' NEW_BASELINES_FILE='' DEFINE_CONF_FILE=false RUN_SINGLE_TEST=false +RTVERBOSE=false +export RTVERBOSE +export STOP_ECFLOW_AT_END=false ACCNR=${ACCNR:-""} -while getopts ":a:b:cl:mn:dwkreoh" opt; do - case $opt in +while getopts ":a:b:cl:mn:dwkreovh" opt; do + case ${opt} in a) - ACCNR=$OPTARG + ACCNR=${OPTARG} ;; b) - NEW_BASELINES_FILE=$OPTARG + NEW_BASELINES_FILE=${OPTARG} ;; c) CREATE_BASELINE=true ;; l) DEFINE_CONF_FILE=true - TESTS_FILE=$OPTARG - grep -q '[^[:space:]]' < "$TESTS_FILE" || die "${TESTS_FILE} empty, exiting..." + TESTS_FILE=${OPTARG} + grep -q '[^[:space:]]' < "${TESTS_FILE}" || die "${TESTS_FILE} empty, exiting..." ;; o) COMPILE_ONLY=true @@ -550,10 +604,10 @@ while getopts ":a:b:cl:mn:dwkreoh" opt; do ;; n) RUN_SINGLE_TEST=true - IFS=' ' read -r -a SINGLE_OPTS <<< $OPTARG + IFS=' ' read -r -a SINGLE_OPTS <<< "${OPTARG}" if [[ ${#SINGLE_OPTS[@]} != 2 ]]; then - die 'The -n option needs AND in quotes, i.e. -n "control_p8 intel"' + die 'The -n option needs [testname] AND [compiler] in quotes, i.e. -n "control_p8 intel"' fi SRT_NAME="${SINGLE_OPTS[0]}" @@ -565,7 +619,8 @@ while getopts ":a:b:cl:mn:dwkreoh" opt; do ;; d) export delete_rundir=true - awk -F "|" '{print $5}' rt.conf | grep "\S" > keep_tests.tmp + AWK_OUT=$(awk -F "|" '{print $5}' rt.conf) + grep "\S" <<< "${AWK_OUT}" > keep_tests.tmp ;; w) export skip_check_results=true @@ -581,456 +636,506 @@ while getopts ":a:b:cl:mn:dwkreoh" opt; do ECFLOW=true ROCOTO=false ;; + v) + RTVERBOSE=true + ;; h) usage + die "" ;; \?) usage - die "Invalid option: -$OPTARG" + die "Invalid option: -${OPTARG}" ;; :) usage - die "Option -$OPTARG requires an argument." + die "Option -${OPTARG} requires an argument." + ;; + *) + usage + die "Arguments are required." ;; esac done #Check to error out if incompatible options are chosen together -[[ $KEEP_RUNDIR == true && $delete_rundir == true ]] && die "-k and -d options cannot be used at the same time" -[[ $ECFLOW == true && $ROCOTO == true ]] && die "-r and -e options cannot be used at the same time" -[[ $CREATE_BASELINE == true && $RTPWD_NEW_BASELINE == true ]] && die "-c and -m options cannot be used at the same time" - -if [[ -z "$ACCNR" ]]; then - echo "Please use -a to set group account to use on HPC" - exit 1 -fi - -# Display the machine and account using the format detect_machine.sh used: -echo "Machine: " $MACHINE_ID " Account: " $ACCNR - -if [[ $MACHINE_ID = wcoss2 ]]; then - - if [[ "${ECFLOW:-false}" == true ]] ; then - module load ecflow/5.6.0.13 - fi - module load intel/19.1.3.304 python/3.8.6 - if [[ "${ECFLOW:-false}" == true ]] ; then - ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh - export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir - export ECF_COMDIR=${PATHRT}/ecf_comdir - rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR} - mkdir -p ${ECF_OUTPUTDIR} - mkdir -p ${ECF_COMDIR} - fi - export colonifnco=":output" # hack - - DISKNM=/lfs/h2/emc/nems/noscrub/emc.nems/RT - QUEUE=dev - COMPILE_QUEUE=dev - if [[ "${ROCOTO:-false}" == true ]] ; then - ROCOTO_SCHEDULER=pbs - fi - PARTITION= - STMP=/lfs/h2/emc/ptmp - PTMP=/lfs/h2/emc/ptmp - SCHEDULER=pbs - -elif [[ $MACHINE_ID = acorn ]]; then - - if [[ "${ECFLOW:-false}" == true ]] ; then - module load ecflow/5.6.0.13 - fi - module load intel/19.1.3.304 python/3.8.6 - if [[ "${ECFLOW:-false}" == true ]] ; then - ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh - export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir - export ECF_COMDIR=${PATHRT}/ecf_comdir - rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR} - mkdir -p ${ECF_OUTPUTDIR} - mkdir -p ${ECF_COMDIR} - fi - export colonifnco=":output" # hack - - DISKNM=/lfs/h1/emc/nems/noscrub/emc.nems/RT - QUEUE=dev - COMPILE_QUEUE=dev - if [[ "${ROCOTO:-false}" == true ]] ; then - ROCOTO_SCHEDULER=pbs - fi - PARTITION= - STMP=/lfs/h2/emc/ptmp - PTMP=/lfs/h2/emc/ptmp - SCHEDULER=pbs - -elif [[ $MACHINE_ID = gaea ]]; then - - if [[ "${ROCOTO:-false}" == true ]] ; then - module use /ncrc/proj/epic/rocoto/modulefiles - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - fi - - module load PrgEnv-intel/8.3.3 - module load intel-classic/2023.1.0 - module load cray-mpich/8.1.25 - module load python/3.9.12 - module use /ncrc/proj/epic/spack-stack/modulefiles - module load gcc/12.2.0 - if [[ "${ECFLOW:-false}" == true ]] ; then - module load ecflow/5.8.4 - ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - fi - - DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT - QUEUE=normal - COMPILE_QUEUE=normal - PARTITION=c5 - dprefix=${dprefix:-/gpfs/f5/$ACCNR/scratch/$USER} - STMP=${STMP:-$dprefix/RT_BASELINE} - PTMP=${PTMP:-$dprefix/RT_RUNDIRS} - - SCHEDULER=slurm - -elif [[ $MACHINE_ID = hera ]]; then - - if [[ "${ROCOTO:-false}" == true ]] ; then - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - fi - - if [[ "${ECFLOW:-false}" == true ]] ; then - module load ecflow/5.11.4 - ECFLOW_START=ecflow_start.sh - fi - - QUEUE=batch - COMPILE_QUEUE=batch - - PARTITION= - dprefix=/scratch1/NCEPDEV - DISKNM=/scratch2/NAGAPE/epic/UFS-WM_RT - STMP=$dprefix/stmp4 - PTMP=$dprefix/stmp2 - - SCHEDULER=slurm - -elif [[ $MACHINE_ID = orion ]]; then - - module load git/2.28.0 - module load gcc/10.2.0 - module load python/3.9.2 - - if [[ "${ROCOTO:-false}" == true ]] ; then - module load contrib rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - fi +[[ ${KEEP_RUNDIR} == true && ${delete_rundir} == true ]] && die "-k and -d options cannot be used at the same time" +[[ ${ECFLOW} == true && ${ROCOTO} == true ]] && die "-r and -e options cannot be used at the same time" +[[ ${CREATE_BASELINE} == true && ${RTPWD_NEW_BASELINE} == true ]] && die "-c and -m options cannot be used at the same time" - module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles - if [[ "${ECFLOW:-false}" == true ]] ; then - module load ecflow/5.8.4 - ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - fi - - QUEUE=batch - COMPILE_QUEUE=batch - PARTITION=orion - dprefix=/work/noaa/stmp/${USER} - DISKNM=/work/noaa/epic/UFS-WM_RT - STMP=$dprefix/stmp - PTMP=$dprefix/stmp - - SCHEDULER=slurm - -elif [[ $MACHINE_ID = hercules ]]; then - - if [[ "${ROCOTO:-false}" == true ]] ; then - module load contrib rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - fi - - module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles - if [[ "${ECFLOW:-false}" == true ]] ; then - module load ecflow/5.8.4 - ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - fi +[[ -o xtrace ]] && set_x='set -x' || set_x='set +x' - QUEUE=batch - COMPILE_QUEUE=batch - PARTITION=hercules - dprefix=/work2/noaa/stmp/${USER} - DISKNM=/work/noaa/epic/hercules/UFS-WM_RT - STMP=$dprefix/stmp - PTMP=$dprefix/stmp - - SCHEDULER=slurm - cp fv3_conf/fv3_slurm.IN_hercules fv3_conf/fv3_slurm.IN - cp fv3_conf/compile_slurm.IN_hercules fv3_conf/compile_slurm.IN +if [[ ${RTVERBOSE} == true ]]; then + set -x +fi -elif [[ $MACHINE_ID = jet ]]; then +[[ -o xtrace ]] && set_x='set -x' || set_x='set +x' - echo "=======Running on $(lsb_release -is)=======" - CurJetOS=$(lsb_release -is) - if [[ ${CurJetOS} == "CentOS" ]]; then - echo "=======Please, move to Rocky8 node fe[5-8]=======" +if [[ -z "${ACCNR}" ]]; then + echo "Please use -a to set group account to use on HPC" exit 1 - fi - - if [[ "${ROCOTO:-false}" == true ]] ; then - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - fi - - if [[ "${ECFLOW:-false}" == true ]] ; then - module load ecflow/5.11.4 - ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh - fi - - module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core - module load stack-intel/2021.5.0 - module load stack-python/3.10.8 - - QUEUE=batch - COMPILE_QUEUE=batch - PARTITION=xjet - DISKNM=/mnt/lfs4/HFIP/hfv3gfs/role.epic/RT - dprefix=${dprefix:-/lfs4/HFIP/$ACCNR/$USER} - STMP=${STMP:-$dprefix/RT_BASELINE} - PTMP=${PTMP:-$dprefix/RT_RUNDIRS} - - SCHEDULER=slurm +fi -elif [[ $MACHINE_ID = s4 ]]; then +# Display the machine and account using the format detect_machine.sh used: +echo "Machine: ${MACHINE_ID}" +echo "Account: ${ACCNR}" + +case ${MACHINE_ID} in + wcoss2|acorn) + echo "rt.sh: Setting up WCOSS2/Acorn" + set -x + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.6.0.13 + fi + module load intel/19.1.3.304 python/3.8.6 + if [[ "${ECFLOW:-false}" == true ]] ; then + # ECF_ROOT=${ECF_ROOT:-} + # ECFLOW_START="${ECF_ROOT}/scripts/server_check.sh" + # ECFLOW_STOP="${ECF_ROOT}/bin/ecflow_stop.sh" + export ECF_OUTPUTDIR="${PATHRT}/ecf_outputdir" + export ECF_COMDIR="${PATHRT}/ecf_comdir" + rm -rf "${ECF_OUTPUTDIR}" "${ECF_COMDIR}" + mkdir -p "${ECF_OUTPUTDIR}" + mkdir -p "${ECF_COMDIR}" + # export ECFLOW_START ECFLOW_STOP + fi + export colonifnco=":output" # hack - if [[ "${ROCOTO:-false}" == true ]] ; then - module load rocoto/1.3.2 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - fi - if [[ "${ECFLOW:-false}" == true ]] ; then - module load ecflow/5.6.0 - fi - module load miniconda/3.8-s4 + DISKNM="/lfs/h2/emc/nems/noscrub/emc.nems/RT" + QUEUE="dev" + COMPILE_QUEUE="dev" + if [[ "${ROCOTO:-false}" == true ]] ; then + ROCOTO_SCHEDULER="pbs" + fi + PARTITION= + STMP="/lfs/h2/emc/ptmp" + PTMP="/lfs/h2/emc/ptmp" + SCHEDULER="pbs" + ;; + gaea) + echo "rt.sh: Setting up gaea..." + set -x + if [[ "${ROCOTO:-false}" == true ]] ; then + module use /ncrc/proj/epic/rocoto/modulefiles + module load rocoto + # ROCOTORUN=$(command -v rocotorun) + # ROCOTOSTAT=$(command -v rocotostat) + # ROCOTOCOMPLETE=$(command -v rocotocomplete) + ROCOTO_SCHEDULER="slurm" + fi + + module load PrgEnv-intel/8.3.3 + module load intel-classic/2023.1.0 + module load cray-mpich/8.1.25 + module load python/3.9.12 + module use /ncrc/proj/epic/spack-stack/modulefiles + module load gcc/12.2.0 + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + # ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh + # ECFLOW_STOP=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_stop.sh + ECF_HOST=$(hostname) + ECF_PORT=$(( $(id -u) + 1500 )) + export ECF_PORT ECF_HOST + fi - module use /data/prod/jedi/spack-stack/modulefiles - if [[ "${ECFLOW:-false}" == true ]] ; then - module load ecflow/5.8.4 - ECFLOW_START=/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - fi + DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT + QUEUE=normal + COMPILE_QUEUE=normal + PARTITION=c5 + dprefix=${dprefix:-/gpfs/f5/${ACCNR}/scratch/${USER}} + STMP=${STMP:-${dprefix}/RT_BASELINE} + PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} + + SCHEDULER="slurm" + ;; + hera) + echo "rt.sh: Setting up hera..." + set -x + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto + # ROCOTORUN=$(command -v rocotorun) + # ROCOTOSTAT=$(command -v rocotostat) + # ROCOTOCOMPLETE=$(command -v rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi - QUEUE=s4 - COMPILE_QUEUE=s4 + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.11.4 + # ECFLOW_START="$(command -v ecflow_start.sh)" + # ECFLOW_STOP="$(command -v ecflow_stop.sh)" + # export ECFLOW_START ECFLOW_STOP + fi - PARTITION=s4 - dprefix=/data/prod - DISKNM=$dprefix/emc.nemspara/RT - STMP=/scratch/short/users - PTMP=/scratch/users + QUEUE="batch" + COMPILE_QUEUE="batch" + + PARTITION= + dprefix="/scratch1/NCEPDEV" + DISKNM="/scratch2/NAGAPE/epic/UFS-WM_RT" + STMP="${dprefix}/stmp4" + PTMP="${dprefix}/stmp2" + + SCHEDULER=slurm + ;; + orion) + echo "rt.sh: Setting up orion..." + set -x + module load git/2.28.0 + module load gcc/10.2.0 + module load python/3.9.2 + + if [[ "${ROCOTO:-false}" == true ]] ; then + module load contrib rocoto + # ROCOTORUN=$(command -v rocotorun) + # ROCOTOSTAT=$(command -v rocotostat) + # ROCOTOCOMPLETE=$(command -v rocotocomplete) + ROCOTO_SCHEDULER="slurm" + fi - SCHEDULER=slurm + module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + # ECFLOW_START="/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_start.sh" + # ECFLOW_STOP="/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_stop.sh" + ECF_HOST=$(hostname) + ECF_PORT="$(( $(id -u) + 1500 ))" + export ECF_PORT ECF_HOST + fi -elif [[ $MACHINE_ID = derecho ]]; then + QUEUE="batch" + COMPILE_QUEUE="batch" + PARTITION="orion" + dprefix="/work/noaa/stmp/${USER}" + DISKNM=/"work/noaa/epic/UFS-WM_RT" + STMP="${dprefix}/stmp" + PTMP="${dprefix}/stmp" + + SCHEDULER="slurm" + ;; + hercules) + echo "rt.sh: Setting up hercules..." + set -x + if [[ "${ROCOTO:-false}" == true ]] ; then + module load contrib rocoto + # ROCOTORUN=$(command -v rocotorun) + # ROCOTOSTAT=$(command -v rocotostat) + # ROCOTOCOMPLETE=$(command -v rocotocomplete) + ROCOTO_SCHEDULER="slurm" + fi - if [[ "${ROCOTO:-false}" == true ]] ; then - module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles - module load rocoto - fi - module use /glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles - if [[ "${ECFLOW:-false}" == true ]] ; then - module load ecflow/5.8.4 - fi - module unload ncarcompilers - module use /glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core - module load stack-intel/2021.10.0 - module load stack-python/3.10.8 -# export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages - if [[ "${ECFLOW:-false}" == true ]] ; then - ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - fi + module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + # ECFLOW_START="/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh" + # ECFLOW_STOP="/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_stop.sh" + ECF_HOST=$(hostname) + ECF_PORT="$(( $(id -u) + 1500 ))" + export ECF_PORT ECF_HOST + fi - QUEUE=main - COMPILE_QUEUE=main - PARTITION= - dprefix=/glade/derecho/scratch - DISKNM=/glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/ - STMP=$dprefix - PTMP=$dprefix - SCHEDULER=pbs - cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN - cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN - - if [[ "${ROCOTO:-false}" == true ]] ; then - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=pbspro - fi + QUEUE="batch" + COMPILE_QUEUE="batch" + PARTITION="hercules" + dprefix="/work2/noaa/stmp/${USER}" + DISKNM="/work/noaa/epic/hercules/UFS-WM_RT" + STMP="${dprefix}/stmp" + PTMP="${dprefix}/stmp" + + SCHEDULER="slurm" + cp fv3_conf/fv3_slurm.IN_hercules fv3_conf/fv3_slurm.IN + cp fv3_conf/compile_slurm.IN_hercules fv3_conf/compile_slurm.IN + ;; + jet) + echo "rt.sh: Setting up jet..." + set -x + CurJetOS=$(lsb_release -is) + echo "=======Running on ${CurJetOS}=======" + if [[ ${CurJetOS} == "CentOS" ]]; then + echo "=======Please, move to Rocky8 node fe[5-8]=======" + exit 1 + fi + + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto + # ROCOTORUN=$(command -v rocotorun) + # ROCOTOSTAT=$(command -v rocotostat) + # ROCOTOCOMPLETE=$(command -v rocotocomplete) + ROCOTO_SCHEDULER="slurm" + fi -elif [[ $MACHINE_ID = stampede ]]; then + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.11.4 + # ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh + # ECFLOW_STOP=/apps/ecflow/5.11.4/bin/ecflow_stop.sh + # export ECFLOW_START ECFLOW_STOP + fi - export PYTHONPATH= - if [[ "${ECFLOW:-false}" == true ]] ; then - ECFLOW_START= - fi - QUEUE=skx-normal - COMPILE_QUEUE=skx-dev - PARTITION= - dprefix=$SCRATCH/ufs-weather-model/run - DISKNM=/work2/07736/minsukji/stampede2/ufs-weather-model/RT - STMP=$dprefix - PTMP=$dprefix - SCHEDULER=slurm - MPIEXEC=ibrun - MPIEXECOPTS= - -elif [[ $MACHINE_ID = expanse ]]; then - - export PYTHONPATH= - if [[ "${ECFLOW:-false}" == true ]] ; then - ECFLOW_START= - fi - QUEUE=compute - COMPILE_QUEUE=shared - PARTITION= - dprefix=/expanse/lustre/scratch/$USER/temp_project/run - DISKNM=/expanse/lustre/scratch/domh/temp_project/RT - STMP=$dprefix - PTMP=$dprefix - SCHEDULER=slurm - - elif [[ $MACHINE_ID = noaacloud ]]; then - - export PATH=/contrib/EPIC/bin:$PATH - module use /apps/modules/modulefiles - if [[ "${ROCOTO:-false}" == true ]] ; then - module load rocoto/1.3.3 - - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - fi + module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core + module load stack-intel/2021.5.0 + module load stack-python/3.10.8 + + QUEUE="batch" + COMPILE_QUEUE="batch" + PARTITION="xjet" + DISKNM="/mnt/lfs4/HFIP/hfv3gfs/role.epic/RT" + dprefix="${dprefix:-/lfs4/HFIP/${ACCNR}/${USER}}" + STMP="${STMP:-${dprefix}/RT_BASELINE}" + PTMP="${PTMP:-${dprefix}/RT_RUNDIRS}" + + SCHEDULER="slurm" + ;; + s4) + echo "rt.sh: Setting up s4..." + set -x + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto/1.3.2 + # ROCOTORUN=$(command -v rocotorun) + # ROCOTOSTAT=$(command -v rocotostat) + # ROCOTOCOMPLETE=$(command -v rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.6.0 + fi + module load miniconda/3.8-s4 + + module use /data/prod/jedi/spack-stack/modulefiles + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + # ECFLOW_START="/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh" + # ECFLOW_STOP="/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_stop.sh" + ECF_HOST=$(hostname) + ECF_PORT="$(( $(id -u) + 1500 ))" + export ECF_PORT ECF_HOST + fi - QUEUE=batch - COMPILE_QUEUE=batch - PARTITION= - dprefix=/lustre/ - DISKNM=/contrib/ufs-weather-model/RT - STMP=$dprefix/stmp4 - PTMP=$dprefix/stmp2 - SCHEDULER=slurm + QUEUE="s4" + COMPILE_QUEUE="s4" + + PARTITION="s4" + dprefix="/data/prod" + DISKNM="${dprefix}/emc.nemspara/RT" + STMP="/scratch/short/users" + PTMP="/scratch/users" + + SCHEDULER="slurm" + ;; + derecho) + echo "rt.sh: Setting up derecho..." + set -x + if [[ "${ROCOTO:-false}" == true ]] ; then + module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles + module load rocoto + fi + module use /glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + fi + module unload ncarcompilers + module use /glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core + module load stack-intel/2021.10.0 + module load stack-python/3.10.8 + # export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages + if [[ "${ECFLOW:-false}" == true ]] ; then + # ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh + # ECFLOW_STOP=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_stop.sh + ECF_HOST=$(hostname) + ECF_PORT=$(( $(id -u) + 1500 )) + export ECF_PORT ECF_HOST + fi + QUEUE="main" + COMPILE_QUEUE="main" + PARTITION= + dprefix="/glade/derecho/scratch" + DISKNM="/glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/" + STMP="${dprefix}" + PTMP="${dprefix}" + SCHEDULER="pbs" + cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN + cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN -else - die "Unknown machine ID, please edit detect_machine.sh file" -fi + + if [[ "${ROCOTO:-false}" == true ]] ; then + # ROCOTORUN=$(command -v rocotorun) + # ROCOTOSTAT=$(command -v rocotostat) + # ROCOTOCOMPLETE=$(command -v rocotocomplete) + ROCOTO_SCHEDULER="pbspro" + fi + ;; + stampede) + echo "rt.sh: Setting up stampede..." + set -x + export PYTHONPATH= + if [[ "${ECFLOW:-false}" == true ]] ; then + ECFLOW_START= + fi + QUEUE=skx-normal + COMPILE_QUEUE=skx-dev + PARTITION= + dprefix="${SCRATCH}/ufs-weather-model/run" + DISKNM="/work2/07736/minsukji/stampede2/ufs-weather-model/RT" + STMP="${dprefix}" + PTMP="${dprefix}" + SCHEDULER="slurm" + export MPIEXEC="ibrun" + export MPIEXECOPTS= + ;; + expanse) + echo "rt.sh: Setting up expanse..." + set -x + export PYTHONPATH= + + if [[ "${ECFLOW:-false}" == true ]] ; then + export ECFLOW_START= + fi + QUEUE="compute" + COMPILE_QUEUE="shared" + PARTITION= + dprefix="/expanse/lustre/scratch/${USER}/temp_project/run" + DISKNM="/expanse/lustre/scratch/domh/temp_project/RT" + STMP="${dprefix}" + PTMP="${dprefix}" + SCHEDULER="slurm" + ;; + noaacloud) + echo "rt.sh: Setting up noaacloud..." + set -x + export PATH="/contrib/EPIC/bin:${PATH}" + module use /apps/modules/modulefiles + + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto/1.3.3 + # ROCOTORUN=$(command -v rocotorun) + # ROCOTOSTAT=$(command -v rocotostat) + # ROCOTOCOMPLETE=$(command -v rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi -mkdir -p ${STMP}/${USER} + QUEUE="batch" + COMPILE_QUEUE="batch" + PARTITION= + dprefix="/lustre/" + DISKNM="/contrib/ufs-weather-model/RT" + STMP="${dprefix}/stmp4" + PTMP="${dprefix}/stmp2" + SCHEDULER="slurm" + ;; + *) + die "Unknown machine ID, please edit detect_machine.sh file" + ;; +esac +eval "${set_x}" + +# BEFORE MOVING ANY FURTHER LETS CHECK THAT DISKNM/STMP/PTMP ALL EXIST +[[ -d ${DISKNM} ]] || die "ERROR: DISKNM: ${DISKNM} -- DOES NOT EXIST" +[[ -d ${STMP} ]] || die "ERROR: STMP: ${STMP} -- DOES NOT EXIST" +[[ -d ${PTMP} ]] || die "ERROR: PTMP: ${PTMP} -- DOES NOT EXIST" + +mkdir -p "${STMP}/${USER}" NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST # Overwrite default RUNDIR_ROOT if environment variable RUNDIR_ROOT is set RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}/FV3_RT}/rt_$$ -mkdir -p ${RUNDIR_ROOT} -if [[ -e ${PATHRT}/run_dir ]]; then - rm ${PATHRT}/run_dir +mkdir -p "${RUNDIR_ROOT}" +if [[ -L "${PATHRT}/run_dir" && -d "${PATHRT}/run_dir" ]]; then + rm "${PATHRT}/run_dir" fi echo "Linking ${RUNDIR_ROOT} to ${PATHRT}/run_dir" -ln -s ${RUNDIR_ROOT} ${PATHRT}/run_dir +ln -s "${RUNDIR_ROOT}" "${PATHRT}/run_dir" echo "Run regression test in: ${RUNDIR_ROOT}" update_rtconf -if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then +if [[ ${TESTS_FILE} =~ '35d' ]] || [[ ${TESTS_FILE} =~ 'weekly' ]]; then TEST_35D=true fi source bl_date.conf -if [[ "$RTPWD_NEW_BASELINE" == true ]] ; then +if [[ "${RTPWD_NEW_BASELINE}" == true ]] ; then RTPWD=${NEW_BASELINE} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}} + RTPWD=${RTPWD:-${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}} fi -if [[ "$CREATE_BASELINE" == false ]] ; then - if [[ ! -d "$RTPWD" ]] ; then +if [[ "${CREATE_BASELINE}" == false ]] ; then + EMPTY_CHECK=$(find "${RTPWD}/" -type d -prune -empty) + if [[ ! -d "${RTPWD}" ]] ; then echo "Baseline directory does not exist:" - echo " $RTPWD" + echo " ${RTPWD}" exit 1 - elif [[ $( ls -1 "$RTPWD/" | wc -l ) -lt 1 ]] ; then + elif [[ -n ${EMPTY_CHECK} ]] ; then echo "Baseline directory is empty:" - echo " $RTPWD" + echo " ${RTPWD}" exit 1 fi fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-${DISKNM}/NEMSfv3gfs/input-data-20221101} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214 -INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} +INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-${DISKNM}/NEMSfv3gfs/BM_IC-20220207} shift $((OPTIND-1)) -[[ $# -gt 1 ]] && usage +if [[ $# -gt 1 ]]; then + usage + die "" +fi -if [[ $CREATE_BASELINE == true ]]; then +if [[ ${CREATE_BASELINE} == true ]]; then # PREPARE NEW REGRESSION TEST DIRECTORY + echo "rt.sh: Preparing RT Directory..." rm -rf "${NEW_BASELINE}" mkdir -p "${NEW_BASELINE}" fi -if [[ $skip_check_results == true ]]; then - REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_weekly_$MACHINE_ID.log +if [[ ${skip_check_results} == true ]]; then + REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_weekly_${MACHINE_ID}.log else - REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_$MACHINE_ID.log + REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_${MACHINE_ID}.log fi -export TEST_START_TIME="$(date '+%Y%m%d %T')" +TEST_START_TIME="$(date '+%Y%m%d %T')" +export TEST_START_TIME source default_vars.sh -JOB_NR=0 COMPILE_COUNTER=0 rm -f fail_test* fail_compile* -export LOG_DIR=${PATHRT}/logs/log_$MACHINE_ID -rm -rf ${LOG_DIR} -mkdir -p ${LOG_DIR} +LOG_DIR=${PATHRT}/logs/log_${MACHINE_ID} +export LOG_DIR -if [[ $ROCOTO == true ]]; then +rm -rf "${LOG_DIR}" +mkdir -p "${LOG_DIR}" + +if [[ ${ROCOTO} == true ]]; then + + echo "rt.sh: Verifying ROCOTO support..." + + case ${MACHINE_ID} in + wcoss2|acorn|expanse|stampede) + die "Rocoto not supported on this machine, please do not use '-r'." + ;; + *) + ;; + esac + ROCOTORUN="$(command -v rocotorun)" + ROCOTOSTAT="$(command -v rocotostat)" + ROCOTOCOMPLETE="$(command -v rocotocomplete)" + export ROCOTOCOMPLETE ROCOTOSTAT ROCOTORUN + ROCOTO_XML=${PATHRT}/rocoto_workflow.xml ROCOTO_STATE=${PATHRT}/rocoto_workflow.state ROCOTO_DB=${PATHRT}/rocoto_workflow.db - rm -f $ROCOTO_XML $ROCOTO_DB $ROCOTO_STATE *_lock.db + rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" ./*_lock.db - if [[ $MACHINE_ID = stampede || $MACHINE_ID = expanse ]]; then - die "Rocoto is not supported on this machine: $MACHINE_ID" - fi - - cat << EOF > $ROCOTO_XML + cat << EOF > "${ROCOTO_XML}" ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + rm -rf "${ECFLOW_RUN}" + mkdir -p "${ECFLOW_RUN}/${ECFLOW_SUITE}" + cp head.h tail.h "${ECFLOW_RUN}" + cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" suite ${ECFLOW_SUITE} edit ECF_HOME '${ECFLOW_RUN}' edit ECF_INCLUDE '${ECFLOW_RUN}' @@ -1084,10 +1207,6 @@ suite ${ECFLOW_SUITE} limit max_jobs ${MAX_JOBS} EOF - if [[ $MACHINE_ID = stampede || $MACHINE_ID = expanse ]]; then - die "ecFlow is not supported on this machine: $MACHINE_ID" - fi - fi ## @@ -1098,41 +1217,42 @@ fi new_compile=false in_metatask=false -[[ -f $TESTS_FILE ]] || die "$TESTS_FILE does not exist" - -LAST_COMPILER_NR=-9999 -COMPILE_PREV='' +[[ -f ${TESTS_FILE} ]] || die "${TESTS_FILE} does not exist" declare -A compiles -while read -r line || [ "$line" ]; do +while read -r line || [[ -n "${line}" ]]; do line="${line#"${line%%[![:space:]]*}"}" [[ ${#line} == 0 ]] && continue - [[ $line == \#* ]] && continue + [[ ${line} == \#* ]] && continue - JOB_NR=$( printf '%03d' $(( 10#$JOB_NR + 1 )) ) + if [[ ${line} == COMPILE* ]]; then - if [[ $line == COMPILE* ]]; then + COMPILE_NAME=$(cut -d '|' -f2 <<< "${line}") + COMPILE_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILE_NAME}") - COMPILE_NAME=$( echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - RT_COMPILER=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') - MAKE_OPT=$( echo $line | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//') - MACHINES=$( echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') - CB=$( echo $line | cut -d'|' -f6) + RT_COMPILER=$(cut -d '|' -f3 <<< "${line}") + RT_COMPILER=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RT_COMPILER}") + + MAKE_OPT=$(cut -d '|' -f4 <<< "${line}") + MAKE_OPT=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MAKE_OPT}") + + MACHINES=$(cut -d '|' -f5 <<< "${line}") + MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}") + + CB=$(cut -d '|' -f6 <<< "${line}") COMPILE_ID=${COMPILE_NAME}_${RT_COMPILER} - COMPILE_PREV=${COMPILE_ID} set +u - if [[ ! -z ${compiles[$COMPILE_ID]} ]] ; then - echo "Error! Duplicated compilation $COMPILE_NAME for compiler $RT_COMPILER!" + if [[ -n ${compiles[${COMPILE_ID}]} ]] ; then + echo "Error! Duplicated compilation ${COMPILE_NAME} for compiler ${RT_COMPILER}!" exit 1 fi set -u - compiles[$COMPILE_ID]=$COMPILE_ID - echo "COMPILING ${compiles[${COMPILE_ID}]}" + compiles[${COMPILE_ID}]=${COMPILE_ID} - [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue + [[ ${CREATE_BASELINE} == true && ${CB} != *fv3* ]] && continue if [[ ${MACHINES} != '' ]]; then if [[ ${MACHINES} == -* ]]; then @@ -1146,29 +1266,34 @@ while read -r line || [ "$line" ]; do fi create_or_run_compile_task - continue - elif [[ $line == RUN* ]] ; then + elif [[ ${line} == RUN* ]]; then - if [[ $COMPILE_ONLY == true ]]; then - continue - fi + [[ ${COMPILE_ONLY} == true ]] && continue - TEST_NAME=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - MACHINES=$( echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') - CB=$( echo $line | cut -d'|' -f4) - DEP_RUN=$( echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') - DATE_35D=$( echo $line | cut -d'|' -f6 | sed -e 's/^ *//' -e 's/ *$//') + TEST_NAME=$(cut -d'|' -f2 <<< "${line}") + TEST_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${TEST_NAME}") - if [[ $DEP_RUN != '' ]]; then + MACHINES=$(cut -d'|' -f3 <<< "${line}") + MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}") + + CB=$(cut -d'|' -f4 <<< "${line}") + + DEP_RUN=$(cut -d'|' -f5 <<< "${line}") + DEP_RUN=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${DEP_RUN}") + + DATE_35D=$(cut -d'|' -f6 <<< "${line}") + DATE_35D=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${DATE_35D}") + + if [[ ${DEP_RUN} != '' ]]; then DEP_RUN=${DEP_RUN}_${RT_COMPILER} fi export TEST_ID=${TEST_NAME}_${RT_COMPILER} - [[ -e "tests/$TEST_NAME" ]] || die "run test file tests/$TEST_NAME does not exist" - [[ $CREATE_BASELINE == true && $CB != *baseline* ]] && continue + [[ -e "tests/${TEST_NAME}" ]] || die "run test file tests/${TEST_NAME} does not exist" + [[ ${CREATE_BASELINE} == true && ${CB} != *baseline* ]] && continue if [[ ${MACHINES} != '' ]]; then if [[ ${MACHINES} == -* ]]; then @@ -1184,22 +1309,22 @@ while read -r line || [ "$line" ]; do COMPILE_METATASK_NAME=${COMPILE_ID} # 35 day tests - [[ $TEST_35D == true ]] && rt_35d + [[ ${TEST_35D} == true ]] && rt_35d # Avoid uninitialized RT_SUFFIX/BL_SUFFIX (see definition above) RT_SUFFIX=${RT_SUFFIX:-""} BL_SUFFIX=${BL_SUFFIX:-""} - if [[ $ROCOTO == true && $new_compile == true ]]; then + if [[ ${ROCOTO} == true && ${new_compile} == true ]]; then new_compile=false in_metatask=true - cat << EOF >> $ROCOTO_XML + cat << EOF >> "${ROCOTO_XML}" 0 EOF fi ( - source ${PATHRT}/tests/$TEST_NAME + source "${PATHRT}/tests/${TEST_NAME}" compute_petbounds_and_tasks @@ -1214,8 +1339,7 @@ EOF PPN=$((PPN + 1)) fi - cat << EOF > ${RUNDIR_ROOT}/run_test_${TEST_ID}.env -export JOB_NR=${JOB_NR} + cat << EOF > "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" export TEST_ID=${TEST_ID} export MACHINE_ID=${MACHINE_ID} export RT_COMPILER=${RT_COMPILER} @@ -1239,52 +1363,54 @@ export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} export LOG_DIR=${LOG_DIR} export DEP_RUN=${DEP_RUN} export skip_check_results=${skip_check_results} +export RTVERBOSE=${RTVERBOSE} export delete_rundir=${delete_rundir} export WLCLK=${WLCLK} EOF - if [[ $MACHINE_ID = jet ]]; then - cat << EOF >> ${RUNDIR_ROOT}/run_test_${TEST_ID}.env -export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH + if [[ ${MACHINE_ID} = jet ]]; then + cat << EOF >> "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" +export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:${PATH} export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages EOF fi - if [[ $ROCOTO == true ]]; then + if [[ ${ROCOTO} == true ]]; then rocoto_create_run_task - elif [[ $ECFLOW == true ]]; then + elif [[ ${ECFLOW} == true ]]; then ecflow_create_run_task else - ./run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > ${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log 2>&1 + echo "rt.sh: Running test ${TEST_ID} using compile ${COMPILE_ID}" + ./run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" 2>&1 + echo "rt.sh: Run with test ${TEST_ID} completed." fi ) - continue else - die "Unknown command $line" + die "Unknown command ${line}" fi -done < $TESTS_FILE +done < "${TESTS_FILE}" ## ## run regression test workflow (currently Rocoto or ecFlow are supported) ## -if [[ $ROCOTO == true ]]; then - if [[ $in_metatask == true ]]; then - echo " " >> $ROCOTO_XML +if [[ ${ROCOTO} == true ]]; then + if [[ ${in_metatask} == true ]]; then + echo " " >> "${ROCOTO_XML}" fi - echo "" >> $ROCOTO_XML + echo "" >> "${ROCOTO_XML}" # run rocoto workflow until done rocoto_run fi -if [[ $ECFLOW == true ]]; then - echo "endsuite" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def +if [[ ${ECFLOW} == true ]]; then + echo "endsuite" >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" # run ecflow workflow until done ecflow_run fi # IF -c AND -b; LINK VERIFIED BASELINES TO NEW_BASELINE -if [[ $CREATE_BASELINE == true && $NEW_BASELINES_FILE != '' ]]; then +if [[ ${CREATE_BASELINE} == true && ${NEW_BASELINES_FILE} != '' ]]; then for dir in "${RTPWD}"/*/; do dir=${dir%*/} [[ -d "${NEW_BASELINE}/${dir##*/}" ]] && continue @@ -1294,3 +1420,5 @@ fi ## Lets verify all tests were run and that they passed generate_log +eval "${set_x}" +echo "******Regression Testing Script Completed******" \ No newline at end of file diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index a8fb423529..24f8c8d286 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -1,3 +1,4 @@ +#!/bin/bash set -eu if [[ "$0" = "${BASH_SOURCE[0]}" ]]; then @@ -9,23 +10,23 @@ fi # are not dependent on the caller. Most regression test variables # (such as ACCNR) are not set until after rt.sh sources this file. -qsub_id=0 -slurm_id=0 -bsub_id=0 +jobid=0 function compute_petbounds_and_tasks() { - + echo "rt_utils.sh: ${TEST_ID}: Computing PET bounds and tasks." + [[ -o xtrace ]] && set_x='set -x' || set_x='set +x' + set +x # each test MUST define ${COMPONENT}_tasks variable for all components it is using # and MUST NOT define those that it's not using or set the value to 0. # ATM is a special case since it is running on the sum of compute and io tasks. # CHM component and mediator are running on ATM compute tasks only. - if [[ $DATM_CDEPS = 'false' ]]; then + if [[ ${DATM_CDEPS} = 'false' ]]; then if [[ ${ATM_compute_tasks:-0} -eq 0 ]]; then ATM_compute_tasks=$((INPES * JNPES * NTILES)) fi - if [[ $QUILTING = '.true.' ]]; then + if [[ ${QUILTING} = '.true.' ]]; then ATM_io_tasks=$((WRITE_GROUP * WRTTASK_PER_GROUP)) fi fi @@ -79,38 +80,45 @@ function compute_petbounds_and_tasks() { UFS_tasks=${n} - echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" - echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" - echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" - echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" - echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" - echo "MED_petlist_bounds: ${med_petlist_bounds:-}" - echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" - echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}" - echo "UFS_tasks : ${UFS_tasks:-}" + if [[ ${RTVERBOSE} == true ]]; then + echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" + echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" + echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" + echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" + echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" + echo "MED_petlist_bounds: ${med_petlist_bounds:-}" + echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" + echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}" + echo "UFS_tasks : ${UFS_tasks:-}" + fi # TASKS is now set to UFS_TASKS - export TASKS=$UFS_tasks + export TASKS=${UFS_tasks} + eval "${set_x}" } interrupt_job() { + echo "rt_utils.sh: Job ${jobid} interupted" set -x - if [[ $SCHEDULER = 'pbs' ]]; then - echo "run_util.sh: interrupt_job qsub_id = ${qsub_id}" - qdel ${qsub_id} - elif [[ $SCHEDULER = 'slurm' ]]; then - echo "run_util.sh: interrupt_job slurm_id = ${slurm_id}" - scancel ${slurm_id} - else - echo "run_util.sh: interrupt_job unknown SCHEDULER $SCHEDULER" - fi + #echo "run_util.sh: interrupt_job called | Job#: ${jobid}" + case ${SCHEDULER} in + pbs) + qdel "${jobid}" + ;; + slurm) + scancel "${jobid}" + ;; + *) + echo "Unsupported scheduler, job may have not terminated properly." + ;; + esac } submit_and_wait() { - + echo "rt_utils.sh: Submitting job on scheduler: ${SCHEDULER}" [[ -z $1 ]] && exit 1 - [ -o xtrace ] && set_x='set -x' || set_x='set +x' + [[ -o xtrace ]] && set_x='set -x' || set_x='set +x' set +x local -r job_card=$1 @@ -119,147 +127,137 @@ submit_and_wait() { ECFLOW=${ECFLOW:-false} local test_status='PASS' + case ${SCHEDULER} in + pbs) + qsubout=$( qsub "${job_card}" ) + re='^([0-9]+)(\.[a-zA-Z0-9\.-]+)$' + [[ "${qsubout}" =~ ${re} ]] && jobid=${BASH_REMATCH[1]} + ;; + slurm) + slurmout=$( sbatch "${job_card}" ) + re='Submitted batch job ([0-9]+)' + [[ "${slurmout}" =~ ${re} ]] && jobid=${BASH_REMATCH[1]} + ;; + *) + echo "Unsupported scheduler: ${SCHEDULER}" + exit 1 + ;; + esac - if [[ $SCHEDULER = 'pbs' ]]; then - qsubout=$( qsub $job_card ) - re='^([0-9]+)(\.[a-zA-Z0-9\.-]+)$' - [[ "${qsubout}" =~ $re ]] && qsub_id=${BASH_REMATCH[1]} - echo "Job id ${qsub_id}" - elif [[ $SCHEDULER = 'slurm' ]]; then - slurmout=$( sbatch $job_card ) - re='Submitted batch job ([0-9]+)' - [[ "${slurmout}" =~ $re ]] && slurm_id=${BASH_REMATCH[1]} - echo "Job id ${slurm_id}" - else - echo "Unknown SCHEDULER $SCHEDULER" - exit 1 - fi - + echo "rt_utils.sh: Submitted Job. ID is ${jobid}." + sleep 10 # wait for the job to enter the queue local count=0 - local job_running=0 - until [[ $job_running -eq 1 ]] + local job_running='' + echo "rt_utils.sh: Job is waiting to enter the queue..." + until [[ ${job_running} == 'true' ]] do - echo "Job is waiting to enter the queue" - [[ ${ECFLOW:-false} == true ]] && ecflow_client --label=job_status "waiting to enter the queue" - if [[ $SCHEDULER = 'pbs' ]]; then - job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l ) - elif [[ $SCHEDULER = 'slurm' ]]; then - job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l) + case ${SCHEDULER} in + pbs) + set +e + job_info=$( qstat "${jobid}" ) + set -e + ;; + slurm) + job_info=$( squeue -u "${USER}" -j "${jobid}" ) + ;; + *) + ;; + esac + if grep -q "${jobid}" <<< "${job_info}"; then + job_running=true + continue else - echo "Unknown SCHEDULER $SCHEDULER" - exit 1 + job_running=false fi + sleep 5 (( count=count+1 )) - if [[ $count -eq 13 ]]; then echo "No job in queue after one minute, exiting..."; exit 2; fi + if [[ ${count} -eq 13 ]]; then echo "No job in queue after one minute, exiting..."; exit 2; fi done - - # find jobid - if [[ $SCHEDULER = 'pbs' ]]; then - jobid=${qsub_id} - elif [[ $SCHEDULER = 'slurm' ]]; then - jobid=${slurm_id} - else - echo "Unknown SCHEDULER $SCHEDULER" - exit 1 - fi - echo "Job is submitted " - if [[ ${ECFLOW:-false} == true ]]; then - ecflow_client --label=job_id "${jobid}" - ecflow_client --label=job_status "submitted" - fi + echo "rt_utils.sh Job (${jobid}) is now in the queue." # wait for the job to finish and compare results - job_running=1 local n=1 - until [[ $job_running -eq 0 ]] + until [[ ${job_running} == 'false' ]] do - - if [[ $SCHEDULER = 'pbs' ]]; then - job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l ) - elif [[ $SCHEDULER = 'slurm' ]]; then - job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l) - else - echo "Unknown SCHEDULER $SCHEDULER" - exit 1 - fi - - if [[ $SCHEDULER = 'pbs' ]]; then - - status=$( qstat ${qsub_id} | grep ${qsub_id} | awk '{print $5}' ); status=${status:--} - if [[ $status = 'Q' ]]; then - status_label='waiting in a queue' - elif [[ $status = 'H' ]]; then - status_label='held in a queue' - elif [[ $status = 'R' ]]; then - status_label='running' - elif [[ $status = 'E' ]] || [[ $status = 'C' ]] || [[ $status = '-' ]]; then - status_label='finished' - test_status='DONE' - exit_status=$( qstat ${jobid} -x -f | grep Exit_status | awk '{print $3}') - if [[ $exit_status != 0 ]]; then - test_status='FAIL' - fi - else - status_label='finished' - fi - - elif [[ $SCHEDULER = 'slurm' ]]; then - - status=$( squeue -u ${USER} -j ${slurm_id} 2>/dev/null | grep ${slurm_id} | awk '{print $5}' ); status=${status:--} - if [[ $status = 'R' ]]; then - status_label='running' - elif [[ $status = 'PD' ]]; then - status_label='pending' - elif [[ $status = 'F' ]]; then - status_label='failed' - test_status='FAIL' - elif [[ $status = 'C' ]]; then - status_label='finished' - test_status='DONE' - else - echo "Slurm unknown status ${status}. Check sacct ..." - sacct -n -j ${slurm_id} --format=JobID,state%20,Jobname%20 - status_label=$( sacct -n -j ${slurm_id} --format=JobID,state%20,Jobname%20 | grep "^${slurm_id}" | grep ${JBNME} | awk '{print $2}' ) - if [[ $status_label = 'FAILED' ]] || [[ $status_label = 'TIMEOUT' ]] || [[ $status_label = 'CANCELLED' ]] ; then - test_status='FAIL' - fi - fi - + case ${SCHEDULER} in + pbs) + set +e + job_info=$( qstat "${jobid}" ) + set -e + ;; + slurm) + job_info=$( squeue -u "${USER}" -j "${jobid}" ) + ;; + *) + ;; + esac + + + if grep -q "${jobid}" <<< "${job_info}"; then + job_running=true else - echo "Unknown SCHEDULER $SCHEDULER" - exit 1 - + job_running=false + continue fi - echo "$n min. Job is ${status_label}, status: $status jobid ${jobid}" - [[ ${ECFLOW:-false} == true ]] && ecflow_client --label=job_status "$status_label" - - if [[ $test_status = 'FAIL' || $test_status = 'DONE' ]]; then - break - 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 + #Slurm: (old: PD, new: PENDING) + Q|PD|PENDING) + status_label='Job waiting to start' + ;; + #running cases + #pbs: R + #slurm: (old: R, new: RUNNING) + R|RUNNING) + status_label='Job running' + ;; + #held cases + #pbs only: H + H) + status_label='Job being held' + echo "rt_utils.sh: *** WARNING ***: Job in a HELD state. Might want to stop manually." + ;; + #fail/completed cases + #pbs: E + #slurm: F/FAILED TO/TIMEOUT CA/CANCELLED + E|F|TO|CA|FAILED|TIMEOUT|CANCELLED) + echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!!" + job_running=false #Trip the loop to end with these status flags + interrupt_job + exit 1 + ;; + #completed + #pbs only: C + C) + status_label='Completed' + ;; + *) + status_label="Unknown" + echo "rt_utils.sh: *** WARNING ***: Job status unsupported: ${status}" + echo "rt_utils.sh: *** WARNING ***: Status might be non-terminating, please manually stop if needed" + ;; + esac + + echo "${n} min. ${SCHEDULER^} Job ${jobid} Status: ${status_label} (${status})" (( n=n+1 )) sleep 60 & wait $! done - if [[ $test_status = 'FAIL' ]]; then - echo "Job FAIL" >> ${RT_LOG} - echo;echo;echo >> ${RT_LOG} - echo "Job FAIL" - - if [[ $ROCOTO == true || $ECFLOW == true ]]; then - exit 1 - fi - fi - - eval "$set_x" + eval "${set_x}" } check_results() { - - [ -o xtrace ] && set_x='set -x' || set_x='set +x' + echo "rt_utils.sh: Checking results of the regression test: ${TEST_ID}" + [[ -o xtrace ]] && set_x='set -x' || set_x='set +x' set +x ROCOTO=${ROCOTO:-false} @@ -270,10 +268,12 @@ check_results() { # Give one minute for data to show up on file system #sleep 60 - echo > ${RT_LOG} - echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" >> ${RT_LOG} - echo "working dir = ${RUNDIR}" >> ${RT_LOG} - 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 ...." + } > "${RT_LOG}" echo echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" echo "working dir = ${RUNDIR}" @@ -284,55 +284,55 @@ check_results() { # --- regression test comparison # for i in ${LIST_FILES} ; do - printf %s " Comparing " $i " ....." >> ${RT_LOG} - printf %s " Comparing " $i " ....." + printf %s " Comparing ${i} ....." >> "${RT_LOG}" + printf %s " Comparing ${i} ....." - if [[ ! -f ${RUNDIR}/$i ]] ; then + if [[ ! -f ${RUNDIR}/${i} ]] ; then - echo ".......MISSING file" >> ${RT_LOG} + echo ".......MISSING file" >> "${RT_LOG}" echo ".......MISSING file" test_status='FAIL' - elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ]] ; then + elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ]] ; then - echo ".......MISSING baseline" >> ${RT_LOG} + 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} + 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=$? + 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=$? + 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} + 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.." >> "${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} + 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} + if [[ ${d} -ne 0 ]]; then + echo "....NOT IDENTICAL" >> "${RT_LOG}" echo "....NOT IDENTICAL" test_status='FAIL' else - echo "....OK" >> ${RT_LOG} + echo "....OK" >> "${RT_LOG}" echo "....OK" fi @@ -345,72 +345,74 @@ check_results() { # --- create baselines # echo;echo "Moving baseline ${TEST_ID} files ...." - echo;echo "Moving baseline ${TEST_ID} files ...." >> ${RT_LOG} + 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} + 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 + echo "....NOT OK. Missing ${RUNDIR}/${i}" >> "${RT_LOG}" + echo "....NOT OK. Missing ${RUNDIR}/${i}" test_status='FAIL' fi done fi - echo >> ${RT_LOG} - grep "The total amount of wall time" ${RUNDIR}/out >> ${RT_LOG} - grep "The maximum resident set size" ${RUNDIR}/out >> ${RT_LOG} - echo >> ${RT_LOG} + { + 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" + 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}" >> "${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} + if [[ ${test_status} = 'FAIL' ]]; then + echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}" - if [[ $ROCOTO = true || $ECFLOW == true ]]; then + if [[ ${ROCOTO} = true || ${ECFLOW} == true ]]; then exit 1 fi fi - eval "$set_x" + eval "${set_x}" } kill_job() { - + echo "rt_utils.sh: Killing job: ${jobid} on ${SCHEDULER}..." [[ -z $1 ]] && exit 1 local -r jobid=$1 - if [[ $SCHEDULER = 'pbs' ]]; then - qdel ${jobid} - elif [[ $SCHEDULER = 'slurm' ]]; then - scancel ${jobid} + if [[ ${SCHEDULER} = 'pbs' ]]; then + qdel "${jobid}" + elif [[ ${SCHEDULER} = 'slurm' ]]; then + scancel "${jobid}" fi } rocoto_create_compile_task() { - - new_compile=true - if [[ $in_metatask == true ]]; then + echo "rt_utils.sh: ${COMPILE_ID}: Creating ROCOTO compile task." + #new_compile=true + if [[ ${in_metatask} == true ]]; then in_metatask=false - echo " " >> $ROCOTO_XML + echo " " >> "${ROCOTO_XML}" fi NATIVE="" @@ -431,12 +433,12 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == s4 ]]; then BUILD_WALLTIME="01:00:00" fi - if [[ $MACHINE_ID == gaea ]]; then + if [[ ${MACHINE_ID} == gaea ]]; then BUILD_WALLTIME="01:00:00" fi - cat << EOF >> $ROCOTO_XML + cat << EOF >> "${ROCOTO_XML}" &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} 2>&1 | tee &LOG;/compile_${COMPILE_ID}.log compile_${COMPILE_ID} @@ -444,18 +446,18 @@ rocoto_create_compile_task() { ${COMPILE_QUEUE} EOF - if [[ "$MACHINE_ID" == gaea ]] ; then - cat << EOF >> $ROCOTO_XML + if [[ "${MACHINE_ID}" == gaea ]] ; then + cat << EOF >> "${ROCOTO_XML}" --clusters=es eslogin_c5 EOF elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then - cat << EOF >> $ROCOTO_XML + cat << EOF >> "${ROCOTO_XML}" ${PARTITION} EOF fi - cat << EOF >> $ROCOTO_XML + cat << EOF >> "${ROCOTO_XML}" ${BUILD_CORES} ${BUILD_WALLTIME} &RUNDIR_ROOT;/compile_${COMPILE_ID}.log @@ -465,42 +467,43 @@ EOF } rocoto_create_run_task() { - - if [[ $DEP_RUN != '' ]]; then + echo "rt_utils.sh: ${TEST_ID}: Creating ROCOTO run task." + if [[ ${DEP_RUN} != '' ]]; then DEP_STRING=" " else DEP_STRING="" fi - CORES=$(( ${TASKS} * ${THRD} )) + CORES=$((TASKS*THRD)) if (( TPN > CORES )); then - TPN=$CORES + TPN=${CORES} fi NATIVE="" - cat << EOF >> $ROCOTO_XML + cat << EOF >> "${ROCOTO_XML}" - $DEP_STRING + ${DEP_STRING} &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} 2>&1 | tee &LOG;/run_${TEST_ID}${RT_SUFFIX}.log ${TEST_ID}${RT_SUFFIX} ${ACCNR} - ${ROCOTO_NODESIZE:+$ROCOTO_NODESIZE} + ${ROCOTO_NODESIZE:+${ROCOTO_NODESIZE}} EOF - if [[ "$MACHINE_ID" == gaea ]] ; then - cat << EOF >> $ROCOTO_XML + if [[ "${MACHINE_ID}" == gaea ]] ; then + cat << EOF >> "${ROCOTO_XML}" --clusters=${PARTITION} --partition=batch EOF + elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then - cat << EOF >> $ROCOTO_XML + cat << EOF >> "${ROCOTO_XML}" ${QUEUE} ${PARTITION} EOF fi - cat << EOF >> $ROCOTO_XML + cat << EOF >> "${ROCOTO_XML}" ${NODES}:ppn=${TPN} 00:${WLCLK}:00 &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.log @@ -511,23 +514,32 @@ EOF } rocoto_kill() { - for jobid in $( $ROCOTOSTAT -w $ROCOTO_XML -d $ROCOTO_DB | grep 197001010000 | grep -E 'QUEUED|RUNNING' | awk -F" " '{print $3}' ); do - kill_job ${jobid} + echo "rt_utils.sh: Killing ROCOTO Workflow..." + job_id_in=$( "${ROCOTOSTAT}" -w "${ROCOTO_XML}" -d "${ROCOTO_DB}" ) + job_id_in=$(grep 197001010000 <<< "${job_id_in}" ) + job_id_in=$(grep -E 'QUEUED|RUNNING' <<< "${job_id_in}" ) + job_id_in=$(awk -F" " '{print $3}' <<< "${job_id_in}" ) + for jobid in ${job_id_in}; do + kill_job "${jobid}" done } rocoto_step() { + echo "rt_utils.sh: Runnung one iteration of rocotorun and rocotostat..." set -e echo "Unknown" > rocoto_workflow.state # Run one iteration of rocotorun and rocotostat. - $ROCOTORUN -v 10 -w $ROCOTO_XML -d $ROCOTO_DB + ${ROCOTORUN} -v 10 -w "${ROCOTO_XML}" -d "${ROCOTO_DB}" sleep 1 # Is it done? - state=$($ROCOTOSTAT -w $ROCOTO_XML -d $ROCOTO_DB -s | grep 197001010000 | awk -F" " '{print $2}') - echo "$state" > $ROCOTO_STATE + state=$( "${ROCOTOSTAT}" -w "${ROCOTO_XML}" -d "${ROCOTO_DB}" -s ) + state=$( grep 197001010000 <<< "${state}" ) + state=$( awk -F" " '{print $2}' <<< "${state}" ) + echo "${state}" > "${ROCOTO_STATE}" } rocoto_run() { + echo "rt_utils.sh: Running ROCOTO workflow" # Run the rocoto workflow until it is complete local naptime=60 local step_attempts=0 @@ -537,18 +549,18 @@ rocoto_run() { local max_time=3600 # seconds to wait for Rocoto to start working again local result=0 state="Active" - while [[ $state != "Done" ]]; do + while [[ ${state} != "Done" ]]; do # Run one iteration of rocotorun and rocotostat. Use an # exponential backoff algorithm to handle temporary system # failures breaking Rocoto. start_time=$( env TZ=UTC date +%s ) - for step_attempts in $( seq 1 "$max_step_attempts" ) ; do + for step_attempts in $( seq 1 "${max_step_attempts}" ) ; do now_time=$( env TZ=UTC date +%s ) set +e ( rocoto_step ) result=$? - state=$( cat $ROCOTO_STATE ) + state=$( cat "${ROCOTO_STATE}" ) set -e if [[ "${state:-Unknown}" == Done ]] ; then @@ -556,131 +568,194 @@ rocoto_run() { echo "Rocoto workflow has completed." set -x return 0 - elif [[ $result == 0 ]] ; then + elif [[ ${result} == 0 ]] ; then break # rocoto_step succeeded elif (( now_time-start_time > max_time || step_attempts >= max_step_attempts )) ; then set +x - echo "Rocoto commands have failed $step_attempts times, for $(( (now_time-start_time+30)/60 )) minutes." - echo "There may be something wrong with the $( hostname ) node or the batch system." + hostnamein=$(hostname) + echo "Rocoto commands have failed ${step_attempts} times, for $(( (now_time-start_time+30)/60 )) minutes." + echo "There may be something wrong with the ${hostnamein} node or the batch system." echo "I'm giving up. Sorry." set -x return 2 fi sleep $(( naptime * 2**((step_attempts-1)%4) * RANDOM/32767 )) done - sleep $naptime + sleep "${naptime}" done } ecflow_create_compile_task() { - - new_compile=true + echo "rt_utils.sh: ${COMPILE_ID}: Creating ECFLOW compile task" + export new_compile=true - cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_ID}.ecf + 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 & +${PATHRT}/run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log" 2>&1 & %include EOF - - echo " task compile_${COMPILE_ID}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " label build_options '${MAKE_OPT}'" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " inlimit max_builds" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + { + 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" } ecflow_create_run_task() { - - cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_ID}${RT_SUFFIX}.ecf + 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 & +${PATHRT}/run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" 2>&1 & %include EOF - - echo " task ${TEST_ID}${RT_SUFFIX}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " inlimit max_jobs" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - if [[ $DEP_RUN != '' ]]; then - echo " trigger compile_${COMPILE_ID} == complete and ${DEP_RUN} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + { + 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 + echo " trigger compile_${COMPILE_ID} == complete and ${DEP_RUN} == complete" >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" else - echo " trigger compile_${COMPILE_ID} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + echo " trigger compile_${COMPILE_ID} == complete" >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" fi + } ecflow_run() { + echo "rt_utils.sh: Starting ECFLOW run" + # NOTE: ECFLOW IS NOT SAFE TO RUN WITH set -e, PLEASE AVOID + #ECF_HOST="${ECF_HOST:-${HOSTNAME}}" + + + # Make sure ECF_HOST and ECF_PORT are set/ready on systems that have an + # explicit ecflow node + if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then + readarray -t ECFHOSTLIST < "${ECF_HOSTFILE}" + for ECF_HOST in "${ECFHOSTLIST[@]}" + do + if ssh -q "${ECF_HOST}" "exit"; then + export ECF_HOST + break + else + ECF_HOST='' + fi + done + elif [[ ${MACHINE_ID} == hera || ${MACHINE_ID} == jet ]]; then + module load ecflow + fi + if [[ -z ${ECF_HOST} || -z ${ECF_PORT} ]]; then + echo "ERROR: ECF_HOST or ECF_PORT are not set, and rt.sh cannot continue with ECFLOW" + exit 1 + else + echo "ECF_HOST: ${ECF_HOST}, ECF_PORT: ${ECF_PORT}" + export ECF_HOST + export ECF_PORT + fi - ECF_HOST="${ECF_HOST:-$HOSTNAME}" - + # Start the ecflow_server set +e - ecflow_client --ping --host=${ECF_HOST} --port=${ECF_PORT} + ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}" not_running=$? - if [[ $not_running -eq 1 ]]; then + set -e + + if [[ ${not_running} -eq 1 ]]; then echo "ecflow_server is NOT running on ${ECF_HOST}:${ECF_PORT}" + if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then - if [[ "${HOST::1}" == "a" ]]; then - export ECF_HOST=aecflow01 - elif [[ "${HOST::1}" == "c" ]]; then - export ECF_HOST=cdecflow01 - elif [[ "${HOST::1}" == "d" ]]; then - export ECF_HOST=ddecflow01 - fi - MYCOMM="bash -l -c \"module load ecflow && ecflow_start.sh -p ${ECF_PORT} \"" - ssh $ECF_HOST "${MYCOMM}" + #shellcheck disable=SC2029 + ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -p ${ECF_PORT}\"" elif [[ ${MACHINE_ID} == hera || ${MACHINE_ID} == jet ]]; then - module load ecflow - echo "On ${MACHINE_ID}, start ecFlow server on dedicated node ${ECF_HOST}" - MYCOMM="bash -l -c \"module load ecflow && ${ECFLOW_START} -d ${RUNDIR_ROOT}/ecflow_server\"" - ssh $ECF_HOST "${MYCOMM}" + #shellcheck disable=SC2029 + ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -d ${RUNDIR_ROOT}/ecflow_server\"" else - ${ECFLOW_START} -p ${ECF_PORT} -d ${RUNDIR_ROOT}/ecflow_server + ${ECFLOW_START} -p "${ECF_PORT}" -d "${RUNDIR_ROOT}/ecflow_server" + fi + echo "Since this script is starting the ecflow_server, we will stop it at the end" + export STOP_ECFLOW_AT_END=true + # Try pinging ecflow server now, and erroring out if not there. + set +e + ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}" + not_running=$? + set -e + + if [[ ${not_running} -eq 1 ]]; then + echo "ERROR: Failure to start ecflow, exiting..." + exit 1 fi else echo "ecflow_server is already running on ${ECF_HOST}:${ECF_PORT}" fi - set -e - + ECFLOW_RUNNING=true - - export ECF_PORT - export ECF_HOST - - ecflow_client --load=${ECFLOW_RUN}/${ECFLOW_SUITE}.def - ecflow_client --begin=${ECFLOW_SUITE} - ecflow_client --restart + set +e + ecflow_client --load="${ECFLOW_RUN}/${ECFLOW_SUITE}.def" --host="${ECF_HOST}" --port="${ECF_PORT}" + ecflow_client --begin="${ECFLOW_SUITE}" --host="${ECF_HOST}" --port="${ECF_PORT}" + ecflow_client --restart --host="${ECF_HOST}" --port="${ECF_PORT}" + set -e active_tasks=1 - while [[ $active_tasks -ne 0 ]] + sleep 10 + max_active_tasks=$( ecflow_client --get_state "/${ECFLOW_SUITE}" ) + max_active_tasks=$( grep "task " <<< "${max_active_tasks}" ) + max_active_tasks=$( grep -cP 'state:active|state:submitted|state:queued' <<< "${max_active_tasks}" ) + while [[ "${active_tasks}" -ne 0 ]] do sleep 10 & wait $! - active_tasks=$( ecflow_client --get_state /${ECFLOW_SUITE} | grep "task " | grep -E 'state:active|state:submitted|state:queued' | wc -l ) - echo "ecflow tasks remaining: ${active_tasks}" - ${PATHRT}/abort_dep_tasks.py + set +e + active_tasks=$( ecflow_client --get_state "/${ECFLOW_SUITE}" ) + active_tasks=$( grep "task " <<< "${active_tasks}" ) + active_tasks=$( grep -cP 'state:active|state:submitted|state:queued' <<< "${active_tasks}" ) + set -e + echo "ECFLOW Tasks Remaining: ${active_tasks}/${max_active_tasks}" + "${PATHRT}/abort_dep_tasks.py" done + sleep 65 # wait one ECF_INTERVAL plus 5 seconds - ecflow_client --delete=yes /${ECFLOW_SUITE} + set +e + ecflow_client --delete=force yes "/${ECFLOW_SUITE}" + set -e sleep 5 } ecflow_kill() { + echo "rt_utils.sh: Killing ECFLOW Workflow..." [[ ${ECFLOW_RUNNING:-false} == true ]] || return set +e - ecflow_client --suspend /${ECFLOW_SUITE} - ecflow_client --kill /${ECFLOW_SUITE} + ecflow_client --suspend "/${ECFLOW_SUITE}" + ecflow_client --kill "/${ECFLOW_SUITE}" sleep 20 - ecflow_client --delete=force yes /${ECFLOW_SUITE} + ecflow_client --delete=force yes "/${ECFLOW_SUITE}" + set -e } ecflow_stop() { - [[ ${ECFLOW_RUNNING:-false} == true ]] || return - set +e - SUITES=$( ecflow_client --get | grep "^suite" ) - echo "SUITES=${SUITES}" - if [ -z "${SUITES}" ]; then - ecflow_client --halt=yes - ecflow_client --check_pt - ecflow_client --terminate=yes - fi + echo "rt_utils.sh: Stopping ECFLOW Workflow..." + [[ ${ECFLOW_RUNNING:-false} == true ]] || return + set +e + SUITES=$( ecflow_client --get ) + SUITES=$( grep "^suite" <<< "${SUITES}" ) + echo "SUITES=${SUITES}" + if [[ -z "${SUITES}" ]]; then + ecflow_client --halt=yes + ecflow_client --check_pt + ecflow_client --terminate=yes + fi + if [[ ${STOP_ECFLOW_AT_END} == true ]]; then + echo "rt_utils.sh: Stopping ECFLOW Server..." + case ${MACHINE_ID} in + wcoss2|acorn|hera|jet) + #shellcheck disable=SC2029 + ssh "${ECF_HOST}" "bash -l -c \"${ECFLOW_STOP} -p ${ECF_PORT}\"" + ;; + *) + ${ECFLOW_STOP} -p "${ECF_PORT}" + ;; + esac + fi + set -e } diff --git a/tests/run_compile.sh b/tests/run_compile.sh index 795353a32a..a9bf0070b6 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -9,19 +9,19 @@ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM cleanup() { - [[ $ROCOTO = 'false' ]] && interrupt_job + [[ ${ROCOTO} = 'false' ]] && interrupt_job trap 0 exit } write_fail_test() { - echo "compile_${COMPILE_ID} failed in run_compile" >> $PATHRT/fail_compile_${COMPILE_ID} + echo "${JBNME} failed in run_compile" >> "${PATHRT}/fail_${JBNME}" exit 1 } remove_fail_test() { - echo "Removing test failure flag file for compile_${COMPILE_ID}" - rm -f $PATHRT/fail_compile_${COMPILE_ID} + echo "Removing test failure flag file for ${JBNME}" + rm -f "${PATHRT}/fail_${JBNME}" } if [[ $# != 4 ]]; then @@ -34,76 +34,71 @@ export RUNDIR_ROOT=$2 export MAKE_OPT=$3 export COMPILE_ID=$4 -cd ${PATHRT} +export JBNME="compile_${COMPILE_ID}" + +cd "${PATHRT}" remove_fail_test -[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env +[[ -e ${RUNDIR_ROOT}/${JBNME}.env ]] && source "${RUNDIR_ROOT}/${JBNME}.env" source default_vars.sh -[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env +[[ -e ${RUNDIR_ROOT}/${JBNME}.env ]] && source "${RUNDIR_ROOT}/${JBNME}.env" -export JBNME="compile_${COMPILE_ID}" -export RUNDIR=${RUNDIR_ROOT}/compile_${COMPILE_ID} -echo -n "${JBNME}, $( date +%s )," > ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt +export RUNDIR=${RUNDIR_ROOT}/${JBNME} +date_s=$( date +%s ) +echo -n "${JBNME}, ${date_s}," > "${LOG_DIR}/${JBNME}_timestamp.txt" -export RT_LOG=${LOG_DIR}/compile_${COMPILE_ID}.log +export RT_LOG=${LOG_DIR}/${JBNME}.log source rt_utils.sh source atparse.bash -rm -rf ${RUNDIR} -mkdir -p ${RUNDIR} -cd $RUNDIR +rm -rf "${RUNDIR}" +mkdir -p "${RUNDIR}" +cd "${RUNDIR}" -if [[ $SCHEDULER = 'pbs' ]]; then - if [[ -e $PATHRT/fv3_conf/compile_qsub.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/compile_qsub.IN_${MACHINE_ID} > job_card +if [[ ${SCHEDULER} = 'pbs' ]]; then + if [[ -e ${PATHRT}/fv3_conf/compile_qsub.IN_${MACHINE_ID} ]]; then + atparse < "${PATHRT}/fv3_conf/compile_qsub.IN_${MACHINE_ID}" > job_card else echo "Looking for fv3_conf/compile_qsub.IN_${MACHINE_ID} but it is not found. Exiting" exit 1 fi -elif [[ $SCHEDULER = 'slurm' ]]; then - if [[ -e $PATHRT/fv3_conf/compile_slurm.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/compile_slurm.IN_${MACHINE_ID} > job_card +elif [[ ${SCHEDULER} = 'slurm' ]]; then + if [[ -e ${PATHRT}/fv3_conf/compile_slurm.IN_${MACHINE_ID} ]]; then + atparse < "${PATHRT}/fv3_conf/compile_slurm.IN_${MACHINE_ID}" > job_card else echo "Looking for fv3_conf/compile_slurm.IN_${MACHINE_ID} but it is not found. Exiting" exit 1 fi -elif [[ $SCHEDULER = 'lsf' ]]; then - if [[ -e $PATHRT/fv3_conf/compile_bsub.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/compile_bsub.IN_${MACHINE_ID} > job_card - else - echo "Looking for fv3_conf/compile_bsub.IN_${MACHINE_ID} but it is not found. Exiting" - exit 1 - fi fi ################################################################################ # Submit compile job ################################################################################ -if [[ $ROCOTO = 'false' ]]; then +if [[ ${ROCOTO} = 'false' ]]; then submit_and_wait job_card else chmod u+x job_card - ( ./job_card 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out + ( ./job_card 2>&1 1>&3 3>&- | tee err || true ) 3>&1 1>&2 | tee out # The above shell redirection copies stdout to "out" and stderr to "err" # while still sending them to stdout and stderr. It does this without # relying on bash-specific extensions or non-standard OS features. fi +#ls -l "${PATHTR}/tests/fv3_${COMPILE_ID}.exe" -ls -l ${PATHTR}/tests/fv3_${COMPILE_ID}.exe - -cp ${RUNDIR}/compile_*_time.log ${LOG_DIR} -cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt +cp "${RUNDIR}/${JBNME}_time.log" "${LOG_DIR}" +cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt" remove_fail_test ################################################################################ # End compile job ################################################################################ +date_s=$( date +%s ) +echo " ${date_s}, 1" >> "${LOG_DIR}/${JBNME}_timestamp.txt" -echo " $( date +%s ), 1" >> ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt - -elapsed=$SECONDS -echo "Elapsed time $elapsed seconds. Compile ${COMPILE_ID}" +elapsed=${SECONDS} +echo "run_compile.sh: Compile ${COMPILE_ID} Completed." +echo "run_compile.sh: Compile ${COMPILE_ID} Elapsed time ${elapsed} seconds." diff --git a/tests/run_test.sh b/tests/run_test.sh index d4ea64068c..4735a08c4d 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -9,19 +9,19 @@ trap 'echo "run_test.sh interrupted PID=$$"; cleanup' INT trap 'echo "run_test.sh terminated PID=$$"; cleanup' TERM cleanup() { - [[ $ROCOTO = 'false' ]] && interrupt_job + [[ ${ROCOTO} = 'false' ]] && interrupt_job trap 0 exit } write_fail_test() { - echo "${TEST_ID} failed in run_test" >> $PATHRT/fail_test_${TEST_ID} + 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} + rm -f "${PATHRT}/fail_test_${TEST_ID}" } if [[ $# != 5 ]]; then @@ -41,16 +41,16 @@ echo "TEST_NAME: ${TEST_NAME}" echo "TEST_ID: ${TEST_ID}" echo "COMPILE_ID: ${COMPILE_ID}" -cd ${PATHRT} +cd "${PATHRT}" unset MODEL_CONFIGURE unset UFS_CONFIGURE -[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_ID}.env +[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" source default_vars.sh -[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_ID}.env -source tests/$TEST_NAME +[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" +source "tests/${TEST_NAME}" remove_fail_test @@ -63,9 +63,10 @@ export INPUT_DIR=${CNTL_DIR} export RUNDIR=${RUNDIR_ROOT}/${TEST_ID}${RT_SUFFIX} export CNTL_DIR=${CNTL_DIR}${BL_SUFFIX} -export JBNME=$(basename $RUNDIR_ROOT)_${TEST_ID} - -echo -n "${TEST_ID}, $( date +%s )," > ${LOG_DIR}/run_${TEST_ID}_timestamp.txt +JBNME="run_${TEST_ID}" +export JBNME +date_s=$( date +%s ) +echo -n "${TEST_ID}, ${date_s}," > "${LOG_DIR}/${JBNME}_timestamp.txt" export RT_LOG=${LOG_DIR}/rt_${TEST_ID}${RT_SUFFIX}.log echo "Test ${TEST_ID} ${TEST_DESCR}" @@ -73,58 +74,62 @@ echo "Test ${TEST_ID} ${TEST_DESCR}" source rt_utils.sh source atparse.bash -rm -rf ${RUNDIR} -mkdir -p ${RUNDIR} -cd $RUNDIR +rm -rf "${RUNDIR}" +mkdir -p "${RUNDIR}" +cd "${RUNDIR}" ############################################################################### # Make configure and run files ############################################################################### # FV3 executable: -cp ${PATHRT}/fv3_${COMPILE_ID}.exe fv3.exe +cp "${PATHRT}/fv3_${COMPILE_ID}.exe" "fv3.exe" # modulefile for FV3 prerequisites: mkdir -p modulefiles -if [[ $MACHINE_ID == linux ]]; then - cp ${PATHRT}/modules.fv3_${COMPILE_ID} ./modulefiles/modules.fv3 +if [[ ${MACHINE_ID} == linux ]]; then + cp "${PATHRT}/modules.fv3_${COMPILE_ID}" "./modulefiles/modules.fv3" else - cp ${PATHRT}/modules.fv3_${COMPILE_ID}.lua ./modulefiles/modules.fv3.lua + cp "${PATHRT}/modules.fv3_${COMPILE_ID}.lua" "./modulefiles/modules.fv3.lua" fi -cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. +cp "${PATHTR}/modulefiles/ufs_common.lua" "./modulefiles/." # Get the shell file that loads the "module" command and purges modules: -cp ${PATHRT}/module-setup.sh module-setup.sh +cp "${PATHRT}/module-setup.sh" "module-setup.sh" -# load nccmp module -if [[ " s4 hera orion hercules gaea jet derecho acorn wcoss2 " =~ " $MACHINE_ID " ]]; then - if [[ " wcoss2 acorn " =~ " ${MACHINE_ID} " ]] ; then +case ${MACHINE_ID} in + wcoss2|acorn) module load intel/19.1.3.304 netcdf/4.7.4 module load nccmp - elif [[ " s4 " =~ " ${MACHINE_ID} " ]] ; then + ;; + s4) module use /data/prod/jedi/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core module load stack-intel/2021.5.0 stack-intel-oneapi-mpi/2021.5.0 module load miniconda/3.9.12 module load nccmp/1.9.0.1 - elif [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then + ;; + stampede|expanse|noaacloud) + echo "No special nccmp load necessary" + ;; + gaea) module use modulefiles module load modules.fv3 - if [[ " gaea " =~ " ${MACHINE_ID} " ]]; then - module load gcc/12.2.0 - fi - else + module load gcc/12.2.0 + ;; + derecho) module load nccmp - fi -fi - -SRCD="${PATHTR}" -RUND="${RUNDIR}" + ;; + *) + module use modulefiles + module load modules.fv3 + ;; +esac # FV3_RUN could have multiple entry seperated by space -if [ ! -z "$FV3_RUN" ]; then +if [[ -n "${FV3_RUN}" ]]; then for i in ${FV3_RUN} do - atparse < ${PATHRT}/fv3_conf/${i} >> fv3_run + atparse < "${PATHRT}/fv3_conf/${i}" >> fv3_run done else echo "No FV3_RUN set in test file" @@ -140,14 +145,14 @@ else export HIDE_UGWPV1='!' fi -if [[ $DATM_CDEPS = 'true' ]] || [[ $FV3 = 'true' ]] || [[ $S2S = 'true' ]]; then - if [[ $HAFS = 'false' ]] || [[ $FV3 = 'true' && $HAFS = 'true' ]]; then - atparse < ${PATHRT}/parm/${INPUT_NML:-input.nml.IN} > input.nml +if [[ ${DATM_CDEPS} = 'true' ]] || [[ ${FV3} = 'true' ]] || [[ ${S2S} = 'true' ]]; then + if [[ ${HAFS} = 'false' ]] || [[ ${FV3} = 'true' && ${HAFS} = 'true' ]]; then + atparse < "${PATHRT}/parm/${INPUT_NML:-input.nml.IN}" > input.nml fi fi if [[ -f ${PATHRT}/parm/${MODEL_CONFIGURE} ]]; then - atparse < ${PATHRT}/parm/${MODEL_CONFIGURE} > model_configure + atparse < "${PATHRT}/parm/${MODEL_CONFIGURE}" > model_configure else echo "Cannot find file ${MODEL_CONFIGURE} set by variable MODEL_CONFIGURE" exit 1 @@ -156,144 +161,159 @@ fi compute_petbounds_and_tasks if [[ -f ${PATHRT}/parm/${UFS_CONFIGURE} ]]; then - atparse < ${PATHRT}/parm/${UFS_CONFIGURE} > ufs.configure + atparse < "${PATHRT}/parm/${UFS_CONFIGURE}" > ufs.configure else echo "Cannot find file ${UFS_CONFIGURE} set by variable UFS_CONFIGURE" exit 1 fi -if [[ "Q${INPUT_NEST02_NML:-}" != Q ]] ; then - INPES_NEST=$INPES_NEST02; JNPES_NEST=$JNPES_NEST02 - NPX_NEST=$NPX_NEST02; NPY_NEST=$NPY_NEST02 - K_SPLIT_NEST=$K_SPLIT_NEST02; N_SPLIT_NEST=$N_SPLIT_NEST02 - atparse < ${PATHRT}/parm/${INPUT_NEST02_NML} > input_nest02.nml +if [[ "Q${INPUT_NEST02_NML:-}" != Q ]]; then + export INPES_NEST=${INPES_NEST02:-} + export JNPES_NEST=${JNPES_NEST02:-} + export NPX_NEST=${NPX_NEST02:-} + export NPY_NEST=${NPY_NEST02:-} + export K_SPLIT_NEST=${K_SPLIT_NEST02:-} + export N_SPLIT_NEST=${N_SPLIT_NEST02:-} + atparse < "${PATHRT}/parm/${INPUT_NEST02_NML}" > input_nest02.nml else sed -i -e "//,/<\/output_grid_02>/d" model_configure fi -if [[ "Q${INPUT_NEST03_NML:-}" != Q ]] ; then - INPES_NEST=$INPES_NEST03; JNPES_NEST=$JNPES_NEST03 - NPX_NEST=$NPX_NEST03; NPY_NEST=$NPY_NEST03 - K_SPLIT_NEST=$K_SPLIT_NEST03; N_SPLIT_NEST=$N_SPLIT_NEST03 - atparse < ${PATHRT}/parm/${INPUT_NEST03_NML} > input_nest03.nml +if [[ "Q${INPUT_NEST03_NML:-}" != Q ]]; then + export INPES_NEST=${INPES_NEST03:-} + export JNPES_NEST=${JNPES_NEST03:-} + export NPX_NEST=${NPX_NEST03:-} + export NPY_NEST=${NPY_NEST03:-} + export K_SPLIT_NEST=${K_SPLIT_NEST03:-} + export N_SPLIT_NEST=${N_SPLIT_NEST03:-} + atparse < "${PATHRT}/parm/${INPUT_NEST03_NML}" > input_nest03.nml else sed -i -e "//,/<\/output_grid_03>/d" model_configure fi -if [[ "Q${INPUT_NEST04_NML:-}" != Q ]] ; then - INPES_NEST=$INPES_NEST04; JNPES_NEST=$JNPES_NEST04 - NPX_NEST=$NPX_NEST04; NPY_NEST=$NPY_NEST04 - K_SPLIT_NEST=$K_SPLIT_NEST04; N_SPLIT_NEST=$N_SPLIT_NEST04 - atparse < ${PATHRT}/parm/${INPUT_NEST04_NML} > input_nest04.nml +if [[ "Q${INPUT_NEST04_NML:-}" != Q ]]; then + export INPES_NEST=${INPES_NEST04:-} + export JNPES_NEST=${JNPES_NEST04:-} + export NPX_NEST=${NPX_NEST04:-} + export NPY_NEST=${NPY_NEST04:-} + export K_SPLIT_NEST=${K_SPLIT_NEST04:-} + export N_SPLIT_NEST=${N_SPLIT_NEST04:-} + atparse < "${PATHRT}/parm/${INPUT_NEST04_NML}" > input_nest04.nml else sed -i -e "//,/<\/output_grid_04>/d" model_configure fi -if [[ "Q${INPUT_NEST05_NML:-}" != Q ]] ; then - INPES_NEST=$INPES_NEST05; JNPES_NEST=$JNPES_NEST05 - NPX_NEST=$NPX_NEST05; NPY_NEST=$NPY_NEST05 - K_SPLIT_NEST=$K_SPLIT_NEST05; N_SPLIT_NEST=$N_SPLIT_NEST05 - atparse < ${PATHRT}/parm/${INPUT_NEST05_NML} > input_nest05.nml +if [[ "Q${INPUT_NEST05_NML:-}" != Q ]]; then + export INPES_NEST=${INPES_NEST05:-} + export JNPES_NEST=${JNPES_NEST05:-} + export NPX_NEST=${NPX_NEST05:-} + export NPY_NEST=${NPY_NEST05:-} + export K_SPLIT_NEST=${K_SPLIT_NEST05:-} + export N_SPLIT_NEST=${N_SPLIT_NEST05:-} + atparse < "${PATHRT}/parm/${INPUT_NEST05_NML}" > input_nest05.nml else sed -i -e "//,/<\/output_grid_05>/d" model_configure fi -if [[ "Q${INPUT_NEST06_NML:-}" != Q ]] ; then - INPES_NEST=$INPES_NEST06; JNPES_NEST=$JNPES_NEST06 - NPX_NEST=$NPX_NEST06; NPY_NEST=$NPY_NEST06 - K_SPLIT_NEST=$K_SPLIT_NEST06; N_SPLIT_NEST=$N_SPLIT_NEST06 - atparse < ${PATHRT}/parm/${INPUT_NEST06_NML} > input_nest06.nml +if [[ "Q${INPUT_NEST06_NML:-}" != Q ]]; then + export INPES_NEST=${INPES_NEST06:-} + export JNPES_NEST=${JNPES_NEST06:-} + export NPX_NEST=${NPX_NEST06:-} + export NPY_NEST=${NPY_NEST06:-} + export K_SPLIT_NEST=${K_SPLIT_NEST06:-} + export N_SPLIT_NEST=${N_SPLIT_NEST06:-} + atparse < "${PATHRT}/parm/${INPUT_NEST06_NML}" > input_nest06.nml else sed -i -e "//,/<\/output_grid_06>/d" model_configure fi # diag table -if [[ "Q${DIAG_TABLE:-}" != Q ]] ; then - atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE} > diag_table +if [[ "Q${DIAG_TABLE:-}" != Q ]]; then + atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE}" > diag_table fi # Field table -if [[ "Q${FIELD_TABLE:-}" != Q ]] ; then - cp ${PATHRT}/parm/field_table/${FIELD_TABLE} field_table +if [[ "Q${FIELD_TABLE:-}" != Q ]]; then + cp "${PATHRT}/parm/field_table/${FIELD_TABLE}" field_table fi # fix files -if [[ $FV3 == true ]]; then - cp ${INPUTDATA_ROOT}/FV3_fix/*.txt . - cp ${INPUTDATA_ROOT}/FV3_fix/*.f77 . - cp ${INPUTDATA_ROOT}/FV3_fix/*.dat . - cp ${INPUTDATA_ROOT}/FV3_fix/fix_co2_proj/* . - if [[ $TILEDFIX != .true. ]]; then - cp ${INPUTDATA_ROOT}/FV3_fix/*.grb . +if [[ ${FV3} == true ]]; then + cp "${INPUTDATA_ROOT}"/FV3_fix/*.txt . + cp "${INPUTDATA_ROOT}"/FV3_fix/*.f77 . + cp "${INPUTDATA_ROOT}"/FV3_fix/*.dat . + cp "${INPUTDATA_ROOT}"/FV3_fix/fix_co2_proj/* . + if [[ ${TILEDFIX} != .true. ]]; then + cp "${INPUTDATA_ROOT}"/FV3_fix/*.grb . fi fi # NoahMP table file - cp ${PATHRT}/parm/noahmptable.tbl . + cp "${PATHRT}/parm/noahmptable.tbl" . # AQM -if [[ $AQM == .true. ]]; then - cp ${PATHRT}/parm/aqm/aqm.rc . +if [[ ${AQM} == .true. ]]; then + cp "${PATHRT}/parm/aqm/aqm.rc" . fi # Field Dictionary -cp ${PATHRT}/parm/fd_ufs.yaml fd_ufs.yaml +cp "${PATHRT}/parm/fd_ufs.yaml" fd_ufs.yaml # Set up the run directory source ./fv3_run -if [[ $CPLWAV == .true. ]]; then - if [[ $WW3_MULTIGRID = 'true' ]]; then - atparse < ${PATHRT}/parm/ww3_multi.inp.IN > ww3_multi.inp +if [[ ${CPLWAV} == .true. ]]; then + if [[ ${WW3_MULTIGRID} = 'true' ]]; then + atparse < "${PATHRT}/parm/ww3_multi.inp.IN" > ww3_multi.inp else - atparse < ${PATHRT}/parm/ww3_shel.nml.IN > ww3_shel.nml - cp ${PATHRT}/parm/ww3_points.list . + atparse < "${PATHRT}/parm/ww3_shel.nml.IN" > ww3_shel.nml + cp "${PATHRT}/parm/ww3_points.list" . fi fi -if [[ $CPLCHM == .true. ]]; then - cp ${PATHRT}/parm/gocart/*.rc . - atparse < ${PATHRT}/parm/gocart/AERO_HISTORY.rc.IN > AERO_HISTORY.rc +if [[ ${CPLCHM} == .true. ]]; then + cp "${PATHRT}"/parm/gocart/*.rc . + atparse < "${PATHRT}/parm/gocart/AERO_HISTORY.rc.IN" > AERO_HISTORY.rc fi #TODO: this logic needs to be cleaned up for datm applications w/o #ocean or ice -if [[ $DATM_CDEPS = 'true' ]] || [[ $S2S = 'true' ]]; then - if [[ $HAFS = 'false' ]]; then - atparse < ${PATHRT}/parm/ice_in.IN > ice_in - atparse < ${PATHRT}/parm/${MOM6_INPUT:-MOM_input_$OCNRES.IN} > INPUT/MOM_input - atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template} > diag_table - atparse < ${PATHRT}/parm/MOM6_data_table.IN > data_table +if [[ ${DATM_CDEPS} = 'true' ]] || [[ ${S2S} = 'true' ]]; then + if [[ ${HAFS} = 'false' ]]; then + atparse < "${PATHRT}/parm/ice_in.IN" > ice_in + atparse < "${PATHRT}/parm/${MOM6_INPUT:-MOM_input_${OCNRES}.IN}" > INPUT/MOM_input + atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table + atparse < "${PATHRT}/parm/MOM6_data_table.IN" > data_table fi fi -if [[ $HAFS = 'true' ]] && [[ $DATM_CDEPS = 'false' ]]; then - atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template} > diag_table +if [[ ${HAFS} = 'true' ]] && [[ ${DATM_CDEPS} = 'false' ]]; then + atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table fi -if [[ "${DIAG_TABLE_ADDITIONAL:-}Q" != Q ]] ; then +if [[ "${DIAG_TABLE_ADDITIONAL:-}Q" != Q ]]; then # Append diagnostic outputs, to support tests that vary from others # only by adding diagnostics. atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE_ADDITIONAL:-}" >> diag_table fi # ATMAERO -if [[ $CPLCHM == .true. ]] && [[ $S2S = 'false' ]]; then - atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template} > diag_table +if [[ ${CPLCHM} == .true. ]] && [[ ${S2S} = 'false' ]]; then + atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table fi -if [[ $DATM_CDEPS = 'true' ]]; then - atparse < ${PATHRT}/parm/${DATM_IN_CONFIGURE:-datm_in.IN} > datm_in - atparse < ${PATHRT}/parm/${DATM_STREAM_CONFIGURE:-datm.streams.IN} > datm.streams +if [[ ${DATM_CDEPS} = 'true' ]]; then + atparse < "${PATHRT}/parm/${DATM_IN_CONFIGURE:-datm_in.IN}" > datm_in + atparse < "${PATHRT}/parm/${DATM_STREAM_CONFIGURE:-datm.streams.IN}" > datm.streams fi -if [[ $DOCN_CDEPS = 'true' ]]; then - atparse < ${PATHRT}/parm/${DOCN_IN_CONFIGURE:-docn_in.IN} > docn_in - atparse < ${PATHRT}/parm/${DOCN_STREAM_CONFIGURE:-docn.streams.IN} > docn.streams +if [[ ${DOCN_CDEPS} = 'true' ]]; then + atparse < "${PATHRT}/parm/${DOCN_IN_CONFIGURE:-docn_in.IN}" > docn_in + atparse < "${PATHRT}/parm/${DOCN_STREAM_CONFIGURE:-docn.streams.IN}" > docn.streams fi -if [[ $CDEPS_INLINE = 'true' ]]; then - atparse < ${PATHRT}/parm/${CDEPS_INLINE_CONFIGURE:-stream.config.IN} > stream.config +if [[ ${CDEPS_INLINE} = 'true' ]]; then + atparse < "${PATHRT}/parm/${CDEPS_INLINE_CONFIGURE:-stream.config.IN}" > stream.config fi TPN=$(( TPN / THRD )) @@ -319,74 +339,69 @@ fi export PPN export UFS_TASKS -if [[ $SCHEDULER = 'pbs' ]]; then - if [[ -e $PATHRT/fv3_conf/fv3_qsub.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/fv3_qsub.IN_${MACHINE_ID} > job_card +if [[ ${SCHEDULER} = 'pbs' ]]; then + if [[ -e ${PATHRT}/fv3_conf/fv3_qsub.IN_${MACHINE_ID} ]]; then + atparse < "${PATHRT}/fv3_conf/fv3_qsub.IN_${MACHINE_ID}" > job_card else echo "Looking for fv3_conf/fv3_qsub.IN_${MACHINE_ID} but it is not found. Exiting" exit 1 fi -elif [[ $SCHEDULER = 'slurm' ]]; then - if [[ -e $PATHRT/fv3_conf/fv3_slurm.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/fv3_slurm.IN_${MACHINE_ID} > job_card +elif [[ ${SCHEDULER} = 'slurm' ]]; then + if [[ -e ${PATHRT}/fv3_conf/fv3_slurm.IN_${MACHINE_ID} ]]; then + atparse < "${PATHRT}/fv3_conf/fv3_slurm.IN_${MACHINE_ID}" > job_card else echo "Looking for fv3_conf/fv3_slurm.IN_${MACHINE_ID} but it is not found. Exiting" exit 1 fi -elif [[ $SCHEDULER = 'lsf' ]]; then - if [[ -e $PATHRT/fv3_conf/fv3_bsub.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/fv3_bsub.IN_${MACHINE_ID} > job_card - else - echo "Looking for fv3_conf/fv3_bsub.IN_${MACHINE_ID} but it is not found. Exiting" - exit 1 - fi fi ################################################################################ # Submit test job ################################################################################ export OMP_ENV=${OMP_ENV:-""} -if [[ $SCHEDULER = 'none' ]]; then +if [[ ${SCHEDULER} = 'none' ]]; then ulimit -s unlimited - if [[ $CI_TEST = 'true' ]]; then - eval ${OMP_ENV} mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) + if [[ ${CI_TEST} = 'true' ]]; then + eval "${OMP_ENV}" mpiexec -n "${TASKS}" ./fv3.exe >out 2> >(tee err >&3 || true) else - mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) + mpiexec -n "${TASKS}" ./fv3.exe >out 2> >(tee err >&3 || true) fi else - if [[ $ROCOTO = 'false' ]]; then + if [[ ${ROCOTO} = 'false' ]]; then submit_and_wait job_card else chmod u+x job_card - ( ./job_card 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out + ( ./job_card 2>&1 1>&3 3>&- | tee err || true ) 3>&1 1>&2 | tee out # The above shell redirection copies stdout to "out" and stderr to "err" # while still sending them to stdout and stderr. It does this without # relying on bash-specific extensions or non-standard OS features. fi fi - -if [[ $skip_check_results = false ]]; then +skip_check_results=${skip_check_results:-false} +if [[ ${skip_check_results} = false ]]; then check_results || true # The above call will exit with an error on its own and does # not need to cause run_test to TRAP the failure and error out itself. else - echo >> ${RT_LOG} - grep "The total amount of wall time" ${RUNDIR}/out >> ${RT_LOG} - grep "The maximum resident set size" ${RUNDIR}/out >> ${RT_LOG} - echo >> ${RT_LOG} - echo "Test ${TEST_ID} RUN_SUCCESS" >> ${RT_LOG} - echo;echo;echo >> ${RT_LOG} + { + echo + grep "The total amount of wall time" "${RUNDIR}/out" + grep "The maximum resident set size" "${RUNDIR}/out" + echo + echo "Test ${TEST_ID} RUN_SUCCESS" + echo;echo;echo + } >> "${RT_LOG}" fi -if [[ $SCHEDULER != 'none' ]]; then - cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/run_${TEST_ID}_timestamp.txt +if [[ ${SCHEDULER} != 'none' ]]; then + cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt" fi -if [[ $ROCOTO = true ]]; then +if [[ ${ROCOTO} = true ]]; then remove_fail_test fi @@ -394,24 +409,27 @@ fi # End test ################################################################################ -echo " $( date +%s ), ${NODES}" >> ${LOG_DIR}/run_${TEST_ID}_timestamp.txt +date_s=$( date +%s ) +echo " ${date_s}, ${NODES}" >> "${LOG_DIR}/${JBNME}_timestamp.txt" ################################################################################ # Remove RUN_DIRs if they are no longer needed by other tests ################################################################################ +delete_rundir=${delete_rundir:-false} if [[ ${delete_rundir} = true ]]; then keep_run_dir=false while read -r line; do - keep_test=$(echo $line| sed -e 's/^ *//' -e 's/ *$//') - if [[ $TEST_NAME == ${keep_test} ]]; then + keep_test=$(echo "${line}" | sed -e 's/^ *//' -e 's/ *$//') + if [[ ${TEST_NAME} == "${keep_test}" ]]; then keep_run_dir=true fi - done < ${PATHRT}/keep_tests.tmp + done < "${PATHRT}/keep_tests.tmp" if [[ ${keep_run_dir} == false ]]; then - rm -rf ${RUNDIR} + rm -rf "${RUNDIR}" fi fi -elapsed=$SECONDS -echo "Elapsed time $elapsed seconds. Test ${TEST_ID}" +elapsed=${SECONDS} +echo "run_test.sh: Test ${TEST_ID} Completed." +echo "run_test.sh: Test ${TEST_ID} Elapsed time ${elapsed} seconds." From 5d2ca19d0a9ededdfd0199656c2e7fa096bf57a9 Mon Sep 17 00:00:00 2001 From: WenMeng-NOAA <48260754+WenMeng-NOAA@users.noreply.github.com> Date: Fri, 19 Apr 2024 13:59:12 -0400 Subject: [PATCH 02/16] Update upp submodule (#2213) * UFSWM - Update inline post * FV3 - Update upp submodule for inline post --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_acorn.log | 532 +++++++------ tests/logs/RegressionTests_derecho.log | 577 +++++++------- tests/logs/RegressionTests_hera.log | 722 +++++++++--------- tests/logs/RegressionTests_hercules.log | 718 +++++++++-------- tests/logs/RegressionTests_jet.log | 474 ++++++------ tests/logs/RegressionTests_orion.log | 540 +++++++------ tests/logs/RegressionTests_wcoss2.log | 454 +++++------ tests/rt.sh | 9 +- tests/test_changes.list | 13 + 14 files changed, 2065 insertions(+), 2074 deletions(-) diff --git a/FV3 b/FV3 index 979bcab28f..da95cc428d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 979bcab28f63b37411698cd9d23d04d0b0fe3a7e +Subproject commit da95cc428d8b626e99250fd57a4279b4980044f8 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index d230802e95..d10f180066 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240408 +export BL_DATE=20240417 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index afd7aa49d4..ca3a06a77c 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Tue Apr 16 13:22:38 UTC 2024 +Thu Apr 18 13:16:52 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/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 = 272.948924 - 0: The maximum resident set size (KB) = 1272740 + 0: The total amount of wall time = 273.642666 + 0: The maximum resident set size (KB) = 1250952 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/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 = 982.571241 - 0: The maximum resident set size (KB) = 1255996 + 0: The total amount of wall time = 951.737374 + 0: The maximum resident set size (KB) = 1234892 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/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 = 236.873154 - 0: The maximum resident set size (KB) = 1244612 + 0: The total amount of wall time = 231.272825 + 0: The maximum resident set size (KB) = 1232708 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/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 = 237.434427 - 0: The maximum resident set size (KB) = 1248872 + 0: The total amount of wall time = 237.359756 + 0: The maximum resident set size (KB) = 1240676 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/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 = 243.270533 - 0: The maximum resident set size (KB) = 1247316 + 0: The total amount of wall time = 237.824946 + 0: The maximum resident set size (KB) = 1232292 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/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 = 238.823501 - 0: The maximum resident set size (KB) = 1249892 + 0: The total amount of wall time = 240.136006 + 0: The maximum resident set size (KB) = 1230264 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/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 = 243.670791 - 0: The maximum resident set size (KB) = 1247032 + 0: The total amount of wall time = 235.571519 + 0: The maximum resident set size (KB) = 1233056 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Apr 16 14:27:37 UTC 2024 -Elapsed time: 01h:05m:00s. Have a nice day! +Thu Apr 18 14:32:34 UTC 2024 +Elapsed time: 01h:15m:44s. 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 98e918adf8..4890b07943 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 @@ -Tue Apr 16 14:29:26 UTC 2024 +Thu Apr 18 17:53:39 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/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 = 1353.491600 - 0: The maximum resident set size (KB) = 1367696 + 0: The total amount of wall time = 1575.086435 + 0: The maximum resident set size (KB) = 1345260 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/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 = 392.059951 - 0: The maximum resident set size (KB) = 1358372 + 0: The total amount of wall time = 412.335686 + 0: The maximum resident set size (KB) = 1345900 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/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 = 392.603751 - 0: The maximum resident set size (KB) = 1359360 + 0: The total amount of wall time = 416.527929 + 0: The maximum resident set size (KB) = 1341108 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Apr 16 15:32:41 UTC 2024 -Elapsed time: 01h:03m:16s. Have a nice day! +Thu Apr 18 19:21:18 UTC 2024 +Elapsed time: 01h:27m:39s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index b529e6123d..2fbba640bb 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Tue Apr 16 16:39:38 UTC 2024 +Thu Apr 18 15:29:26 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -14,14 +14,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2110.742228 - 0: The maximum resident set size (KB) = 556616 + 0: The total amount of wall time = 2213.723834 + 0: The maximum resident set size (KB) = 542640 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2222.730378 - 0: The maximum resident set size (KB) = 556012 + 0: The total amount of wall time = 2173.765133 + 0: The maximum resident set size (KB) = 539832 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -51,11 +51,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2141.980290 - 0: The maximum resident set size (KB) = 556516 + 0: The total amount of wall time = 2243.570995 + 0: The maximum resident set size (KB) = 541576 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Apr 16 18:36:16 UTC 2024 -Elapsed time: 01h:56m:39s. Have a nice day! +Thu Apr 18 17:37:11 UTC 2024 +Elapsed time: 02h:07m:46s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index d6b98a0857..5766e9df76 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffacfb6d50c9803809d458a42c634f89aaec8861 +d164b650b97d4c4a68ab86c55f2254f29767da2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb) + 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) @@ -26,19 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) NOTES: @@ -47,268 +35,266 @@ 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/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240408 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_118167 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240417 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42534 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:34, 10:14] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [00:08, 01:47](3047 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:44, 16:12] -PASS -- TEST 'cpld_control_gfsv17_intel' [53:08, 02:03](1656 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:38, 01:21](1781 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:06, 01:34](905 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:39, 01:46](1626 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:20, 03:48] -PASS -- TEST 'cpld_debug_gfsv17_intel' [06:23, 01:08](1676 MB) - -PASS -- COMPILE 's2swa_intel' [10:35, 10:17] -PASS -- TEST 'cpld_control_p8_intel' [00:07, 01:17](3077 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [00:07, 01:50](3072 MB) -PASS -- TEST 'cpld_restart_p8_intel' [36:57, 01:43](3132 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [00:07, 01:00](3099 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [42:22, 01:46](3150 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [00:07, 01:34](3385 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [00:07, 01:22](3072 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [00:08, 01:27](2997 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [00:07, 01:17](3076 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [00:07, 00:54](3039 MB) - -PASS -- COMPILE 's2sw_intel' [11:36, 10:52] -PASS -- TEST 'cpld_control_noaero_p8_intel' [59:05, 00:57](1647 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:05, 01:38](1698 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:32, 09:10] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:10, 01:01](1699 MB) - -PASS -- COMPILE 's2s_intel' [09:32, 09:14] -PASS -- TEST 'cpld_control_c48_intel' [01:09, 00:44](2675 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:44, 15:20] -PASS -- TEST 'cpld_control_p8_faster_intel' [54:57, 01:02](3073 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:46, 15:44] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [51:09, 00:38](1669 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:20, 00:33](971 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:54, 01:26](1636 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:19, 03:38] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [06:24, 00:52](1693 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:29, 09:12] -PASS -- TEST 'control_flake_intel' [56:54, 01:12](635 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [56:54, 01:11](584 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [56:54, 01:06](592 MB) -PASS -- TEST 'control_latlon_intel' [56:54, 00:55](586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [56:54, 01:17](585 MB) -PASS -- TEST 'control_c48_intel' [56:53, 00:44](737 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [56:53, 00:51](741 MB) -PASS -- TEST 'control_c192_intel' [56:54, 01:14](708 MB) -PASS -- TEST 'control_c384_intel' [56:58, 01:33](1010 MB) -PASS -- TEST 'control_c384gdas_intel' [56:58, 02:15](1159 MB) -PASS -- TEST 'control_stochy_intel' [56:54, 00:17](597 MB) -PASS -- TEST 'control_stochy_restart_intel' [39:56, 00:21](394 MB) -PASS -- TEST 'control_lndp_intel' [56:54, 00:33](589 MB) -PASS -- TEST 'control_iovr4_intel' [51:09, 00:48](587 MB) -PASS -- TEST 'control_iovr5_intel' [50:08, 00:15](587 MB) -PASS -- TEST 'control_p8_intel' [48:28, 01:44](1561 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [44:30, 01:03](1571 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [43:29, 01:54](1564 MB) -PASS -- TEST 'control_restart_p8_intel' [31:46, 00:54](752 MB) -PASS -- TEST 'control_noqr_p8_intel' [41:05, 01:17](1551 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [14:14, 01:25](758 MB) -PASS -- TEST 'control_decomp_p8_intel' [41:03, 01:35](1561 MB) -PASS -- TEST 'control_2threads_p8_intel' [40:15, 00:45](1652 MB) -PASS -- TEST 'control_p8_lndp_intel' [39:35, 01:07](1561 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [39:30, 01:03](1622 MB) -PASS -- TEST 'control_p8_mynn_intel' [38:02, 01:16](1576 MB) -PASS -- TEST 'merra2_thompson_intel' [37:51, 01:08](1568 MB) -PASS -- TEST 'regional_control_intel' [37:50, 00:20](633 MB) -PASS -- TEST 'regional_restart_intel' [27:53, 00:17](801 MB) -PASS -- TEST 'regional_decomp_intel' [37:47, 01:02](635 MB) -PASS -- TEST 'regional_2threads_intel' [37:41, 00:19](726 MB) -PASS -- TEST 'regional_noquilt_intel' [36:48, 00:58](1165 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [36:15, 00:47](631 MB) -PASS -- TEST 'regional_wofs_intel' [36:06, 01:04](1603 MB) - -PASS -- COMPILE 'ifi_intel' [08:27, 08:00] -PASS -- TEST 'regional_ifi_control_intel' [57:53, 00:24](631 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [57:53, 00:45](630 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [57:54, 01:12](721 MB) - -PASS -- COMPILE 'rrfs_intel' [09:30, 08:42] -PASS -- TEST 'rap_control_intel' [34:53, 01:29](976 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [34:17, 01:14](1150 MB) -PASS -- TEST 'rap_decomp_intel' [34:15, 01:27](977 MB) -PASS -- TEST 'rap_2threads_intel' [33:42, 01:38](1060 MB) -PASS -- TEST 'rap_restart_intel' [03:39, 00:58](843 MB) -PASS -- TEST 'rap_sfcdiff_intel' [31:33, 01:30](969 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [30:56, 00:43](970 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [00:26, 01:17](842 MB) -PASS -- TEST 'hrrr_control_intel' [30:52, 01:32](963 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [29:55, 00:49](967 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [29:54, 01:42](1050 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:47, 00:27](799 MB) -PASS -- TEST 'rrfs_v1beta_intel' [28:37, 00:58](968 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [28:24, 01:21](1932 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [27:26, 00:48](1917 MB) - -PASS -- COMPILE 'csawmg_intel' [09:30, 08:22] -PASS -- TEST 'control_csawmg_intel' [26:52, 00:57](664 MB) -PASS -- TEST 'control_csawmgt_intel' [25:52, 01:01](657 MB) - -PASS -- COMPILE 'wam_intel' [08:27, 08:01] -PASS -- TEST 'control_wam_intel' [25:16, 00:30](338 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:43] -PASS -- TEST 'control_p8_faster_intel' [24:14, 00:52](1560 MB) -PASS -- TEST 'regional_control_faster_intel' [22:09, 00:48](627 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:32, 03:55] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [14:27, 00:58](758 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:20, 00:42](758 MB) -PASS -- TEST 'control_stochy_debug_intel' [11:33, 00:38](766 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:51, 00:41](764 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:27, 00:31](801 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:11, 00:44](804 MB) -PASS -- TEST 'control_ras_debug_intel' [06:32, 00:28](778 MB) -PASS -- TEST 'control_diag_debug_intel' [05:52, 00:56](824 MB) -PASS -- TEST 'control_debug_p8_intel' [05:44, 01:06](1590 MB) -PASS -- TEST 'regional_debug_intel' [03:38, 00:27](672 MB) -PASS -- TEST 'rap_control_debug_intel' [03:27, 01:13](1146 MB) -PASS -- TEST 'hrrr_control_debug_intel' [03:13, 01:04](1137 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [02:12, 01:07](1144 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [01:22, 01:22](1142 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [00:04, 00:51](1146 MB) -PASS -- TEST 'rap_diag_debug_intel' [59:42, 00:41](1230 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [59:37, 00:45](1147 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:35, 00:27](1144 MB) -PASS -- TEST 'rap_lndp_debug_intel' [58:24, 00:40](1149 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:20, 00:41](1146 MB) -PASS -- TEST 'rap_noah_debug_intel' [58:19, 00:48](1144 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [57:49, 00:53](1144 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [57:14, 01:02](1148 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [57:08, 00:44](1136 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [56:33, 01:07](1148 MB) -PASS -- TEST 'rap_flake_debug_intel' [55:56, 00:32](1142 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:52, 01:57](1153 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:28, 02:51] -PASS -- TEST 'control_wam_debug_intel' [55:31, 00:27](373 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [27:03, 08:13] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:23, 01:02](1019 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [55:14, 01:26](855 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [55:12, 01:37](849 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [55:08, 01:10](909 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [54:54, 01:34](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [54:48, 01:25](850 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:09, 01:24](749 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:31, 00:25](729 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:59, 10:14] -PASS -- TEST 'conus13km_control_intel' [37:00, 00:44](1057 MB) -PASS -- TEST 'conus13km_2threads_intel' [30:01, 00:53](1042 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [29:59, 01:08](942 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:46, 08:12] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:12, 00:35](877 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:43, 03:01] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [43:14, 01:07](1027 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [43:14, 00:13](1025 MB) -PASS -- TEST 'conus13km_debug_intel' [43:14, 00:47](1119 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [43:14, 00:39](793 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [43:15, 00:43](1089 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:14, 00:36](1184 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:32, 03:00] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:08, 01:09](1047 MB) - -PASS -- COMPILE 'hafsw_intel' [14:51, 09:23] -PASS -- TEST 'hafs_regional_atm_intel' [36:52, 01:21](677 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [36:52, 00:55](1028 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [36:50, 02:32](724 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [36:50, 01:40](764 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:51, 01:15](784 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:50, 01:39](443 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [36:51, 02:05](467 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [36:51, 00:54](342 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [36:54, 02:33](407 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [36:50, 00:47](475 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [36:50, 01:05](475 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [36:52, 00:51](544 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:51, 00:24](371 MB) -PASS -- TEST 'gnv1_nested_intel' [36:51, 01:29](737 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:38, 03:16] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:05, 01:19](575 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:50, 09:39] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:43, 00:49](592 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:37, 01:15](752 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:45, 09:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:51, 01:30](753 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:46, 08:55] -PASS -- TEST 'hafs_regional_docn_intel' [35:19, 01:39](712 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [35:18, 01:14](699 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:12, 01:09](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [53:02, 09:02] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [36:47, 00:57](759 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [22:00, 00:14](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [36:47, 00:15](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [36:47, 01:08](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [32:30, 00:16](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [26:59, 00:54](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:54, 00:19](759 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [26:34, 00:57](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:30, 01:19](647 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [23:25, 00:42](631 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [23:02, 00:12](747 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [22:53, 00:51](2020 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [21:43, 00:41](2022 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:28, 08:45] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:41, 00:36](749 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:01] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [41:56, 01:07](274 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [41:56, 01:13](411 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [20:16, 01:07](412 MB) - -PASS -- COMPILE 'atml_intel' [10:33, 10:15] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:13, 01:28](1605 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [18:51, 01:35](1607 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:14, 00:19](809 MB) - -PASS -- COMPILE 'atmw_intel' [11:34, 08:50] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [18:41, 01:39](1610 MB) - -PASS -- COMPILE 'atmwm_intel' [10:30, 08:43] -PASS -- TEST 'control_atmwav_intel' [18:23, 00:59](603 MB) - -PASS -- COMPILE 'atmaero_intel' [09:28, 08:31] -PASS -- TEST 'atmaero_control_p8_intel' [17:44, 01:03](2916 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [17:30, 01:35](2977 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:22, 01:15](2989 MB) - -PASS -- COMPILE 'atmaq_intel' [09:29, 08:21] - -PASS -- COMPILE 'atmaq_debug_intel' [03:17, 03:01] -PASS -- TEST 'regional_atmaq_debug_intel' [15:11, 00:56](4493 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:51] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:09, 02:10](3039 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:09] +PASS -- TEST 'cpld_control_gfsv17_intel' [23:12, 03:04](1648 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [52:00, 03:04](1795 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [50:51, 02:59](900 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:45, 03:37](1624 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:42] +PASS -- TEST 'cpld_debug_gfsv17_intel' [36:15, 02:36](1679 MB) + +PASS -- COMPILE 's2swa_intel' [11:26, 10:52] +PASS -- TEST 'cpld_control_p8_intel' [30:07, 02:11](3068 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:07, 02:22](3067 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:32, 01:09](3124 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [30:07, 01:35](3093 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [21:05, 02:22](3145 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [30:07, 02:36](3381 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [30:07, 01:37](3066 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [30:08, 02:05](2990 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:07, 02:27](3070 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [30:07, 02:22](3037 MB) + +PASS -- COMPILE 's2sw_intel' [11:26, 10:30] +PASS -- TEST 'cpld_control_noaero_p8_intel' [30:07, 01:09](1643 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:07, 01:34](1696 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:25, 09:50] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:13, 02:27](1696 MB) + +PASS -- COMPILE 's2s_intel' [10:24, 09:42] +PASS -- TEST 'cpld_control_c48_intel' [31:08, 01:03](2674 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:00] +PASS -- TEST 'cpld_control_p8_faster_intel' [26:04, 02:27](3063 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 16:26] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:29, 02:00](1668 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [52:26, 01:22](966 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [49:45, 02:02](1644 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:19, 04:10] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:15, 01:15](1680 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 10:05] +PASS -- TEST 'control_flake_intel' [25:50, 00:34](634 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [25:50, 00:46](584 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:50, 01:05](590 MB) +PASS -- TEST 'control_latlon_intel' [25:50, 00:59](584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:50, 01:08](584 MB) +PASS -- TEST 'control_c48_intel' [25:49, 01:07](736 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [25:49, 00:45](737 MB) +PASS -- TEST 'control_c192_intel' [25:50, 01:28](699 MB) +PASS -- TEST 'control_c384_intel' [25:54, 02:15](1008 MB) +PASS -- TEST 'control_c384gdas_intel' [25:54, 03:43](1157 MB) +PASS -- TEST 'control_stochy_intel' [25:50, 00:43](590 MB) +PASS -- TEST 'control_stochy_restart_intel' [10:02, 00:24](391 MB) +PASS -- TEST 'control_lndp_intel' [21:40, 00:55](589 MB) +PASS -- TEST 'control_iovr4_intel' [20:50, 00:37](584 MB) +PASS -- TEST 'control_iovr5_intel' [20:42, 01:20](584 MB) +PASS -- TEST 'control_p8_intel' [19:52, 02:22](1564 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [18:50, 02:39](1563 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [18:22, 02:00](1573 MB) +PASS -- TEST 'control_restart_p8_intel' [04:10, 02:45](750 MB) +PASS -- TEST 'control_noqr_p8_intel' [14:51, 01:25](1551 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:53, 01:23](753 MB) +PASS -- TEST 'control_decomp_p8_intel' [14:50, 01:17](1557 MB) +PASS -- TEST 'control_2threads_p8_intel' [12:00, 01:13](1657 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:43, 01:22](1563 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:02, 02:17](1624 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:25, 01:52](1572 MB) +PASS -- TEST 'merra2_thompson_intel' [09:14, 02:37](1575 MB) +PASS -- TEST 'regional_control_intel' [09:01, 00:35](629 MB) +PASS -- TEST 'regional_restart_intel' [59:55, 00:35](797 MB) +PASS -- TEST 'regional_decomp_intel' [09:01, 01:07](628 MB) +PASS -- TEST 'regional_2threads_intel' [08:51, 00:17](723 MB) +PASS -- TEST 'regional_noquilt_intel' [07:59, 00:39](1164 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:56, 00:35](630 MB) +PASS -- TEST 'regional_wofs_intel' [58:51, 00:52](1600 MB) + +PASS -- COMPILE 'ifi_intel' [09:22, 08:40] +PASS -- TEST 'regional_ifi_control_intel' [26:50, 00:36](630 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [26:50, 00:44](628 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [26:51, 00:33](724 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:22] +PASS -- TEST 'rap_control_intel' [07:21, 02:32](973 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 01:18](1150 MB) +PASS -- TEST 'rap_decomp_intel' [06:58, 02:00](974 MB) +PASS -- TEST 'rap_2threads_intel' [05:57, 01:43](1057 MB) +PASS -- TEST 'rap_restart_intel' [42:02, 02:39](845 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:15, 03:03](967 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [03:46, 02:11](967 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [38:26, 02:35](843 MB) +PASS -- TEST 'hrrr_control_intel' [03:43, 02:33](962 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [03:24, 02:19](966 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:12, 02:23](1046 MB) +PASS -- TEST 'hrrr_control_restart_intel' [37:31, 00:42](794 MB) +PASS -- TEST 'rrfs_v1beta_intel' [03:06, 02:17](965 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [02:55, 00:23](1929 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [02:51, 01:19](1918 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:58] +PASS -- TEST 'control_csawmg_intel' [02:22, 00:31](657 MB) +PASS -- TEST 'control_csawmgt_intel' [02:20, 00:27](654 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 08:45] +PASS -- TEST 'control_wam_intel' [02:00, 01:01](329 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 09:09] +PASS -- TEST 'control_p8_faster_intel' [00:38, 02:49](1562 MB) +PASS -- TEST 'regional_control_faster_intel' [00:19, 00:37](627 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:18, 04:28] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [59:56, 00:20](753 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [59:55, 01:22](756 MB) +PASS -- TEST 'control_stochy_debug_intel' [58:04, 00:31](760 MB) +PASS -- TEST 'control_lndp_debug_intel' [57:22, 00:29](758 MB) +PASS -- TEST 'control_csawmg_debug_intel' [54:58, 01:19](801 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [54:40, 00:48](802 MB) +PASS -- TEST 'control_ras_debug_intel' [53:18, 00:38](769 MB) +PASS -- TEST 'control_diag_debug_intel' [53:09, 00:49](818 MB) +PASS -- TEST 'control_debug_p8_intel' [47:51, 01:09](1586 MB) +PASS -- TEST 'regional_debug_intel' [42:00, 00:34](676 MB) +PASS -- TEST 'rap_control_debug_intel' [42:01, 01:10](1140 MB) +PASS -- TEST 'hrrr_control_debug_intel' [39:08, 01:04](1137 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [37:31, 00:32](1145 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [34:52, 01:10](1140 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [34:20, 00:26](1147 MB) +PASS -- TEST 'rap_diag_debug_intel' [33:40, 01:18](1232 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [33:06, 00:26](1140 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [32:55, 00:28](1146 MB) +PASS -- TEST 'rap_lndp_debug_intel' [31:50, 00:38](1151 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:55, 00:36](1140 MB) +PASS -- TEST 'rap_noah_debug_intel' [29:04, 00:29](1141 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [28:44, 00:44](1143 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:49, 00:24](1141 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [27:47, 00:41](1138 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [27:32, 00:39](1145 MB) +PASS -- TEST 'rap_flake_debug_intel' [26:49, 00:30](1147 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:20, 03:06](1147 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:20, 03:12] +PASS -- TEST 'control_wam_debug_intel' [24:19, 00:14](368 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:25, 08:29] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [24:07, 01:33](1014 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:32, 02:53](849 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:06, 04:00](849 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:30, 02:59](909 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [19:44, 03:43](905 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:11, 02:19](849 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:42, 01:52](745 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:13, 00:23](731 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:29, 10:35] +PASS -- TEST 'conus13km_control_intel' [18:09, 01:11](1056 MB) +PASS -- TEST 'conus13km_2threads_intel' [41:19, 00:51](1035 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [40:45, 00:48](935 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:45, 08:35] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:03, 01:03](872 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:40, 03:23] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:46, 00:40](1021 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:42, 00:50](1019 MB) +PASS -- TEST 'conus13km_debug_intel' [16:17, 01:28](1122 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 00:42](807 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:37, 00:43](1086 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:37, 00:24](1193 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [24:39, 03:19] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:20, 01:15](1043 MB) + +PASS -- COMPILE 'hafsw_intel' [31:47, 09:46] +PASS -- TEST 'hafs_regional_atm_intel' [13:58, 01:41](672 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:45, 00:25](1018 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:11, 02:14](714 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [12:05, 01:59](838 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [12:05, 01:26](767 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:22, 01:35](433 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:09, 02:05](461 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [11:06, 01:04](334 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:04, 02:25](395 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:49, 01:19](469 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:38, 01:44](471 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:06, 01:14](529 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:29, 00:41](361 MB) +PASS -- TEST 'gnv1_nested_intel' [04:52, 01:35](738 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [24:37, 03:55] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:35, 00:43](626 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:36, 10:07] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:28, 01:27](581 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:16, 00:53](747 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:38, 09:57] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [03:01, 00:54](748 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:39, 09:19] +PASS -- TEST 'hafs_regional_docn_intel' [00:44, 02:01](711 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [59:50, 01:24](702 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [57:13, 00:15](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:26, 07:56] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:35, 00:27](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [48:11, 00:17](737 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:00, 00:34](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [50:41, 00:17](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [49:39, 01:12](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [48:13, 01:02](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [47:54, 01:02](748 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [47:38, 00:26](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [47:19, 00:56](649 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [46:13, 01:46](636 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [45:16, 00:34](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [44:00, 01:03](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [43:23, 00:34](2017 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:33, 08:21] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [43:11, 00:37](746 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [55:13, 01:02] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [41:51, 00:55](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:14, 01:03](413 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [36:39, 01:02](412 MB) + +PASS -- COMPILE 'atml_intel' [05:24, 10:08] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:35, 02:31](1602 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [38:56, 02:49](1599 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [29:14, 01:07](803 MB) + +PASS -- COMPILE 'atmw_intel' [02:17, 09:05] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:47, 02:11](1603 MB) + +PASS -- COMPILE 'atmwm_intel' [02:19, 09:05] +PASS -- TEST 'control_atmwav_intel' [38:39, 02:04](598 MB) + +PASS -- COMPILE 'atmaero_intel' [05:23, 09:01] +PASS -- TEST 'atmaero_control_p8_intel' [38:34, 01:38](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [38:13, 01:44](2969 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:10, 01:46](2987 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [17:31, 03:26] +PASS -- TEST 'regional_atmaq_debug_intel' [37:37, 02:11](4513 MB) SYNOPSIS: -Starting Date/Time: 20240411 18:49:04 -Ending Date/Time: 20240411 21:11:18 -Total Time: 02h:22m:34s -Compiles Completed: 37/37 +Starting Date/Time: 20240418 17:18:16 +Ending Date/Time: 20240418 19:52:31 +Total Time: 02h:34m:32s +Compiles Completed: 36/36 Tests Completed: 176/176 NOTES: diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index eca5c613b4..47e293388f 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -d43ccd1b047697197e01c095515d268a6e53270f +d164b650b97d4c4a68ab86c55f2254f29767da2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) - b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) + 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) NOTES: @@ -35,278 +35,280 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_119149 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240417 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_115059 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:07] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:54, 04:59](3078 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:17, 20:59] -PASS -- TEST 'cpld_control_gfsv17_intel' [17:42, 13:53](1692 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:45, 15:16](1828 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:27, 07:26](958 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:05, 15:48](1662 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:13, 09:32] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:54, 21:26](1711 MB) - -PASS -- COMPILE 's2swa_intel' [21:15, 19:40] -PASS -- TEST 'cpld_control_p8_intel' [10:53, 05:44](3091 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:53, 05:41](3092 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:23, 03:19](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:18, 05:41](3129 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:11, 03:22](3181 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:04, 05:36](3095 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:22, 04:36](3398 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:15, 05:38](3101 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:03, 08:52](3636 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [18:16, 06:04](3614 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [41:36, 10:07](4343 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [44:57, 07:35](4648 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:53, 05:20](3067 MB) - -PASS -- COMPILE 's2sw_intel' [21:16, 19:11] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:59, 04:16](1681 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:17, 04:15](1736 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:14, 09:16] -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_debug_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:14, 08:54] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:41, 05:15](1708 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:24] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 04:20](1735 MB) - -PASS -- COMPILE 's2s_intel' [15:15, 14:25] -PASS -- TEST 'cpld_control_c48_intel' [08:42, 06:37](2673 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:17, 23:07] -PASS -- TEST 'cpld_control_p8_faster_intel' [09:14, 05:31](3101 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:15, 19:32] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:03, 14:04](1701 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:27](1016 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:13, 16:02](1669 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:19, 08:56] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:23, 23:00](1714 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:17, 12:37] -PASS -- TEST 'control_flake_intel' [05:10, 03:26](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:58, 02:05](621 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:11](627 MB) -PASS -- TEST 'control_latlon_intel' [04:00, 02:05](619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:01, 02:08](622 MB) -PASS -- TEST 'control_c48_intel' [06:53, 05:18](734 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:52, 05:19](737 MB) -PASS -- TEST 'control_c192_intel' [11:08, 07:57](738 MB) -PASS -- TEST 'control_c384_intel' [16:40, 08:20](1062 MB) -PASS -- TEST 'control_c384gdas_intel' [21:25, 07:27](1196 MB) -PASS -- TEST 'control_stochy_intel' [03:00, 01:26](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:56, 00:53](440 MB) -PASS -- TEST 'control_lndp_intel' [03:01, 01:23](629 MB) -PASS -- TEST 'control_iovr4_intel' [04:21, 02:08](624 MB) -PASS -- TEST 'control_iovr5_intel' [04:19, 02:07](622 MB) -PASS -- TEST 'control_p8_intel' [05:07, 02:31](1593 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 02:29](1604 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 02:28](1601 MB) -PASS -- TEST 'control_restart_p8_intel' [03:35, 01:27](802 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:29, 02:31](1595 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:24](803 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:25, 02:35](1601 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:20, 04:23](1604 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:22, 03:20](1654 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:28, 02:33](1605 MB) -PASS -- TEST 'merra2_thompson_intel' [07:25, 03:02](1610 MB) -PASS -- TEST 'regional_control_intel' [06:33, 04:33](632 MB) -PASS -- TEST 'regional_restart_intel' [04:14, 02:36](802 MB) -PASS -- TEST 'regional_decomp_intel' [07:11, 04:46](631 MB) -PASS -- TEST 'regional_noquilt_intel' [08:09, 04:30](1163 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:01, 04:32](625 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:13, 04:32](628 MB) -PASS -- TEST 'regional_wofs_intel' [09:07, 05:38](1599 MB) - -PASS -- COMPILE 'rrfs_intel' [12:13, 11:15] -PASS -- TEST 'rap_control_intel' [09:24, 06:06](1004 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:07, 03:45](1193 MB) -PASS -- TEST 'rap_decomp_intel' [09:20, 06:23](1005 MB) -PASS -- TEST 'rap_restart_intel' [05:36, 03:18](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:53, 06:06](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 06:23](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:36, 04:35](882 MB) -PASS -- TEST 'hrrr_control_intel' [05:59, 03:15](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:52, 03:20](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:59, 02:49](1088 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:14, 01:46](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:35, 06:02](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:00, 07:24](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:08](1952 MB) - -PASS -- COMPILE 'csawmg_intel' [11:13, 10:20] -PASS -- TEST 'control_csawmg_intel' [08:30, 05:51](695 MB) -PASS -- TEST 'control_csawmgt_intel' [08:24, 05:46](692 MB) -PASS -- TEST 'control_ras_intel' [04:48, 02:54](658 MB) - -PASS -- COMPILE 'wam_intel' [10:13, 09:16] -PASS -- TEST 'control_wam_intel' [03:40, 01:54](380 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:24, 12:53] -PASS -- TEST 'control_p8_faster_intel' [05:12, 02:24](1599 MB) -PASS -- TEST 'regional_control_faster_intel' [06:30, 04:17](627 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 08:42] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:35](796 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:33](792 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:41, 02:51](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:49, 02:36](797 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:01](842 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 03:56](838 MB) -PASS -- TEST 'control_ras_debug_intel' [03:49, 02:39](807 MB) -PASS -- TEST 'control_diag_debug_intel' [06:22, 02:47](855 MB) -PASS -- TEST 'control_debug_p8_intel' [04:27, 02:40](1627 MB) -PASS -- TEST 'regional_debug_intel' [18:18, 16:16](669 MB) -PASS -- TEST 'rap_control_debug_intel' [06:49, 04:47](1181 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:43, 04:38](1180 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_gf_debug_intel' [, ]( MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 04:38](1181 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 04:46](1183 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:22, 05:00](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:51, 04:52](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:48, 04:52](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:47, 04:42](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:40, 04:40](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:36](1181 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:51, 04:49](1182 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:45, 07:43](1181 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:50, 04:36](1176 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:52, 05:24](1186 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:49, 04:42](1183 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:08](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:38, 05:30] -PASS -- TEST 'control_wam_debug_intel' [05:38, 04:35](421 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:18, 09:54] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:56, 03:40](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:33, 05:15](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 02:49](886 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 02:55](888 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:27, 03:53](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:03, 01:32](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:19, 12:01] -PASS -- TEST 'conus13km_control_intel' [07:02, 01:56](1088 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:00, 01:01](1087 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:57, 01:09](975 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 10:02] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 03:42](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:49] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:54, 04:35](1056 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:33](1055 MB) -PASS -- TEST 'conus13km_debug_intel' [18:36, 13:48](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:08, 13:38](819 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 13:31](1203 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:16, 05:33] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:50, 04:36](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [17:23, 15:59] -PASS -- TEST 'hafs_regional_atm_intel' [08:08, 04:40](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:58, 05:09](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:01, 06:32](782 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:49, 10:58](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:28, 12:08](810 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:00, 04:42](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 05:50](496 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:17, 02:24](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:22, 06:24](452 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:11, 03:22](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:02, 03:12](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:39, 03:53](590 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:18](427 MB) -PASS -- TEST 'gnv1_nested_intel' [05:53, 03:27](790 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:17, 06:42] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:45, 12:06](614 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:19, 19:45] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:05, 07:12](636 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:36, 07:16](693 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:19, 16:10] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 05:21](683 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:14, 14:17] -PASS -- TEST 'hafs_regional_docn_intel' [09:00, 05:38](756 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 05:40](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:43, 16:14](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:17, 07:41] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:45, 02:31](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:02, 01:36](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:49, 02:24](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:49, 02:27](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:44, 02:27](649 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:30](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:32](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 02:23](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:44, 05:47](690 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:55, 05:46](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:28](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:05, 03:59](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:06, 04:01](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:16, 04:57] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:56, 05:06](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:19, 07:42] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:42, 02:31](760 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:24] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:49, 01:15](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:36, 01:08](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:38, 00:47](450 MB) - -PASS -- COMPILE 'atml_intel' [14:18, 13:08] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:58, 07:38](1632 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:51, 07:42](1627 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB) - -PASS -- COMPILE 'atmw_intel' [14:18, 12:51] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:34](1631 MB) - -PASS -- COMPILE 'atmwm_intel' [14:18, 12:59] -PASS -- TEST 'control_atmwav_intel' [03:28, 01:29](638 MB) - -PASS -- COMPILE 'atmaero_intel' [12:20, 11:11] -PASS -- TEST 'atmaero_control_p8_intel' [07:28, 03:48](2946 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:31, 04:19](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:57, 04:32](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:12, 06:27] -PASS -- TEST 'regional_atmaq_debug_intel' [33:27, 21:57](4534 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:23, 18:57] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:14, 04:51](3076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:23, 20:23] +PASS -- TEST 'cpld_control_gfsv17_intel' [15:55, 13:45](1689 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:14, 14:52](1829 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:00](960 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:51, 15:39](1664 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:21, 08:50] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 21:18](1698 MB) + +PASS -- COMPILE 's2swa_intel' [20:23, 18:58] +PASS -- TEST 'cpld_control_p8_intel' [08:31, 05:32](3095 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 05:32](3091 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:52, 03:13](3151 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:31, 05:30](3127 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:52, 03:14](3182 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:24, 05:28](3093 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:51, 04:29](3387 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:43, 05:30](3102 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:14, 08:36](3633 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:10, 05:36](3615 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:53, 09:33](4346 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:00, 06:23](4648 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:16, 05:10](3068 MB) + +PASS -- COMPILE 's2sw_intel' [19:21, 18:24] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:22, 04:07](1679 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:34, 04:10](1727 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:21, 08:46] +PASS -- TEST 'cpld_debug_p8_intel' [09:51, 07:31](3154 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:19, 08:20] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:32, 05:14](1710 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:22, 14:03] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:52, 04:10](1726 MB) + +PASS -- COMPILE 's2s_intel' [15:21, 13:56] +PASS -- TEST 'cpld_control_c48_intel' [08:05, 06:34](2664 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:22, 22:34] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:08, 05:22](3101 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:20, 19:33] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:07, 13:56](1696 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 07:03](1017 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:46, 15:59](1669 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:19] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:34, 22:59](1717 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:16] +PASS -- TEST 'control_flake_intel' [04:38, 03:22](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:40, 02:01](622 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:45, 02:05](624 MB) +PASS -- TEST 'control_latlon_intel' [03:36, 02:02](621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:43, 02:04](622 MB) +PASS -- TEST 'control_c48_intel' [06:44, 05:14](735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 05:13](741 MB) +PASS -- TEST 'control_c192_intel' [09:09, 07:48](738 MB) +PASS -- TEST 'control_c384_intel' [13:33, 08:00](1064 MB) +PASS -- TEST 'control_c384gdas_intel' [14:39, 07:05](1201 MB) +PASS -- TEST 'control_stochy_intel' [02:39, 01:23](629 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_stochy_restart_intel' [, ]( MB) +PASS -- TEST 'control_lndp_intel' [02:38, 01:18](625 MB) +PASS -- TEST 'control_iovr4_intel' [03:34, 02:02](624 MB) +PASS -- TEST 'control_iovr5_intel' [03:42, 02:05](620 MB) +PASS -- TEST 'control_p8_intel' [04:24, 02:25](1596 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:25, 02:26](1596 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:20, 02:25](1599 MB) +PASS -- TEST 'control_restart_p8_intel' [03:23, 01:22](802 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:13, 02:24](1592 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:21](808 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:12, 02:31](1597 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:16, 04:19](1599 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:39, 03:13](1653 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:33, 02:27](1608 MB) +PASS -- TEST 'merra2_thompson_intel' [05:44, 02:55](1603 MB) +PASS -- TEST 'regional_control_intel' [06:10, 04:29](633 MB) +PASS -- TEST 'regional_restart_intel' [04:21, 02:27](801 MB) +PASS -- TEST 'regional_decomp_intel' [06:07, 04:39](631 MB) +PASS -- TEST 'regional_noquilt_intel' [06:14, 04:21](1159 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:18, 04:23](631 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:13, 04:27](631 MB) +PASS -- TEST 'regional_wofs_intel' [07:12, 05:35](1605 MB) + +PASS -- COMPILE 'rrfs_intel' [11:18, 10:44] +PASS -- TEST 'rap_control_intel' [08:10, 06:06](1005 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 03:46](1193 MB) +PASS -- TEST 'rap_decomp_intel' [09:41, 06:19](1006 MB) +PASS -- TEST 'rap_restart_intel' [05:56, 03:11](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:32, 06:02](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:30, 06:18](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:11, 04:34](880 MB) +PASS -- TEST 'hrrr_control_intel' [05:02, 03:10](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:03, 03:17](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 02:45](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:50, 01:43](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:33, 05:55](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 07:20](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:50, 07:05](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [10:17, 09:49] +PASS -- TEST 'control_csawmg_intel' [07:17, 05:47](692 MB) +PASS -- TEST 'control_csawmgt_intel' [07:08, 05:44](696 MB) +PASS -- TEST 'control_ras_intel' [03:37, 02:48](657 MB) + +PASS -- COMPILE 'wam_intel' [10:19, 09:14] +PASS -- TEST 'control_wam_intel' [03:29, 01:52](384 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:18, 12:13] +PASS -- TEST 'control_p8_faster_intel' [04:35, 02:19](1594 MB) +PASS -- TEST 'regional_control_faster_intel' [07:09, 04:20](628 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:13] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:44, 02:30](795 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:49, 02:29](799 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:34, 02:53](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:31, 02:32](801 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:07, 03:54](841 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:42, 03:56](839 MB) +PASS -- TEST 'control_ras_debug_intel' [03:39, 02:34](810 MB) +PASS -- TEST 'control_diag_debug_intel' [04:05, 02:37](858 MB) +PASS -- TEST 'control_debug_p8_intel' [04:13, 02:38](1629 MB) +PASS -- TEST 'regional_debug_intel' [18:10, 15:45](668 MB) +PASS -- TEST 'rap_control_debug_intel' [05:37, 04:34](1185 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:40, 04:39](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 04:33](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:39, 04:36](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:36](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:59, 04:48](1268 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:38, 04:46](1182 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 04:47](1183 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:41, 04:36](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:33, 04:36](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:32](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:34](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:35, 07:26](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:36](1176 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:27](1184 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:54, 04:40](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:00, 07:50](1182 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:12, 05:03] +PASS -- TEST 'control_wam_debug_intel' [05:31, 04:37](421 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:18, 09:30] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:21, 03:29](1060 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:10, 05:05](884 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:13, 02:44](884 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:02, 02:51](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:00, 03:50](798 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:06, 01:30](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:29] +FAILED: RUN DID NOT COMPLETE -- TEST 'conus13km_control_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'conus13km_2threads_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'conus13km_restart_mismatch_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:17, 09:33] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:39, 03:34](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:23] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:37, 04:29](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:43, 04:28](1056 MB) +PASS -- TEST 'conus13km_debug_intel' [15:40, 13:19](1134 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:27, 13:24](820 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:19, 13:16](1203 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:09] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:39, 04:40](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [17:21, 15:25] +PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:24](723 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:53, 05:04](1067 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 06:17](780 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [12:22, 10:46](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 11:50](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 04:36](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:37, 05:37](493 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:58, 02:16](390 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:39, 06:05](461 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:53, 03:12](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 02:59](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:15, 03:42](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:11](427 MB) +PASS -- TEST 'gnv1_nested_intel' [05:03, 03:15](790 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:18, 06:30] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:14, 11:59](613 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:21, 19:10] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:23, 06:57](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 07:03](691 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:20, 16:09] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:21, 05:18](678 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:22, 13:37] +PASS -- TEST 'hafs_regional_docn_intel' [07:31, 05:26](752 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:18, 05:26](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:09, 16:09](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:22] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:29](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:28](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:18](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:23, 02:21](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:23, 02:23](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:36, 02:27](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:28](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:18](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:49, 05:34](687 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:50, 05:36](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:27](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 03:49](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:36, 03:50](2015 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:20, 04:46] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:01](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:17, 07:27] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:26, 02:26](750 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:19, 02:12] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:03](304 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:32, 00:57](453 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:39](453 MB) + +PASS -- COMPILE 'atml_intel' [13:21, 12:40] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:35, 05:45](1627 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:41, 05:20](1641 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:09, 03:01](855 MB) + +PASS -- COMPILE 'atmw_intel' [13:20, 12:24] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:18, 01:30](1637 MB) + +PASS -- COMPILE 'atmwm_intel' [13:22, 12:24] +PASS -- TEST 'control_atmwav_intel' [02:48, 01:24](638 MB) + +PASS -- COMPILE 'atmaero_intel' [11:17, 10:52] +PASS -- TEST 'atmaero_control_p8_intel' [05:44, 03:35](2947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:12](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:13, 04:24](3012 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:22, 05:59] +PASS -- TEST 'regional_atmaq_debug_intel' [24:23, 21:40](4533 MB) SYNOPSIS: -Starting Date/Time: 20240416 14:22:27 -Ending Date/Time: 20240416 16:12:18 -Total Time: 01h:50m:38s +Starting Date/Time: 20240419 06:31:21 +Ending Date/Time: 20240419 07:56:11 +Total Time: 01h:25m:29s Compiles Completed: 38/38 -Tests Completed: 172/175 +Tests Completed: 171/175 Failed Tests: -* TEST cpld_debug_p8_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_cpld_debug_p8_intel.log -* TEST hrrr_gf_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_hrrr_gf_debug_intel.log -* TEST control_restart_p8_atmlnd_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_control_restart_p8_atmlnd_intel.log +* TEST control_stochy_restart_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/work/zshrader/rt-2213/tests/logs/log_derecho/run_control_stochy_restart_intel.log +* TEST conus13km_control_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/work/zshrader/rt-2213/tests/logs/log_derecho/run_conus13km_control_intel.log +* TEST conus13km_2threads_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST conus13km_restart_mismatch_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -319,7 +321,7 @@ Result: FAILURE ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -d43ccd1b047697197e01c095515d268a6e53270f +d164b650b97d4c4a68ab86c55f2254f29767da2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -329,14 +331,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) - b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) + 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) @@ -344,7 +346,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) NOTES: @@ -353,30 +355,27 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_55240 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240417 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_121217 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_debug_intel' [10:18, 09:13] -PASS -- TEST 'cpld_debug_p8_intel' [11:29, 07:46](3155 MB) +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:18, 11:25] +PASS -- TEST 'conus13km_control_intel' [04:34, 01:49](1084 MB) -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:25] -PASS -- TEST 'hrrr_gf_debug_intel' [05:42, 04:38](1183 MB) - -PASS -- COMPILE 'atml_intel' [14:19, 12:54] -PASS -- TEST 'control_p8_atmlnd_intel' [10:09, 06:20](1641 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 03:54](850 MB) +PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:43] +PASS -- TEST 'control_stochy_intel' [02:37, 01:24](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:50](436 MB) SYNOPSIS: -Starting Date/Time: 20240416 16:43:55 -Ending Date/Time: 20240416 17:16:53 -Total Time: 00h:33m:08s -Compiles Completed: 3/3 -Tests Completed: 4/4 +Starting Date/Time: 20240419 08:26:55 +Ending Date/Time: 20240419 08:46:43 +Total Time: 00h:19m:54s +Compiles Completed: 2/2 +Tests Completed: 3/3 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index a7d21eb746..ee7e6520ee 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -684ddd65adbf26b3a8003e05c8af6c4e19be63f8 +d164b650b97d4c4a68ab86c55f2254f29767da2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,13 +9,13 @@ Submodule hashes used in testing: c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) + 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) NOTES: @@ -24,373 +24,371 @@ 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-20240408 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3831458 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240417 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_4052024 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:07, 12:41] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:31, 05:42](3190 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:07, 17:08] -PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 17:07](1760 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:11, 17:52](2026 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 08:05](1123 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 19:17](1648 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:07, 04:35] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:04, 22:40](1695 MB) - -PASS -- COMPILE 's2swa_intel' [13:07, 12:42] -PASS -- TEST 'cpld_control_p8_intel' [12:25, 06:09](3213 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:35, 05:56](3228 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:25, 03:28](3239 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:29, 05:58](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 03:28](3282 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:22, 05:42](3537 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:22, 05:57](3201 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:20, 04:57](3060 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:34, 05:56](3223 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:17, 10:28](3357 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:05, 06:08](3632 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:39, 09:54](4165 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:16, 06:15](4361 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:24, 05:36](3175 MB) - -PASS -- COMPILE 's2sw_intel' [13:07, 12:22] -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:16, 04:55](1749 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:21, 04:27](1788 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:06, 04:35] -PASS -- TEST 'cpld_debug_p8_intel' [11:08, 08:33](3241 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:06, 04:06] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:44](1761 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:06, 11:28] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:54, 04:25](1790 MB) - -PASS -- COMPILE 's2s_intel' [12:06, 11:29] -PASS -- TEST 'cpld_control_c48_intel' [11:37, 09:27](2834 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:07, 16:23] -PASS -- TEST 'cpld_control_p8_faster_intel' [07:14, 05:34](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:08, 15:01] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:00, 17:19](1777 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:07, 08:04](1175 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:59, 19:44](1685 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:02] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:52, 25:27](1729 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:07, 11:18] -PASS -- TEST 'control_flake_intel' [04:21, 03:19](711 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:20, 02:23](664 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:23, 02:29](659 MB) -PASS -- TEST 'control_latlon_intel' [03:18, 02:25](662 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:25, 02:27](655 MB) -PASS -- TEST 'control_c48_intel' [07:22, 06:22](877 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 06:22](878 MB) -PASS -- TEST 'control_c192_intel' [10:39, 09:09](855 MB) -PASS -- TEST 'control_c384_intel' [11:30, 09:14](1297 MB) -PASS -- TEST 'control_c384gdas_intel' [11:21, 07:58](1404 MB) -PASS -- TEST 'control_stochy_intel' [02:18, 01:36](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:59](503 MB) -PASS -- TEST 'control_lndp_intel' [02:17, 01:34](661 MB) -PASS -- TEST 'control_iovr4_intel' [03:19, 02:26](656 MB) -PASS -- TEST 'control_iovr5_intel' [04:18, 02:25](659 MB) -PASS -- TEST 'control_p8_intel' [04:51, 02:57](1636 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:55, 02:56](1637 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 02:53](1631 MB) -PASS -- TEST 'control_restart_p8_intel' [03:45, 01:36](891 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:51, 02:56](1617 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:51, 01:36](933 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:54, 02:59](1619 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:51, 02:46](1718 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:45, 05:13](1634 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:53, 03:57](1707 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:58, 03:00](1619 MB) -PASS -- TEST 'merra2_thompson_intel' [07:53, 03:34](1623 MB) -PASS -- TEST 'regional_control_intel' [08:38, 05:12](852 MB) -PASS -- TEST 'regional_restart_intel' [03:35, 02:45](1022 MB) -PASS -- TEST 'regional_decomp_intel' [08:35, 05:32](850 MB) -PASS -- TEST 'regional_2threads_intel' [05:36, 03:18](848 MB) -PASS -- TEST 'regional_noquilt_intel' [07:37, 05:12](1360 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:10](855 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:14](853 MB) -PASS -- TEST 'regional_wofs_intel' [09:35, 06:43](1915 MB) - -PASS -- COMPILE 'rrfs_intel' [13:09, 10:37] -PASS -- TEST 'rap_control_intel' [08:35, 07:42](1102 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 04:09](1302 MB) -PASS -- TEST 'rap_decomp_intel' [10:30, 08:07](1043 MB) -PASS -- TEST 'rap_2threads_intel' [09:31, 07:14](1180 MB) -PASS -- TEST 'rap_restart_intel' [04:41, 04:02](1111 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:36, 07:40](1105 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:31, 08:06](1041 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:38, 05:47](1140 MB) -PASS -- TEST 'hrrr_control_intel' [05:31, 03:55](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:05](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:37](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:09](1006 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:41, 07:33](1098 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:21, 09:19](1998 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 08:59](2068 MB) - -PASS -- COMPILE 'csawmg_intel' [12:06, 10:17] -PASS -- TEST 'control_csawmg_intel' [06:36, 06:01](761 MB) -PASS -- TEST 'control_csawmgt_intel' [08:37, 05:58](760 MB) -PASS -- TEST 'control_ras_intel' [04:18, 03:18](748 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:05, 03:38] -PASS -- TEST 'control_csawmg_gnu' [09:44, 08:17](548 MB) -PASS -- TEST 'control_csawmgt_gnu' [09:43, 08:18](552 MB) - -PASS -- COMPILE 'wam_intel' [11:06, 09:37] -PASS -- TEST 'control_wam_intel' [04:18, 02:04](655 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:05, 10:44] -PASS -- TEST 'control_p8_faster_intel' [04:47, 02:36](1645 MB) -PASS -- TEST 'regional_control_faster_intel' [06:37, 04:43](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 04:43] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 02:39](817 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:24, 02:37](802 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:57](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:16, 02:39](822 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:05](877 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:34, 04:04](868 MB) -PASS -- TEST 'control_ras_debug_intel' [03:17, 02:43](823 MB) -PASS -- TEST 'control_diag_debug_intel' [03:27, 02:42](878 MB) -PASS -- TEST 'control_debug_p8_intel' [03:41, 02:53](1623 MB) -PASS -- TEST 'regional_debug_intel' [18:37, 17:16](840 MB) -PASS -- TEST 'rap_control_debug_intel' [05:19, 04:53](1212 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:18, 04:51](1206 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:19, 04:49](1210 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 04:47](1215 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:49](1212 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:31, 05:07](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 05:04](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 05:03](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:56](1206 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:50](1215 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:18, 04:43](1214 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:18, 04:50](1199 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:18, 08:00](1207 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:51](1209 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 06:05](1214 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:16, 04:44](1207 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:34, 08:26](1217 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:05, 02:51] -PASS -- TEST 'control_csawmg_debug_gnu' [03:35, 02:10](533 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [03:32, 02:10](531 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:06, 03:09] -PASS -- TEST 'control_wam_debug_intel' [06:17, 05:01](518 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:05, 10:08] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:58, 03:56](1167 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:32, 06:24](1053 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:32, 03:23](993 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:07](1070 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:08](966 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:37](932 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:35, 04:57](1021 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:20, 01:51](929 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:06, 12:27] -PASS -- TEST 'conus13km_control_intel' [03:51, 02:04](1210 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:35, 00:52](1125 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:13](1111 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:05, 10:18] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:11](987 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 03:21] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 04:52](1093 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:17, 04:39](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [15:44, 14:23](1244 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:42, 14:39](926 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:36, 08:07](1159 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:38, 14:52](1308 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:25] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 05:00](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [12:07, 11:52] -PASS -- TEST 'hafs_regional_atm_intel' [08:07, 04:56](736 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:28, 06:01](1121 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:21, 06:54](830 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:12, 13:26](873 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:25, 15:00](890 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:06, 05:26](497 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 06:38](492 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:35, 02:43](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:33, 07:10](485 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:44, 03:40](536 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:58, 03:32](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:04](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:13](409 MB) -PASS -- TEST 'gnv1_nested_intel' [06:50, 04:06](802 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:05, 03:45] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 12:44](577 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:06, 12:02] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:52, 08:42](677 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:57, 08:41](742 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 11:43] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:56, 06:29](742 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:06, 11:02] -PASS -- TEST 'hafs_regional_docn_intel' [08:07, 06:26](831 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:04, 06:33](833 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:54, 16:40](1211 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:06, 05:53] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:43](1166 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:37](1103 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:39](1035 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 02:39](1017 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:12, 02:36](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:12, 02:41](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:12, 02:44](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:32](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:28, 06:11](1064 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 06:15](1044 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 02:42](1146 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:48](2373 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 04:09](2490 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 02:59] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:14, 06:11](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 05:55] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:43](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:03] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:49](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:52](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:18, 00:31](330 MB) - -PASS -- COMPILE 'atml_intel' [12:07, 12:00] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:59, 04:08](1612 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:56, 04:06](1621 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 02:14](907 MB) - -PASS -- COMPILE 'atmw_intel' [11:07, 10:35] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:42, 01:45](1680 MB) - -PASS -- COMPILE 'atmwm_intel' [11:07, 10:42] -PASS -- TEST 'control_atmwav_intel' [03:25, 01:42](679 MB) - -PASS -- COMPILE 'atmaero_intel' [12:06, 10:45] -PASS -- TEST 'atmaero_control_p8_intel' [05:50, 03:58](3039 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:52](3107 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 05:04](3116 MB) - -PASS -- COMPILE 'atmaq_intel' [11:06, 10:07] - -PASS -- COMPILE 'atmaq_debug_intel' [04:07, 03:33] -PASS -- TEST 'regional_atmaq_debug_intel' [50:41, 21:09](4521 MB) - -PASS -- COMPILE 'atm_gnu' [04:06, 03:36] -PASS -- TEST 'control_c48_gnu' [11:19, 10:46](765 MB) -PASS -- TEST 'control_stochy_gnu' [04:16, 03:25](509 MB) -PASS -- TEST 'control_ras_gnu' [05:16, 04:46](517 MB) -PASS -- TEST 'control_p8_gnu' [07:50, 04:46](1267 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:48, 04:32](1267 MB) -PASS -- TEST 'control_flake_gnu' [12:17, 10:26](553 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:06, 03:42] -PASS -- TEST 'rap_control_gnu' [13:27, 10:58](864 MB) -PASS -- TEST 'rap_decomp_gnu' [13:27, 10:58](861 MB) -PASS -- TEST 'rap_2threads_gnu' [12:31, 09:47](942 MB) -PASS -- TEST 'rap_restart_gnu' [08:34, 05:24](587 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:26, 10:53](861 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:32, 11:02](862 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [11:36, 08:04](587 MB) -PASS -- TEST 'hrrr_control_gnu' [07:23, 05:37](859 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 05:38](842 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:24, 05:04](933 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [08:25, 05:41](864 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:18, 02:53](573 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:21, 02:52](666 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:33, 10:22](859 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:06, 03:34] -PASS -- TEST 'control_diag_debug_gnu' [02:25, 01:37](552 MB) -PASS -- TEST 'regional_debug_gnu' [16:40, 11:28](566 MB) -PASS -- TEST 'rap_control_debug_gnu' [07:17, 02:35](872 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [07:16, 02:37](873 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [07:16, 02:41](875 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [07:15, 02:35](875 MB) -PASS -- TEST 'rap_diag_debug_gnu' [07:31, 02:54](956 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [08:18, 04:07](869 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:17, 02:36](872 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:19, 02:37](864 MB) -PASS -- TEST 'control_ras_debug_gnu' [05:15, 01:32](508 MB) -PASS -- TEST 'control_stochy_debug_gnu' [05:14, 01:48](496 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:34, 01:39](1256 MB) -PASS -- TEST 'rap_flake_debug_gnu' [05:17, 02:35](871 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:57](874 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:31, 04:23](876 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:07, 01:49] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:06, 03:34] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:25, 09:31](716 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 04:59](714 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:36, 08:44](766 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:23, 04:33](757 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:22, 05:00](719 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:33, 06:57](562 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:21, 02:37](545 MB) -PASS -- TEST 'conus13km_control_gnu' [09:48, 03:16](886 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:36, 05:33](896 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:38, 01:47](567 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:07, 05:26] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 05:44](746 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:06, 03:34] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:16, 02:30](724 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [08:15, 02:33](727 MB) -PASS -- TEST 'conus13km_debug_gnu' [12:45, 06:59](901 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [12:41, 06:54](589 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [12:40, 07:21](903 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:39, 06:52](972 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:40] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [08:17, 02:38](743 MB) - -PASS -- COMPILE 's2swa_gnu' [15:07, 14:38] - -PASS -- COMPILE 's2s_gnu' [16:07, 14:12] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:02, 06:38](1354 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:29] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:07, 14:21] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:01, 27:13](1327 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:07, 02:27] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [23:51, 18:18](1324 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:06, 13:56] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [08:14, 03:11](702 MB) +PASS -- COMPILE 's2swa_32bit_intel' [49:12, 12:48] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:23, 05:31](3160 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [52:12, 16:28] +PASS -- TEST 'cpld_control_gfsv17_intel' [19:01, 17:10](1740 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:16, 17:51](2002 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 08:04](1097 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:54, 19:16](1632 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [40:12, 04:45] +PASS -- TEST 'cpld_debug_gfsv17_intel' [37:59, 22:37](1654 MB) + +PASS -- COMPILE 's2swa_intel' [49:12, 12:48] +PASS -- TEST 'cpld_control_p8_intel' [14:17, 05:45](3193 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:27, 05:48](3191 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:31, 03:26](3230 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:17, 05:51](3217 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:30, 03:28](3254 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:17, 05:30](3536 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:17, 05:45](3195 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:21, 04:47](3046 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:27, 05:51](3192 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 10:07](3320 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:25](3587 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:47, 09:27](4100 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:02, 06:28](4347 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:18, 05:26](3160 MB) + +PASS -- COMPILE 's2sw_intel' [39:12, 12:15] +PASS -- TEST 'cpld_control_noaero_p8_intel' [20:59, 04:51](1720 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:03, 04:26](1756 MB) + +PASS -- COMPILE 's2swa_debug_intel' [40:12, 04:45] +PASS -- TEST 'cpld_debug_p8_intel' [26:11, 08:32](3192 MB) + +PASS -- COMPILE 's2sw_debug_intel' [38:12, 04:11] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [23:07, 05:49](1707 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [47:12, 11:39] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:05, 04:19](1773 MB) + +PASS -- COMPILE 's2s_intel' [47:12, 11:39] +PASS -- TEST 'cpld_control_c48_intel' [17:45, 09:34](2815 MB) + +PASS -- COMPILE 's2swa_faster_intel' [52:12, 16:42] +PASS -- TEST 'cpld_control_p8_faster_intel' [07:11, 05:27](3185 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 14:58] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 17:11](1758 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:14, 08:03](1150 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:03, 19:47](1668 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 04:07] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:58, 24:40](1683 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:39] +PASS -- TEST 'control_flake_intel' [04:25, 03:21](684 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:27](639 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:26, 02:30](644 MB) +PASS -- TEST 'control_latlon_intel' [03:23, 02:25](643 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:29](615 MB) +PASS -- TEST 'control_c48_intel' [07:26, 06:23](861 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:24](851 MB) +PASS -- TEST 'control_c192_intel' [09:42, 09:06](839 MB) +PASS -- TEST 'control_c384_intel' [12:42, 09:06](1277 MB) +PASS -- TEST 'control_c384gdas_intel' [12:03, 08:06](1380 MB) +PASS -- TEST 'control_stochy_intel' [02:23, 01:38](650 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:58](487 MB) +PASS -- TEST 'control_lndp_intel' [02:20, 01:35](642 MB) +PASS -- TEST 'control_iovr4_intel' [03:25, 02:27](614 MB) +PASS -- TEST 'control_iovr5_intel' [03:24, 02:26](633 MB) +PASS -- TEST 'control_p8_intel' [04:01, 02:58](1599 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:04, 02:57](1612 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 02:51](1612 MB) +PASS -- TEST 'control_restart_p8_intel' [02:51, 01:36](871 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:54, 02:55](1597 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:39](910 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:53, 03:02](1598 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:50, 02:44](1694 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:13](1609 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:53, 03:58](1683 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:55, 03:00](1616 MB) +PASS -- TEST 'merra2_thompson_intel' [04:54, 03:33](1620 MB) +PASS -- TEST 'regional_control_intel' [06:39, 05:15](830 MB) +PASS -- TEST 'regional_restart_intel' [03:40, 02:44](999 MB) +PASS -- TEST 'regional_decomp_intel' [06:41, 05:30](826 MB) +PASS -- TEST 'regional_2threads_intel' [04:42, 03:15](802 MB) +PASS -- TEST 'regional_noquilt_intel' [06:41, 05:07](1348 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:10](823 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 05:10](838 MB) +PASS -- TEST 'regional_wofs_intel' [07:41, 06:44](1898 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 10:23] +PASS -- TEST 'rap_control_intel' [14:42, 07:46](1081 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:10, 04:05](1270 MB) +PASS -- TEST 'rap_decomp_intel' [15:43, 08:08](1017 MB) +PASS -- TEST 'rap_2threads_intel' [14:42, 07:17](1163 MB) +PASS -- TEST 'rap_restart_intel' [04:48, 04:02](1091 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:44, 07:43](1088 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:42, 08:10](1023 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:49, 05:47](1115 MB) +PASS -- TEST 'hrrr_control_intel' [11:38, 03:58](1023 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [11:38, 04:08](1012 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:41, 03:40](1088 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:35, 02:09](986 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:49, 07:39](1084 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [16:31, 09:21](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:04](2048 MB) + +PASS -- COMPILE 'csawmg_intel' [12:13, 10:24] +PASS -- TEST 'control_csawmg_intel' [06:40, 06:00](739 MB) +PASS -- TEST 'control_csawmgt_intel' [06:38, 05:56](738 MB) +PASS -- TEST 'control_ras_intel' [04:21, 03:14](726 MB) + +PASS -- COMPILE 'csawmg_gnu' [12:12, 03:42] +PASS -- TEST 'control_csawmg_gnu' [09:40, 08:24](533 MB) +PASS -- TEST 'control_csawmgt_gnu' [09:39, 08:04](532 MB) + +PASS -- COMPILE 'wam_intel' [18:12, 10:04] +PASS -- TEST 'control_wam_intel' [02:22, 02:04](639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:12, 10:33] +PASS -- TEST 'control_p8_faster_intel' [03:54, 02:42](1617 MB) +PASS -- TEST 'regional_control_faster_intel' [05:41, 04:43](829 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 04:38] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:25, 02:39](777 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:29, 02:38](775 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:21, 02:57](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:42](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:42, 04:06](828 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [04:40, 04:05](832 MB) +PASS -- TEST 'control_ras_debug_intel' [03:22, 02:47](792 MB) +PASS -- TEST 'control_diag_debug_intel' [03:29, 02:48](837 MB) +PASS -- TEST 'control_debug_p8_intel' [03:44, 02:49](1612 MB) +PASS -- TEST 'regional_debug_intel' [17:42, 17:09](804 MB) +PASS -- TEST 'rap_control_debug_intel' [05:22, 04:54](1174 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:46](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:48](1171 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 04:54](1165 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:47](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:07](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 04:54](1172 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:51](1172 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:59](1167 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 05:01](1173 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:52](1170 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:52](1168 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:52](1168 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:49](1164 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 06:10](1177 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:23, 04:49](1172 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:37, 08:26](1159 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:12, 02:39] +PASS -- TEST 'control_csawmg_debug_gnu' [02:38, 02:08](506 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [03:39, 02:09](509 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:12, 03:10] +PASS -- TEST 'control_wam_debug_intel' [06:21, 04:59](475 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:12, 09:59] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:04, 03:50](1133 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:33, 06:23](1033 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:37, 03:21](973 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 06:05](1085 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 03:10](950 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:35](919 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:41, 04:50](1025 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:32, 01:50](920 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 12:20] +PASS -- TEST 'conus13km_control_intel' [04:57, 02:05](1184 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:42, 00:55](1103 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:16](1096 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 10:18] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:10](970 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 03:20] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1054 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:39](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [16:50, 14:38](1209 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:48, 14:56](935 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:08](1107 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 14:40](1248 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 03:15] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:56](1092 MB) + +PASS -- COMPILE 'hafsw_intel' [12:12, 11:46] +PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:06](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:08](1104 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:19, 06:50](816 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 13:24](836 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:30, 15:11](865 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 05:26](484 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:37](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 02:47](358 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 07:07](472 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:42](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 03:29](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:03](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:13](379 MB) +PASS -- TEST 'gnv1_nested_intel' [06:42, 04:03](776 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:40] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:49, 12:41](526 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:12, 11:53] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:58, 08:42](649 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:03, 08:47](707 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:12, 11:45] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:01, 06:26](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:10] +PASS -- TEST 'hafs_regional_docn_intel' [08:15, 06:29](807 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:28](791 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 15:32](1202 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:13] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:42](1141 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:37](1089 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:37](1015 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:39](1005 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:35](1005 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:38](1135 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1141 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:37](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:50](1045 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:32, 06:26](1033 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:43](1140 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:48](2485 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:49](2496 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 02:57] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:13](1064 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:08] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1144 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:04] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:45](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:52](321 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:30](316 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 11:49] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:13](1596 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:04, 04:15](1597 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:11](888 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 10:53] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:44](1660 MB) + +PASS -- COMPILE 'atmwm_intel' [11:11, 10:59] +PASS -- TEST 'control_atmwav_intel' [02:33, 01:39](654 MB) + +PASS -- COMPILE 'atmaero_intel' [11:11, 10:51] +PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:01](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:58, 04:52](3072 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:43, 05:05](3085 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:30] +PASS -- TEST 'regional_atmaq_debug_intel' [35:54, 33:01](4446 MB) + +PASS -- COMPILE 'atm_gnu' [04:11, 03:38] +PASS -- TEST 'control_c48_gnu' [11:25, 10:46](750 MB) +PASS -- TEST 'control_stochy_gnu' [04:23, 03:23](491 MB) +PASS -- TEST 'control_ras_gnu' [06:22, 04:49](501 MB) +PASS -- TEST 'control_p8_gnu' [05:58, 04:39](1253 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:34](1253 MB) +PASS -- TEST 'control_flake_gnu' [11:22, 10:44](537 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:11, 03:47] +PASS -- TEST 'rap_control_gnu' [11:32, 10:52](848 MB) +PASS -- TEST 'rap_decomp_gnu' [11:32, 10:50](847 MB) +PASS -- TEST 'rap_2threads_gnu' [10:39, 09:50](935 MB) +PASS -- TEST 'rap_restart_gnu' [06:39, 05:24](570 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:45](841 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:31, 10:58](842 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 08:02](572 MB) +PASS -- TEST 'hrrr_control_gnu' [06:33, 05:29](842 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:30](832 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:36, 05:02](915 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:29](838 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:54](556 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:50](648 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:41, 10:38](838 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:35] +PASS -- TEST 'control_diag_debug_gnu' [02:27, 01:44](527 MB) +PASS -- TEST 'regional_debug_gnu' [12:44, 11:47](547 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:32](852 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:29](852 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:33](853 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:34](850 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:41, 02:48](936 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 04:03](849 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:21, 02:35](847 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:30](846 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:32](482 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:42](477 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:41](1237 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:24, 02:32](849 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:46](858 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 04:19](854 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:11, 01:49] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:45] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:31](701 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:34, 04:54](701 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:35](753 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:31, 04:33](738 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:00](701 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:33, 07:03](547 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:30](538 MB) +PASS -- TEST 'conus13km_control_gnu' [04:54, 03:11](872 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:41](879 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:44, 01:52](553 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:19] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](728 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:45] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:33](704 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:21, 02:29](701 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:47, 07:00](872 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:46, 06:56](565 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:03](873 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:41, 06:56](941 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:38] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:38](722 MB) + +PASS -- COMPILE 's2swa_gnu' [15:11, 14:39] + +PASS -- COMPILE 's2s_gnu' [15:12, 14:17] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:06, 06:39](1343 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:30] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:16] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:58, 22:14](1307 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:19] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:55, 16:50](1308 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:19] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:20, 03:05](695 MB) SYNOPSIS: -Starting Date/Time: 20240415 20:36:04 -Ending Date/Time: 20240415 23:17:26 -Total Time: 02h:41m:40s -Compiles Completed: 55/55 +Starting Date/Time: 20240418 03:37:39 +Ending Date/Time: 20240418 05:51:38 +Total Time: 02h:14m:16s +Compiles Completed: 54/54 Tests Completed: 244/244 NOTES: diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 4cd5a52970..caab4b10f9 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -684ddd65adbf26b3a8003e05c8af6c4e19be63f8 +d164b650b97d4c4a68ab86c55f2254f29767da2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) - b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) + 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) NOTES: @@ -35,368 +35,366 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240408 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1998392 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240417 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_463802 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:06, 11:19] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 07:40](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:06, 16:44] -PASS -- TEST 'cpld_control_gfsv17_intel' [15:09, 13:25](1765 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:22, 14:03](2161 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:17, 06:26](1183 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:46, 15:03](1692 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 05:09] -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:03, 20:26](1724 MB) - -PASS -- COMPILE 's2swa_intel' [12:06, 11:26] -PASS -- TEST 'cpld_control_p8_intel' [08:49, 07:35](2074 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 07:41](2065 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:05, 04:13](1985 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:48, 07:42](1982 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:06, 04:16](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:46, 09:11](2495 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:43, 07:32](2064 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:57, 06:16](1892 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:59, 07:45](2058 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:38, 15:36](2803 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:19, 05:56](2926 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:37, 09:20](3629 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:11, 06:10](3621 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 04:54](2051 MB) - -PASS -- COMPILE 's2sw_intel' [11:06, 10:30] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:46, 07:09](1769 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:50, 04:01](1821 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:06, 04:44] -PASS -- TEST 'cpld_debug_p8_intel' [08:01, 06:51](2059 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:06, 04:50] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:54, 04:47](1793 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:06, 08:20] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 04:01](1821 MB) - -PASS -- COMPILE 's2s_intel' [09:06, 08:56] -PASS -- TEST 'cpld_control_c48_intel' [08:35, 07:15](2838 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:06, 12:24] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:59, 07:20](2079 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:58] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:52, 13:48](1808 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:20, 06:45](1268 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:02, 15:53](1730 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 04:38] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:45, 21:37](1779 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:06, 08:14] -PASS -- TEST 'control_flake_intel' [03:16, 02:54](712 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:19, 02:07](664 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:22, 02:14](685 MB) -PASS -- TEST 'control_latlon_intel' [03:16, 02:10](665 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:23, 02:12](662 MB) -PASS -- TEST 'control_c48_intel' [06:18, 05:48](853 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 05:44](850 MB) -PASS -- TEST 'control_c192_intel' [08:24, 07:55](968 MB) -PASS -- TEST 'control_c384_intel' [10:01, 08:18](1433 MB) -PASS -- TEST 'control_c384gdas_intel' [09:50, 07:16](1519 MB) -PASS -- TEST 'control_stochy_intel' [02:15, 01:29](670 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:20, 00:51](537 MB) -PASS -- TEST 'control_lndp_intel' [02:15, 01:24](668 MB) -PASS -- TEST 'control_iovr4_intel' [03:18, 02:11](659 MB) -PASS -- TEST 'control_iovr5_intel' [03:17, 02:05](671 MB) -PASS -- TEST 'control_p8_intel' [03:43, 02:34](1637 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:45, 02:41](1642 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:45, 02:36](1629 MB) -PASS -- TEST 'control_restart_p8_intel' [02:48, 01:24](918 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:35, 02:34](1624 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:22](990 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:34, 02:42](1621 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:34, 02:28](1732 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:27, 04:31](1632 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 03:29](1718 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:42, 02:36](1644 MB) -PASS -- TEST 'merra2_thompson_intel' [03:51, 02:57](1655 MB) -PASS -- TEST 'regional_control_intel' [05:23, 04:38](959 MB) -PASS -- TEST 'regional_restart_intel' [03:23, 02:29](1105 MB) -PASS -- TEST 'regional_decomp_intel' [05:20, 04:40](945 MB) -PASS -- TEST 'regional_2threads_intel' [03:20, 02:54](921 MB) -PASS -- TEST 'regional_noquilt_intel' [05:22, 04:18](1489 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:25, 04:27](956 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 04:32](958 MB) -PASS -- TEST 'regional_wofs_intel' [06:21, 05:35](2102 MB) - -PASS -- COMPILE 'rrfs_intel' [08:06, 07:44] -PASS -- TEST 'rap_control_intel' [07:43, 06:30](1198 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:39, 03:25](1421 MB) -PASS -- TEST 'rap_decomp_intel' [07:37, 06:46](1164 MB) -PASS -- TEST 'rap_2threads_intel' [07:37, 06:10](1357 MB) -PASS -- TEST 'rap_restart_intel' [04:53, 03:32](1156 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:38, 06:32](1201 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:57](1128 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 04:57](1190 MB) -PASS -- TEST 'hrrr_control_intel' [04:41, 03:23](1089 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 03:26](1037 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:30, 03:06](1121 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:21, 01:55](1026 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:51, 06:20](1216 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:43](2009 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:27](2175 MB) - -PASS -- COMPILE 'csawmg_intel' [08:06, 07:37] -PASS -- TEST 'control_csawmg_intel' [06:28, 05:24](801 MB) -PASS -- TEST 'control_csawmgt_intel' [06:29, 05:22](806 MB) -PASS -- TEST 'control_ras_intel' [03:14, 02:51](808 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:06, 04:25] -PASS -- TEST 'control_csawmg_gnu' [07:28, 06:31](810 MB) -PASS -- TEST 'control_csawmgt_gnu' [07:23, 06:26](813 MB) - -PASS -- COMPILE 'wam_intel' [07:06, 06:59] -PASS -- TEST 'control_wam_intel' [02:19, 01:51](793 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 10:08] -PASS -- TEST 'control_p8_faster_intel' [03:52, 02:19](1637 MB) -PASS -- TEST 'regional_control_faster_intel' [05:22, 04:09](954 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 04:08] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:15, 02:16](828 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:18, 02:14](826 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:13, 02:27](829 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:12, 02:15](825 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:21, 03:23](876 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [04:28, 03:21](874 MB) -PASS -- TEST 'control_ras_debug_intel' [03:13, 02:16](841 MB) -PASS -- TEST 'control_diag_debug_intel' [03:19, 02:18](880 MB) -PASS -- TEST 'control_debug_p8_intel' [03:34, 02:21](1653 MB) -PASS -- TEST 'regional_debug_intel' [17:29, 16:33](887 MB) -PASS -- TEST 'rap_control_debug_intel' [04:17, 03:57](1210 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:14, 03:51](1221 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:13, 03:57](1220 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:13, 03:59](1226 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 04:03](1221 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:27, 04:12](1293 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:13, 04:08](1222 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:13, 04:08](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:13, 04:00](1214 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:14, 04:03](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:13, 03:56](1215 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 04:05](1226 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:13, 06:28](1210 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:12, 04:02](1209 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:12, 04:50](1217 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:12, 03:57](1214 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:47, 06:50](1219 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:05, 03:48] -PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 01:52](787 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [02:21, 01:46](788 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:05, 03:04] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 07:16] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:42, 03:20](1274 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:43, 05:25](1145 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:44, 02:54](1026 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:26, 05:10](1278 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 02:44](1045 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:53, 03:05](985 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:49, 04:04](1091 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:23, 01:35](963 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:06, 09:54] -PASS -- TEST 'conus13km_control_intel' [02:34, 01:48](1294 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:27, 00:43](1200 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:22, 01:00](1164 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 07:32] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 03:46](1089 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:18] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 03:55](1097 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:15, 03:51](1096 MB) -PASS -- TEST 'conus13km_debug_intel' [12:31, 11:34](1328 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:27, 11:57](987 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:26, 06:38](1239 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 11:31](1407 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 03:28] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:16, 04:02](1147 MB) - -PASS -- COMPILE 'hafsw_intel' [11:06, 10:47] -PASS -- TEST 'hafs_regional_atm_intel' [07:02, 05:18](878 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:15, 05:05](1277 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:08, 06:21](948 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:59, 13:59](988 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 15:00](1019 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:48, 05:36](603 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:10, 06:59](616 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:39, 02:50](434 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:03, 08:11](545 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:45, 04:02](611 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:42, 03:51](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:58](677 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:21, 01:31](452 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:06, 03:29] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 11:24](633 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:06, 11:27] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:45, 17:13](727 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 15:48](811 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 10:11] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:53, 10:32](796 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:08, 09:56] -PASS -- TEST 'hafs_regional_docn_intel' [11:00, 05:45](961 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:59, 05:39](953 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:41, 16:27](1336 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:05, 06:19] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:12, 02:10](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:22](1088 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:10, 02:05](1012 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:11, 02:06](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:07](1004 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:10, 02:10](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:10, 02:16](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:10, 02:10](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 05:00](1146 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:40, 04:54](1144 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:13](1151 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:10, 03:03](2434 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:05](2441 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 03:24] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:12, 05:12](1077 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:05, 05:42] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:10, 02:09](1119 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:05, 00:42] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:22, 01:07](335 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:57](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:16, 00:34](561 MB) - -PASS -- COMPILE 'atml_intel' [09:05, 08:24] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:06, 05:46](1646 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:03, 05:52](1650 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:35, 03:03](940 MB) - -PASS -- COMPILE 'atmw_intel' [11:07, 10:08] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:40](1687 MB) - -PASS -- COMPILE 'atmwm_intel' [11:16, 10:19] -PASS -- TEST 'control_atmwav_intel' [03:39, 01:39](693 MB) - -PASS -- COMPILE 'atmaero_intel' [08:05, 07:41] -PASS -- TEST 'atmaero_control_p8_intel' [05:43, 03:39](1785 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:24](1825 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:40, 04:34](1815 MB) - -PASS -- COMPILE 'atmaq_intel' [08:05, 07:08] - -PASS -- COMPILE 'atmaq_debug_intel' [04:05, 03:15] -PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 17:14](4574 MB) - -PASS -- COMPILE 'atm_gnu' [06:08, 05:45] -PASS -- TEST 'control_c48_gnu' [10:26, 09:33](881 MB) -PASS -- TEST 'control_stochy_gnu' [03:13, 02:15](730 MB) -PASS -- TEST 'control_ras_gnu' [04:13, 03:41](732 MB) -PASS -- TEST 'control_p8_gnu' [04:49, 03:38](1511 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:37, 03:31](1514 MB) -PASS -- TEST 'control_flake_gnu' [05:12, 04:22](806 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:05, 04:22] -PASS -- TEST 'rap_control_gnu' [09:44, 07:45](1090 MB) -PASS -- TEST 'rap_decomp_gnu' [09:32, 07:42](1086 MB) -PASS -- TEST 'rap_2threads_gnu' [09:31, 07:18](1128 MB) -PASS -- TEST 'rap_restart_gnu' [05:41, 04:07](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:34, 07:41](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:34, 07:54](1089 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:37, 05:52](885 MB) -PASS -- TEST 'hrrr_control_gnu' [06:29, 04:02](1076 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:44, 04:02](1139 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:31, 03:36](1042 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 03:58](1077 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:23, 02:07](879 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:07](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:48, 07:43](1085 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:06, 06:38] -PASS -- TEST 'control_diag_debug_gnu' [02:19, 01:15](775 MB) -PASS -- TEST 'regional_debug_gnu' [07:26, 06:26](923 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:14, 02:01](1101 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:14, 01:57](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:11, 02:01](1098 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:12, 02:01](1096 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:21, 02:05](1270 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:12, 03:10](1096 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:13, 01:59](1097 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:14, 01:59](1093 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:13, 01:14](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:12, 01:16](725 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:29, 01:16](1505 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:13, 01:58](1099 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:12, 02:16](1099 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:43, 03:20](1103 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:06, 02:58] -PASS -- TEST 'control_wam_debug_gnu' [02:18, 02:00](501 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:06, 05:32] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:42, 07:21](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:52, 03:54](959 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:30, 07:00](968 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:34, 03:33](873 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:34, 03:54](953 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:44, 05:29](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:19, 02:07](856 MB) -PASS -- TEST 'conus13km_control_gnu' [04:35, 02:43](1266 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:21, 01:10](1172 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:22, 01:40](948 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:05, 08:47] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:27, 04:28](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:05, 11:39] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:13, 01:59](978 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:13, 02:01](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:36](1282 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:27, 05:47](963 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:22, 03:18](1191 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:22, 05:33](1350 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:05, 12:07] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:13, 02:01](1003 MB) - -PASS -- COMPILE 's2swa_gnu' [17:05, 16:14] - -PASS -- COMPILE 's2s_gnu' [17:07, 16:10] - -PASS -- COMPILE 's2swa_debug_gnu' [13:06, 12:15] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:06, 16:57] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:07, 11:13] - -PASS -- COMPILE 'datm_cdeps_gnu' [18:05, 17:47] +PASS -- COMPILE 's2swa_32bit_intel' [12:11, 12:05] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:17, 07:41](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:31] +PASS -- TEST 'cpld_control_gfsv17_intel' [15:37, 14:00](1769 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:54, 14:47](2192 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:49, 06:35](1175 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:07, 15:11](1694 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:52] +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 20:59](1724 MB) + +PASS -- COMPILE 's2swa_intel' [12:11, 11:36] +PASS -- TEST 'cpld_control_p8_intel' [09:09, 07:51](2062 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:23, 07:39](2066 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:36, 04:11](1964 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:09, 07:50](1985 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:37, 04:18](1732 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:09, 09:24](2485 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:04, 07:46](2060 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:18, 06:33](1890 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:21, 07:47](2091 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:07, 15:38](2983 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:52, 05:51](2924 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:44, 09:11](3639 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:28, 06:20](3625 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:14, 05:11](2049 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 12:09] +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:10, 07:13](1789 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:21, 04:04](1818 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:52] +PASS -- TEST 'cpld_debug_p8_intel' [08:31, 07:02](2044 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:49] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:16, 04:51](1792 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:19] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:16, 04:08](1829 MB) + +PASS -- COMPILE 's2s_intel' [10:11, 09:29] +PASS -- TEST 'cpld_control_c48_intel' [08:55, 07:20](2839 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:11, 14:06] +PASS -- TEST 'cpld_control_p8_faster_intel' [09:23, 07:30](2067 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:12] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:09, 13:52](1825 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:25, 06:41](1287 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:13, 15:37](1745 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:17] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:09, 21:34](1774 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:19] +PASS -- TEST 'control_flake_intel' [03:22, 02:58](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:18](663 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:29, 02:20](682 MB) +PASS -- TEST 'control_latlon_intel' [03:22, 02:17](670 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:16](675 MB) +PASS -- TEST 'control_c48_intel' [06:29, 05:50](858 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:30, 05:46](860 MB) +PASS -- TEST 'control_c192_intel' [08:32, 07:58](987 MB) +PASS -- TEST 'control_c384_intel' [10:13, 08:14](1447 MB) +PASS -- TEST 'control_c384gdas_intel' [10:10, 07:39](1524 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:33](674 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:30, 00:54](534 MB) +PASS -- TEST 'control_lndp_intel' [02:22, 01:27](663 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:11](661 MB) +PASS -- TEST 'control_iovr5_intel' [03:23, 02:11](666 MB) +PASS -- TEST 'control_p8_intel' [04:04, 02:36](1635 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 02:33](1633 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:13, 02:30](1647 MB) +PASS -- TEST 'control_restart_p8_intel' [03:02, 01:23](916 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:00, 02:28](1622 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:02, 01:24](974 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:53, 02:37](1632 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:53, 02:25](1729 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:37, 04:37](1647 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:02, 03:27](1716 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:00, 02:41](1643 MB) +PASS -- TEST 'merra2_thompson_intel' [05:13, 03:09](1653 MB) +PASS -- TEST 'regional_control_intel' [05:36, 04:41](956 MB) +PASS -- TEST 'regional_restart_intel' [03:34, 02:39](1100 MB) +PASS -- TEST 'regional_decomp_intel' [05:34, 04:46](948 MB) +PASS -- TEST 'regional_2threads_intel' [03:34, 02:54](910 MB) +PASS -- TEST 'regional_noquilt_intel' [05:38, 04:22](1486 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 04:31](960 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 04:33](955 MB) +PASS -- TEST 'regional_wofs_intel' [06:37, 05:54](2078 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 07:51] +PASS -- TEST 'rap_control_intel' [07:56, 06:48](1204 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:58, 03:36](1400 MB) +PASS -- TEST 'rap_decomp_intel' [07:47, 06:52](1135 MB) +PASS -- TEST 'rap_2threads_intel' [07:42, 06:29](1370 MB) +PASS -- TEST 'rap_restart_intel' [05:00, 03:25](1155 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:58, 06:49](1194 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:49, 06:55](1166 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:00, 05:02](1189 MB) +PASS -- TEST 'hrrr_control_intel' [04:50, 03:25](1064 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 03:35](1052 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:40, 03:10](1129 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:32, 01:53](1022 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:10, 06:24](1205 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:24, 07:42](2012 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:24, 07:27](2155 MB) + +PASS -- COMPILE 'csawmg_intel' [08:11, 07:34] +PASS -- TEST 'control_csawmg_intel' [06:35, 05:20](811 MB) +PASS -- TEST 'control_csawmgt_intel' [06:35, 05:20](834 MB) +PASS -- TEST 'control_ras_intel' [03:20, 03:00](807 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:10, 05:23] +PASS -- TEST 'control_csawmg_gnu' [07:39, 06:39](813 MB) +PASS -- TEST 'control_csawmgt_gnu' [07:38, 06:31](813 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 07:07] +PASS -- TEST 'control_wam_intel' [02:26, 01:59](785 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:56] +PASS -- TEST 'control_p8_faster_intel' [04:06, 02:26](1632 MB) +PASS -- TEST 'regional_control_faster_intel' [05:35, 04:21](957 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:17] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:26, 02:19](824 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:28, 02:18](822 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:20, 02:33](831 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:17](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:34, 03:26](869 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [04:34, 03:24](878 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 02:18](843 MB) +PASS -- TEST 'control_diag_debug_intel' [03:26, 02:21](881 MB) +PASS -- TEST 'control_debug_p8_intel' [03:47, 02:24](1664 MB) +PASS -- TEST 'regional_debug_intel' [15:35, 14:11](894 MB) +PASS -- TEST 'rap_control_debug_intel' [04:22, 04:00](1216 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:21, 03:58](1227 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:21, 03:58](1224 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:20, 04:02](1218 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:20, 04:00](1221 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:30, 04:16](1298 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:21, 04:04](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:20, 04:06](1210 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:03](1210 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:20, 04:03](1208 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:22, 03:55](1212 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:23, 04:01](1215 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:24, 06:31](1210 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:21, 04:00](1220 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:24, 04:57](1226 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:21, 04:01](1222 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 06:50](1220 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:54] +PASS -- TEST 'control_csawmg_debug_gnu' [02:32, 01:45](791 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [02:33, 01:43](788 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:11, 02:41] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:57] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:01, 03:20](1268 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:59, 05:33](1140 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:10, 02:52](1031 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:40, 05:20](1295 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:45, 02:42](1045 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:03](977 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:58, 04:12](1097 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:26, 01:37](963 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 09:27] +PASS -- TEST 'conus13km_control_intel' [02:48, 01:50](1297 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:45](1195 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:35, 01:02](1155 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 07:14] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:38, 03:44](1068 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:14] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:22, 03:58](1089 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:21, 03:51](1087 MB) +PASS -- TEST 'conus13km_debug_intel' [12:40, 11:34](1346 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:36, 12:07](997 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:34, 06:35](1242 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:33, 11:36](1406 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:57] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 04:05](1145 MB) + +PASS -- COMPILE 'hafsw_intel' [11:11, 10:28] +PASS -- TEST 'hafs_regional_atm_intel' [07:11, 05:35](873 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:20](1273 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:24, 06:23](953 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:07, 13:58](985 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:18, 14:59](1003 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:02, 05:43](604 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:09](615 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:53, 02:58](432 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 08:15](542 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:51, 03:58](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:43](621 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:59, 04:48](681 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:30](447 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:12] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:54, 11:20](626 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:07, 16:44](738 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:02, 17:49](812 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:50] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:09, 09:36](793 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:11, 10:41] +PASS -- TEST 'hafs_regional_docn_intel' [07:09, 05:24](962 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:08, 05:29](914 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 16:35](1339 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:18] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:17, 02:09](1155 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:19](1092 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:06](1008 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:18, 02:07](1011 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:16, 02:06](1007 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:10](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:17, 02:07](1133 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:05](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:00, 05:03](1154 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:01, 04:58](1141 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:14, 02:09](1144 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:19, 03:04](2380 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:03](2439 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:48] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:14](1072 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:15] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:10](1150 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:35, 01:02](334 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:58](561 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:36](558 MB) + +PASS -- COMPILE 'atml_intel' [08:10, 07:48] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:21, 06:03](1652 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:23, 05:57](1633 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 03:16](938 MB) + +PASS -- COMPILE 'atmw_intel' [10:10, 09:43] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:04, 01:37](1697 MB) + +PASS -- COMPILE 'atmwm_intel' [10:10, 09:52] +PASS -- TEST 'control_atmwav_intel' [02:53, 01:31](685 MB) + +PASS -- COMPILE 'atmaero_intel' [08:11, 07:26] +PASS -- TEST 'atmaero_control_p8_intel' [05:00, 03:38](1786 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:58, 04:25](1819 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:48, 04:27](1822 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:22] +PASS -- TEST 'regional_atmaq_debug_intel' [18:38, 16:44](4605 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:36] +PASS -- TEST 'control_c48_gnu' [10:35, 09:34](864 MB) +PASS -- TEST 'control_stochy_gnu' [03:24, 02:15](729 MB) +PASS -- TEST 'control_ras_gnu' [04:20, 03:40](737 MB) +PASS -- TEST 'control_p8_gnu' [05:06, 03:38](1515 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:51, 03:32](1524 MB) +PASS -- TEST 'control_flake_gnu' [05:22, 04:27](811 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 04:26] +PASS -- TEST 'rap_control_gnu' [08:44, 07:52](1087 MB) +PASS -- TEST 'rap_decomp_gnu' [08:46, 07:55](1088 MB) +PASS -- TEST 'rap_2threads_gnu' [07:58, 07:09](1124 MB) +PASS -- TEST 'rap_restart_gnu' [04:54, 03:55](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:53, 07:54](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:48, 07:56](1090 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:00, 05:46](884 MB) +PASS -- TEST 'hrrr_control_gnu' [05:46, 04:09](1076 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:01, 04:08](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:44, 03:40](1046 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:43, 04:01](1073 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:25, 02:06](891 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:26, 02:07](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:12, 07:48](1084 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:11, 05:31] +PASS -- TEST 'control_diag_debug_gnu' [02:23, 01:17](774 MB) +PASS -- TEST 'regional_debug_gnu' [07:37, 06:26](927 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:20, 02:04](1096 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:21, 01:55](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:18, 02:01](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:03](1096 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:04](1269 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:19, 03:03](1093 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:21, 01:57](1094 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:09](1091 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:10](723 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:21](721 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:44, 01:15](1501 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:59](1096 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:19](1099 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:03, 03:17](1102 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:48] +PASS -- TEST 'control_wam_debug_gnu' [02:27, 02:00](500 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:59] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:41, 07:19](965 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:56, 03:53](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:52, 06:54](970 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:37](890 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:44, 03:55](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:53, 05:28](858 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:31, 02:02](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:48, 02:33](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:33, 01:04](1172 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:34, 01:33](926 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:15] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:41, 04:24](988 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 07:04] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:21, 02:00](975 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:24, 01:56](968 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:38, 05:21](1280 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:39, 05:37](955 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:32, 03:14](1190 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:34, 05:24](1346 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:00] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:20, 02:00](1001 MB) + +PASS -- COMPILE 's2swa_gnu' [16:11, 15:26] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:54] + +PASS -- COMPILE 's2swa_debug_gnu' [06:11, 05:39] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:56] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 05:18] + +PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:55] SYNOPSIS: -Starting Date/Time: 20240415 18:42:06 -Ending Date/Time: 20240415 19:56:08 -Total Time: 01h:14m:28s -Compiles Completed: 55/55 +Starting Date/Time: 20240418 10:13:12 +Ending Date/Time: 20240418 11:26:55 +Total Time: 01h:14m:32s +Compiles Completed: 54/54 Tests Completed: 239/239 NOTES: diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 2f7f41cd46..eb45f3bfc5 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -684ddd65adbf26b3a8003e05c8af6c4e19be63f8 +d164b650b97d4c4a68ab86c55f2254f29767da2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) - b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) + 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) NOTES: @@ -35,245 +35,245 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240408 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3732077 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240417 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3966856 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [39:09, 38:13] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [34:43, 06:59](1795 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:09, 47:30] -PASS -- TEST 'cpld_control_gfsv17_intel' [21:35, 20:47](1664 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:24, 22:19](1892 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [47:58, 10:20](996 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [00:54, 23:54](1629 MB) - -PASS -- COMPILE 's2swa_intel' [18:12, 38:37] -PASS -- TEST 'cpld_control_p8_intel' [45:42, 07:28](1831 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:05, 07:26](1825 MB) -PASS -- TEST 'cpld_restart_p8_intel' [53:54, 04:29](1716 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:44, 07:38](1841 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:31, 04:41](1726 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [05:52, 07:05](2277 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [29:36, 07:38](1823 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:35, 06:19](1774 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [38:01, 07:27](1834 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [59:55, 07:03](1796 MB) - -PASS -- COMPILE 's2sw_intel' [36:08, 35:07] -PASS -- TEST 'cpld_control_noaero_p8_intel' [23:43, 05:51](1668 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:54, 05:42](1713 MB) - -PASS -- COMPILE 's2swa_debug_intel' [41:09, 05:02] -PASS -- TEST 'cpld_debug_p8_intel' [43:47, 10:28](1843 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:07, 04:50] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:28, 07:12](1680 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [41:10, 32:02] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:05, 05:45](1717 MB) - -PASS -- COMPILE 's2s_intel' [56:11, 32:30] -PASS -- TEST 'cpld_control_c48_intel' [24:03, 12:42](2796 MB) - -PASS -- COMPILE 's2swa_faster_intel' [09:16, 32:58] -PASS -- TEST 'cpld_control_p8_faster_intel' [48:59, 07:08](1834 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [52:15, 52:26] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:44, 20:58](1682 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:35, 10:19](1030 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:32, 22:25](1651 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [34:08, 05:05] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:16, 32:09](1690 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [02:10, 34:28] -PASS -- TEST 'control_flake_intel' [31:42, 04:43](646 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [29:46, 03:15](595 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:52, 03:43](607 MB) -PASS -- TEST 'control_latlon_intel' [30:38, 03:31](597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:48, 03:24](593 MB) -PASS -- TEST 'control_c48_intel' [18:38, 10:09](843 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:39, 10:09](845 MB) -PASS -- TEST 'control_c192_intel' [40:02, 12:43](730 MB) -PASS -- TEST 'control_c384_intel' [43:40, 15:57](897 MB) -PASS -- TEST 'control_c384gdas_intel' [43:15, 13:51](1020 MB) -PASS -- TEST 'control_stochy_intel' [26:38, 02:15](603 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:26, 01:22](435 MB) -PASS -- TEST 'control_lndp_intel' [29:42, 02:21](603 MB) -PASS -- TEST 'control_iovr4_intel' [30:42, 03:34](594 MB) -PASS -- TEST 'control_iovr5_intel' [26:41, 03:21](594 MB) -PASS -- TEST 'control_p8_intel' [32:33, 04:09](1575 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [33:00, 04:10](1571 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [31:58, 04:03](1581 MB) -PASS -- TEST 'control_restart_p8_intel' [04:14, 02:34](816 MB) -PASS -- TEST 'control_noqr_p8_intel' [31:48, 04:04](1571 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:34, 02:17](832 MB) -PASS -- TEST 'control_decomp_p8_intel' [30:37, 04:15](1562 MB) -PASS -- TEST 'control_2threads_p8_intel' [23:29, 03:52](1663 MB) -PASS -- TEST 'control_p8_lndp_intel' [16:05, 07:21](1570 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:06, 05:21](1634 MB) -PASS -- TEST 'control_p8_mynn_intel' [01:02, 04:03](1575 MB) -PASS -- TEST 'merra2_thompson_intel' [40:04, 04:50](1590 MB) -PASS -- TEST 'regional_control_intel' [32:49, 07:22](758 MB) -PASS -- TEST 'regional_restart_intel' [04:36, 03:52](931 MB) -PASS -- TEST 'regional_decomp_intel' [09:36, 07:31](759 MB) -PASS -- TEST 'regional_2threads_intel' [05:34, 04:28](752 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:47, 07:05](766 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 07:03](761 MB) - -PASS -- COMPILE 'rrfs_intel' [48:09, 32:19] -PASS -- TEST 'rap_control_intel' [12:12, 10:04](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:11, 05:49](1213 MB) -PASS -- TEST 'rap_decomp_intel' [12:02, 10:44](989 MB) -PASS -- TEST 'rap_2threads_intel' [11:54, 09:43](1084 MB) -PASS -- TEST 'rap_restart_intel' [07:31, 05:13](993 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:17, 10:14](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:56, 10:55](992 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:24, 07:28](1002 MB) -PASS -- TEST 'hrrr_control_intel' [07:17, 05:28](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:02, 05:27](977 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:57, 05:05](1063 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:48](916 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:26, 10:18](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:31, 12:27](1942 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:25, 12:19](1931 MB) - -PASS -- COMPILE 'csawmg_intel' [04:11, 30:57] -PASS -- TEST 'control_csawmg_intel' [08:38, 08:02](692 MB) -PASS -- TEST 'control_csawmgt_intel' [08:40, 07:57](699 MB) -PASS -- TEST 'control_ras_intel' [05:22, 04:28](667 MB) - -PASS -- COMPILE 'wam_intel' [38:08, 29:46] -PASS -- TEST 'control_wam_intel' [03:18, 02:49](502 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [46:09, 31:20] -PASS -- TEST 'control_p8_faster_intel' [05:34, 03:37](1581 MB) -PASS -- TEST 'regional_control_faster_intel' [07:36, 06:27](766 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:06, 05:40] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 03:22](764 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:24](758 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:44](759 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:20, 03:22](763 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:34, 05:14](806 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 05:10](805 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 03:24](774 MB) -PASS -- TEST 'control_diag_debug_intel' [04:26, 03:26](818 MB) -PASS -- TEST 'control_debug_p8_intel' [04:55, 03:34](1594 MB) -PASS -- TEST 'regional_debug_intel' [22:44, 21:43](775 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 06:02](1154 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:21, 05:55](1149 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 05:59](1150 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 06:01](1152 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 06:01](1157 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:30, 06:17](1231 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 06:07](1151 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 06:07](1149 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:20, 06:04](1148 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 06:01](1154 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:18, 05:54](1149 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 06:00](1152 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:19, 09:48](1145 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 05:56](1140 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:20, 07:18](1152 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:18, 06:00](1145 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:24, 10:26](1156 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:06, 03:45] -PASS -- TEST 'control_wam_debug_intel' [07:20, 06:08](468 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:08, 30:02] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 05:07](1070 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:56, 08:08](900 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:02, 04:23](868 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:16, 07:49](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 04:01](907 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:07, 04:38](856 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:12](897 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:20](849 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:10, 42:24] -PASS -- TEST 'conus13km_control_intel' [04:02, 02:54](1105 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:37, 01:30](1052 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:34, 01:33](1023 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:08, 30:23] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:46, 05:30](903 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [15:07, 03:55] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 05:58](1030 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:51](1027 MB) -PASS -- TEST 'conus13km_debug_intel' [19:47, 18:22](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:42, 18:35](880 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:38, 10:41](1083 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:42, 18:26](1203 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:06, 03:53] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:18, 06:03](1071 MB) - -PASS -- COMPILE 'hafsw_intel' [39:08, 34:41] -PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:59](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:23, 06:24](1085 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:35, 09:12](776 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 16:07](800 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:26, 17:54](830 MB) -PASS -- TEST 'gnv1_nested_intel' [07:09, 05:32](776 MB) - -PASS -- COMPILE 'hafs_all_intel' [02:10, 31:56] -PASS -- TEST 'hafs_regional_docn_intel' [10:22, 08:35](766 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:21, 08:34](755 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [33:08, 08:05] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 03:37](1060 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 02:11](1031 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 03:31](920 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 03:37](927 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 03:40](925 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 03:37](1056 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 03:39](1063 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 03:31](927 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:07, 07:52](885 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 07:47](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 03:36](1063 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 05:01](2401 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 05:03](2356 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [24:07, 03:23] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 07:57](1017 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [18:07, 08:15] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:36](1061 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 02:06] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 01:34](230 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 01:17](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:49](257 MB) - -PASS -- COMPILE 'atml_intel' [35:11, 34:22] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:42, 07:52](1613 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 07:45](1603 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 04:09](862 MB) - -PASS -- COMPILE 'atmw_intel' [33:08, 32:49] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:24, 02:17](1612 MB) - -PASS -- COMPILE 'atmwm_intel' [32:09, 31:12] -PASS -- TEST 'control_atmwav_intel' [04:10, 02:11](613 MB) - -PASS -- COMPILE 'atmaero_intel' [31:08, 30:28] -PASS -- TEST 'atmaero_control_p8_intel' [07:22, 05:08](1702 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:20, 06:16](1719 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:07, 06:37](1729 MB) +PASS -- COMPILE 's2swa_32bit_intel' [39:13, 38:26] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:48, 06:51](1794 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:15, 54:26] +PASS -- TEST 'cpld_control_gfsv17_intel' [23:09, 20:41](1664 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:14, 22:13](1889 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 10:18](995 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:36, 23:50](1636 MB) + +PASS -- COMPILE 's2swa_intel' [39:13, 38:43] +PASS -- TEST 'cpld_control_p8_intel' [09:27, 07:34](1830 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:48, 07:31](1818 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:43, 04:22](1709 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 07:41](1848 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:40, 04:25](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:17, 07:13](2281 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:19, 07:36](1825 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:40, 06:23](1774 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:48, 07:35](1819 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:40, 07:03](1789 MB) + +PASS -- COMPILE 's2sw_intel' [37:13, 36:41] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:25, 05:50](1654 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:37, 05:40](1710 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:26] +PASS -- TEST 'cpld_debug_p8_intel' [12:58, 10:33](1845 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:34] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:24, 07:18](1677 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:14] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 05:37](1714 MB) + +PASS -- COMPILE 's2s_intel' [33:13, 32:29] +PASS -- TEST 'cpld_control_c48_intel' [14:12, 12:57](2781 MB) + +PASS -- COMPILE 's2swa_faster_intel' [33:18, 32:39] +PASS -- TEST 'cpld_control_p8_faster_intel' [10:21, 07:05](1826 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:54] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:47, 20:49](1686 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:52, 10:23](1035 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:36, 24:23](1643 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:49] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:30, 32:09](1694 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [35:14, 34:49] +PASS -- TEST 'control_flake_intel' [17:34, 04:25](643 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:34, 03:18](592 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:39, 03:29](602 MB) +PASS -- TEST 'control_latlon_intel' [04:30, 03:21](600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:42, 03:25](600 MB) +PASS -- TEST 'control_c48_intel' [10:41, 10:08](852 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:43, 10:05](849 MB) +PASS -- TEST 'control_c192_intel' [23:04, 12:26](721 MB) +PASS -- TEST 'control_c384_intel' [20:55, 15:45](907 MB) +PASS -- TEST 'control_c384gdas_intel' [21:48, 13:26](1018 MB) +PASS -- TEST 'control_stochy_intel' [03:34, 02:11](600 MB) +PASS -- TEST 'control_stochy_restart_intel' [16:29, 01:18](427 MB) +PASS -- TEST 'control_lndp_intel' [16:34, 02:03](608 MB) +PASS -- TEST 'control_iovr4_intel' [04:33, 03:20](601 MB) +PASS -- TEST 'control_iovr5_intel' [04:34, 03:21](598 MB) +PASS -- TEST 'control_p8_intel' [20:46, 03:55](1571 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [24:46, 03:56](1579 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [20:45, 03:54](1577 MB) +PASS -- TEST 'control_restart_p8_intel' [09:20, 02:07](817 MB) +PASS -- TEST 'control_noqr_p8_intel' [21:49, 03:55](1568 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [09:24, 02:03](836 MB) +PASS -- TEST 'control_decomp_p8_intel' [24:37, 04:01](1552 MB) +PASS -- TEST 'control_2threads_p8_intel' [24:38, 03:41](1665 MB) +PASS -- TEST 'control_p8_lndp_intel' [27:21, 06:54](1575 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [26:04, 05:02](1636 MB) +PASS -- TEST 'control_p8_mynn_intel' [24:56, 04:01](1572 MB) +PASS -- TEST 'merra2_thompson_intel' [25:09, 04:32](1591 MB) +PASS -- TEST 'regional_control_intel' [10:09, 07:03](762 MB) +PASS -- TEST 'regional_restart_intel' [15:42, 03:48](934 MB) +PASS -- TEST 'regional_decomp_intel' [10:09, 07:29](761 MB) +PASS -- TEST 'regional_2threads_intel' [06:09, 04:24](757 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:17, 07:04](757 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [22:44, 06:58](759 MB) + +PASS -- COMPILE 'rrfs_intel' [33:14, 33:02] +PASS -- TEST 'rap_control_intel' [27:33, 10:04](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:11, 05:38](1199 MB) +PASS -- TEST 'rap_decomp_intel' [28:18, 10:37](986 MB) +PASS -- TEST 'rap_2threads_intel' [28:11, 09:33](1084 MB) +PASS -- TEST 'rap_restart_intel' [08:09, 05:13](991 MB) +PASS -- TEST 'rap_sfcdiff_intel' [28:29, 10:03](984 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [25:02, 10:40](979 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:20, 07:32](998 MB) +PASS -- TEST 'hrrr_control_intel' [19:25, 05:14](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [19:00, 05:21](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [18:58, 04:44](1062 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:47](915 MB) +PASS -- TEST 'rrfs_v1beta_intel' [20:34, 09:55](988 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [20:31, 12:25](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:32, 12:00](1939 MB) + +PASS -- COMPILE 'csawmg_intel' [32:13, 31:14] +PASS -- TEST 'control_csawmg_intel' [15:42, 08:02](694 MB) +PASS -- TEST 'control_csawmgt_intel' [13:50, 07:53](690 MB) +PASS -- TEST 'control_ras_intel' [09:26, 04:22](662 MB) + +PASS -- COMPILE 'wam_intel' [30:13, 29:53] +PASS -- TEST 'control_wam_intel' [03:22, 02:43](500 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [47:15, 31:38] +PASS -- TEST 'control_p8_faster_intel' [06:31, 03:36](1580 MB) +PASS -- TEST 'regional_control_faster_intel' [08:45, 07:28](770 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 05:31] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:35, 03:22](757 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:40, 03:21](761 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:45](765 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:31, 03:25](764 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:53, 05:14](809 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [07:53, 05:08](810 MB) +PASS -- TEST 'control_ras_debug_intel' [04:32, 03:25](754 MB) +PASS -- TEST 'control_diag_debug_intel' [04:37, 03:31](816 MB) +PASS -- TEST 'control_debug_p8_intel' [07:05, 03:34](1585 MB) +PASS -- TEST 'regional_debug_intel' [25:58, 21:43](778 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 05:59](1153 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:34, 05:55](1151 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 05:58](1152 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:03](1147 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:02](1160 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:19](1229 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:30, 06:09](1149 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:23, 06:09](1133 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:27, 06:03](1146 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 05:59](1153 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:05](1137 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:31, 06:04](1145 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:28, 09:53](1153 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:27, 05:57](1147 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 07:20](1148 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:23, 06:02](1143 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:27, 10:23](1155 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:11, 04:04] +PASS -- TEST 'control_wam_debug_intel' [08:27, 06:09](447 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:03] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:17, 05:11](1073 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:21, 08:20](898 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:07, 04:22](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:59, 07:51](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:11, 04:01](909 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:42, 04:33](852 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:14, 06:13](902 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:21](842 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 42:33] +PASS -- TEST 'conus13km_control_intel' [05:07, 02:56](1104 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:24](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:49, 01:35](1021 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:14, 30:36] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 05:29](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:06] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 06:03](1029 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 05:52](1025 MB) +PASS -- TEST 'conus13km_debug_intel' [21:00, 18:23](1126 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:58, 18:38](850 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:50, 10:44](1086 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:50, 18:37](1202 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:08] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:43, 06:08](1072 MB) + +PASS -- COMPILE 'hafsw_intel' [35:14, 34:45] +PASS -- TEST 'hafs_regional_atm_intel' [08:27, 06:56](711 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:37, 06:23](1087 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:53, 09:12](776 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:34, 16:19](802 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:57, 18:03](822 MB) +PASS -- TEST 'gnv1_nested_intel' [07:27, 05:40](774 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:13, 31:56] +PASS -- TEST 'hafs_regional_docn_intel' [11:22, 08:35](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:26, 08:38](748 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:54] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:35](1063 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:13](1031 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:31](917 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 03:34](919 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:35](923 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:37](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:52](1065 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:32](916 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 07:57](890 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:19, 07:47](845 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1058 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:25, 05:02](2333 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:25, 05:05](2345 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:21] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 07:58](1006 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 07:55] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 03:32](1059 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:52] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:37](230 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:27, 01:20](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:50](256 MB) + +PASS -- COMPILE 'atml_intel' [34:12, 33:57] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:51, 07:54](1606 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:50, 07:58](1605 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:55, 04:18](858 MB) + +PASS -- COMPILE 'atmw_intel' [32:13, 31:45] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:29, 02:16](1605 MB) + +PASS -- COMPILE 'atmwm_intel' [31:13, 31:00] +PASS -- TEST 'control_atmwav_intel' [04:14, 02:14](611 MB) + +PASS -- COMPILE 'atmaero_intel' [31:13, 30:56] +PASS -- TEST 'atmaero_control_p8_intel' [08:27, 05:21](1677 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:31, 06:20](1725 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:14, 06:44](1736 MB) SYNOPSIS: -Starting Date/Time: 20240415 20:38:03 -Ending Date/Time: 20240416 01:26:35 -Total Time: 04h:49m:06s +Starting Date/Time: 20240418 00:51:47 +Ending Date/Time: 20240418 04:31:24 +Total Time: 03h:40m:17s Compiles Completed: 33/33 Tests Completed: 161/161 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index e925006e5b..46908d3ba4 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -684ddd65adbf26b3a8003e05c8af6c4e19be63f8 +d164b650b97d4c4a68ab86c55f2254f29767da2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) - b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) + 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) NOTES: @@ -35,279 +35,277 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_215054 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240417 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_337338 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:06, 14:25] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:18, 05:08](3178 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:06, 21:07] -PASS -- TEST 'cpld_control_gfsv17_intel' [18:54, 16:32](1749 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:10, 17:26](2033 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:01, 08:23](1114 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:46, 18:34](1647 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 05:46] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:51, 22:56](1696 MB) - -PASS -- COMPILE 's2swa_intel' [17:06, 16:53] -PASS -- TEST 'cpld_control_p8_intel' [07:38, 05:35](3208 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:58, 05:36](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:54, 03:22](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:38, 05:41](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:54, 03:37](3269 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:38, 06:06](3553 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:38, 05:43](3205 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:33, 04:41](3069 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:56, 05:42](3209 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:46, 10:00](3338 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:33, 06:29](3618 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:07, 11:01](4117 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:52, 07:01](4368 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:44, 05:20](3173 MB) - -PASS -- COMPILE 's2sw_intel' [16:06, 15:26] -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:59, 04:26](1731 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:15, 04:24](1782 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:06, 05:42] -PASS -- TEST 'cpld_debug_p8_intel' [10:23, 08:36](3251 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:06, 05:57] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:06, 05:57](1754 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:06, 13:16] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:23, 04:22](1780 MB) - -PASS -- COMPILE 's2s_intel' [14:06, 13:16] -PASS -- TEST 'cpld_control_c48_intel' [08:52, 08:03](2830 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:06, 20:58] -PASS -- TEST 'cpld_control_p8_faster_intel' [07:37, 05:24](3215 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 18:17] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:16, 16:40](1773 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 08:11](1176 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:11, 18:35](1678 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 05:08] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:02, 24:38](1722 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:06, 13:08] -PASS -- TEST 'control_flake_intel' [04:23, 03:31](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:27](652 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:28, 02:34](653 MB) -PASS -- TEST 'control_latlon_intel' [03:21, 02:29](655 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:30](654 MB) -PASS -- TEST 'control_c48_intel' [06:26, 06:00](874 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:27, 05:58](871 MB) -PASS -- TEST 'control_c192_intel' [10:41, 09:10](858 MB) -PASS -- TEST 'control_c384_intel' [12:35, 10:13](1247 MB) -PASS -- TEST 'control_c384gdas_intel' [13:04, 09:04](1358 MB) -PASS -- TEST 'control_stochy_intel' [02:23, 01:47](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:23, 01:02](505 MB) -PASS -- TEST 'control_lndp_intel' [02:23, 01:37](658 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:30](650 MB) -PASS -- TEST 'control_iovr5_intel' [03:20, 02:34](650 MB) -PASS -- TEST 'control_p8_intel' [04:08, 02:58](1626 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:10, 02:58](1628 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:34, 02:48](1628 MB) -PASS -- TEST 'control_restart_p8_intel' [03:07, 01:46](898 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:16, 03:00](1620 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:39](934 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:14, 02:59](1616 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:03](1669 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:59, 05:15](1624 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:37, 03:58](1693 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:05](1629 MB) -PASS -- TEST 'merra2_thompson_intel' [05:40, 03:37](1635 MB) -PASS -- TEST 'regional_control_intel' [06:46, 05:22](856 MB) -PASS -- TEST 'regional_restart_intel' [03:37, 02:46](1026 MB) -PASS -- TEST 'regional_decomp_intel' [06:38, 05:38](852 MB) -PASS -- TEST 'regional_2threads_intel' [04:41, 03:48](847 MB) -PASS -- TEST 'regional_noquilt_intel' [06:42, 05:12](1365 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 05:13](862 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 05:13](860 MB) -PASS -- TEST 'regional_wofs_intel' [07:37, 06:32](1924 MB) - -PASS -- COMPILE 'rrfs_intel' [12:06, 11:51] -PASS -- TEST 'rap_control_intel' [10:29, 08:03](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 04:47](1290 MB) -PASS -- TEST 'rap_decomp_intel' [10:25, 08:04](1033 MB) -PASS -- TEST 'rap_2threads_intel' [10:23, 07:53](1185 MB) -PASS -- TEST 'rap_restart_intel' [05:19, 04:02](1111 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:44](1104 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:27, 08:07](1037 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 05:52](1131 MB) -PASS -- TEST 'hrrr_control_intel' [05:18, 03:59](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:55, 04:11](1015 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:59, 03:21](1109 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:21, 02:16](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:24, 07:35](1098 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:08](1993 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:24, 08:58](2072 MB) - -PASS -- COMPILE 'csawmg_intel' [12:06, 11:07] -PASS -- TEST 'control_csawmg_intel' [07:48, 06:05](743 MB) -PASS -- TEST 'control_csawmgt_intel' [06:41, 05:59](746 MB) -PASS -- TEST 'control_ras_intel' [04:20, 03:19](741 MB) - -PASS -- COMPILE 'wam_intel' [11:06, 10:40] -PASS -- TEST 'control_wam_intel' [03:23, 02:06](654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:06, 13:13] -PASS -- TEST 'control_p8_faster_intel' [04:32, 02:42](1621 MB) -PASS -- TEST 'regional_control_faster_intel' [06:43, 04:40](850 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 04:37] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:51](818 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:28, 02:45](814 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:09](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:49](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:38, 04:17](867 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:35, 04:16](863 MB) -PASS -- TEST 'control_ras_debug_intel' [03:22, 02:52](831 MB) -PASS -- TEST 'control_diag_debug_intel' [03:23, 02:47](872 MB) -PASS -- TEST 'control_debug_p8_intel' [03:43, 03:01](1640 MB) -PASS -- TEST 'regional_debug_intel' [18:39, 17:40](849 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 05:33](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:20, 05:05](1197 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 05:04](1202 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:57](1207 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 05:01](1202 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:20](1283 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 05:04](1197 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 05:03](1197 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:04](1208 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:56](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:18, 05:09](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 05:04](1202 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:16, 07:46](1204 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:57](1205 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 05:45](1209 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:53](1206 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:23, 08:17](1204 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:05, 03:46] -PASS -- TEST 'control_wam_debug_intel' [05:18, 05:01](511 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 11:21] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:55, 04:32](1159 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:23, 06:23](1050 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:20, 03:24](976 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 06:46](1095 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:10, 02:59](964 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:15, 03:36](927 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:15, 04:55](972 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 01:52](941 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:06, 13:34] -PASS -- TEST 'conus13km_control_intel' [03:58, 02:07](1201 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:43, 01:04](1120 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:40, 01:19](1111 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 12:38] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 04:13](993 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 03:19] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:54](1085 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:17, 04:51](1090 MB) -PASS -- TEST 'conus13km_debug_intel' [16:44, 14:22](1228 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:42, 14:19](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:38, 08:26](1152 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:02](1296 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 03:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 05:01](1130 MB) - -PASS -- COMPILE 'hafsw_intel' [13:06, 12:57] -PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:31](736 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:51](1116 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 07:03](835 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 12:50](866 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:24, 14:41](884 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:51, 06:23](506 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:37](521 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 03:09](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:20, 08:00](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 04:10](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:56](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 05:19](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 01:36](405 MB) -PASS -- TEST 'gnv1_nested_intel' [05:53, 04:38](802 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:06, 04:00] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:12](562 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:06, 13:46] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:59, 09:36](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:11, 09:41](743 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:06, 13:37] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 06:54](732 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:06, 12:20] -PASS -- TEST 'hafs_regional_docn_intel' [10:10, 06:24](829 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:24](819 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:00](1213 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:06, 07:06] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:40](1132 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:41](1051 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:32](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:38](1012 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:34](1016 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:44](1124 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:39](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:12, 02:31](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 05:57](1059 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:09, 05:58](1037 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:36](1138 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 03:32](2496 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:13, 03:37](2495 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 03:34] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:14, 06:13](1065 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:06, 09:58] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:38](1126 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:58] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:24, 00:52](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:18, 00:51](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:33](322 MB) - -PASS -- COMPILE 'atml_intel' [13:06, 12:36] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:35, 04:12](1612 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:36, 04:17](1600 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 02:31](889 MB) - -PASS -- COMPILE 'atmw_intel' [12:06, 11:29] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 01:46](1663 MB) - -PASS -- COMPILE 'atmwm_intel' [14:06, 14:04] -PASS -- TEST 'control_atmwav_intel' [03:06, 01:42](674 MB) - -PASS -- COMPILE 'atmaero_intel' [12:06, 11:05] -PASS -- TEST 'atmaero_control_p8_intel' [05:18, 04:02](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:14, 04:49](3100 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:07](3112 MB) - -PASS -- COMPILE 'atmaq_intel' [12:06, 11:11] - -PASS -- COMPILE 'atmaq_debug_intel' [04:06, 03:25] -PASS -- TEST 'regional_atmaq_debug_intel' [23:39, 21:26](4572 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:56] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:29, 05:28](3177 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:51] +PASS -- TEST 'cpld_control_gfsv17_intel' [18:52, 16:31](1742 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:03, 17:30](2025 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:55, 08:23](1111 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:54, 18:29](1645 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 04:53] +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:00](1692 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 14:26] +PASS -- TEST 'cpld_control_p8_intel' [07:49, 05:37](3207 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:13, 05:37](3213 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:02, 03:24](3255 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:49, 05:38](3238 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:03, 03:28](3281 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:49, 06:06](3556 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:49, 05:39](3202 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:52, 04:42](3067 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:13, 05:42](3210 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 09:57](3331 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:26, 06:31](3620 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:53, 11:05](4121 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:08, 07:24](4363 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:59, 05:25](3178 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 14:15] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:28, 04:21](1736 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:53, 04:24](1778 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:27] +PASS -- TEST 'cpld_debug_p8_intel' [10:38, 08:33](3249 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:48] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:11, 06:00](1754 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:17] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:27, 04:24](1778 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 13:15] +PASS -- TEST 'cpld_control_c48_intel' [09:02, 08:05](2830 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:26] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:52, 05:20](3213 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:23] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:21, 16:41](1762 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:31, 08:20](1172 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:23, 18:35](1686 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:49] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:04, 24:30](1714 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:28] +PASS -- TEST 'control_flake_intel' [04:27, 03:28](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:27](649 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:31, 02:37](658 MB) +PASS -- TEST 'control_latlon_intel' [03:24, 02:28](648 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:31](656 MB) +PASS -- TEST 'control_c48_intel' [06:29, 06:03](826 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:29, 05:56](859 MB) +PASS -- TEST 'control_c192_intel' [09:37, 09:04](846 MB) +PASS -- TEST 'control_c384_intel' [12:40, 10:09](1248 MB) +PASS -- TEST 'control_c384gdas_intel' [13:07, 09:06](1355 MB) +PASS -- TEST 'control_stochy_intel' [02:23, 01:42](654 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:05](498 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 01:34](653 MB) +PASS -- TEST 'control_iovr4_intel' [03:25, 02:28](656 MB) +PASS -- TEST 'control_iovr5_intel' [03:23, 02:30](650 MB) +PASS -- TEST 'control_p8_intel' [05:10, 03:09](1634 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 03:09](1627 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 03:02](1626 MB) +PASS -- TEST 'control_restart_p8_intel' [03:21, 01:41](889 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:36, 02:56](1623 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:13, 01:39](929 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:30, 03:03](1616 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:30, 03:11](1717 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:00, 05:22](1637 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:46, 03:58](1696 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:47, 03:03](1631 MB) +PASS -- TEST 'merra2_thompson_intel' [05:57, 03:31](1648 MB) +PASS -- TEST 'regional_control_intel' [06:54, 05:10](861 MB) +PASS -- TEST 'regional_restart_intel' [04:49, 02:46](1021 MB) +PASS -- TEST 'regional_decomp_intel' [06:50, 05:30](843 MB) +PASS -- TEST 'regional_2threads_intel' [04:41, 03:43](841 MB) +PASS -- TEST 'regional_noquilt_intel' [06:36, 05:10](1366 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:49, 05:17](855 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 05:08](850 MB) +PASS -- TEST 'regional_wofs_intel' [07:38, 06:40](1917 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:34] +PASS -- TEST 'rap_control_intel' [09:30, 07:48](1100 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 04:43](1307 MB) +PASS -- TEST 'rap_decomp_intel' [10:29, 08:07](1037 MB) +PASS -- TEST 'rap_2threads_intel' [08:58, 07:55](1175 MB) +PASS -- TEST 'rap_restart_intel' [05:26, 04:03](1091 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:28, 07:48](1098 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:26, 08:06](1027 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 05:47](1124 MB) +PASS -- TEST 'hrrr_control_intel' [06:07, 04:06](1030 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:12](1024 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 03:24](1111 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:10](987 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:25, 07:41](1093 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 09:12](1997 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 09:05](2074 MB) + +PASS -- COMPILE 'csawmg_intel' [11:10, 10:52] +PASS -- TEST 'control_csawmg_intel' [08:53, 06:09](746 MB) +PASS -- TEST 'control_csawmgt_intel' [07:50, 06:05](747 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:22](738 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 12:03] +PASS -- TEST 'control_wam_intel' [05:21, 02:05](654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 11:44] +PASS -- TEST 'control_p8_faster_intel' [05:38, 02:40](1621 MB) +PASS -- TEST 'regional_control_faster_intel' [05:46, 04:42](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:54] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:32, 02:53](812 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 02:43](818 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:23, 03:02](821 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:52](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:45, 04:10](863 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [07:42, 04:10](865 MB) +PASS -- TEST 'control_ras_debug_intel' [05:23, 02:46](827 MB) +PASS -- TEST 'control_diag_debug_intel' [05:30, 02:55](874 MB) +PASS -- TEST 'control_debug_p8_intel' [05:50, 03:21](1653 MB) +PASS -- TEST 'regional_debug_intel' [19:47, 17:40](844 MB) +PASS -- TEST 'rap_control_debug_intel' [06:28, 04:59](1211 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:24, 04:44](1205 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:59](1194 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 04:44](1208 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:59](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:35, 05:25](1282 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:28, 05:14](1202 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 04:56](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:01](1198 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 05:03](1198 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:48](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 04:56](1205 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:02](1199 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:59](1204 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:51](1210 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:27, 05:05](1206 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:30, 08:34](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:20] +PASS -- TEST 'control_wam_debug_intel' [05:23, 04:59](522 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:19] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:32](1168 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:18, 06:29](1053 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 03:27](983 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:54, 06:46](1094 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 03:06](957 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:39](930 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:20, 04:50](1044 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:55](928 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:23] +PASS -- TEST 'conus13km_control_intel' [05:01, 02:13](1201 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:09](1124 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:17](1056 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:01] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:19](994 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:02](1079 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:50](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [16:47, 14:33](1229 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:26](928 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:08](1154 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:28](1297 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:29] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:32, 05:05](1129 MB) + +PASS -- COMPILE 'hafsw_intel' [14:12, 13:06] +PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:39](743 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:04](1116 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:28, 06:59](831 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:15, 12:51](865 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:42](833 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 06:13](500 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 07:36](514 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 03:17](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:19, 08:02](469 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:13](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:00, 03:56](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 05:24](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:30](408 MB) +PASS -- TEST 'gnv1_nested_intel' [05:55, 04:34](803 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:47] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:50, 13:20](570 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:19] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:57, 09:43](728 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:08, 09:45](704 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:49] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:02, 07:01](695 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 12:27] +PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:22](782 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:24](812 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:59, 15:58](1211 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:43] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:44](1131 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:40](1090 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:37](1001 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:44](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:39](1012 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:41](1137 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:48](1143 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:35](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 06:01](1050 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:18, 05:56](1043 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:19, 02:43](1119 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:39](2482 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:40](2491 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 04:15] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:18, 06:08](1056 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:23] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1127 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:09] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 00:51](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:52](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:31](319 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:21] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:13](1609 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:27, 04:12](1601 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:45, 02:25](900 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 12:17] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:20, 01:49](1668 MB) + +PASS -- COMPILE 'atmwm_intel' [14:11, 11:44] +PASS -- TEST 'control_atmwav_intel' [03:08, 01:44](671 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 11:26] +PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:04](3026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:16, 04:49](3091 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:04, 05:01](3113 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:18] +PASS -- TEST 'regional_atmaq_debug_intel' [22:43, 20:24](4577 MB) SYNOPSIS: -Starting Date/Time: 20240415 18:41:28 -Ending Date/Time: 20240415 20:03:54 -Total Time: 01h:23m:13s -Compiles Completed: 39/39 +Starting Date/Time: 20240418 09:17:36 +Ending Date/Time: 20240418 10:38:54 +Total Time: 01h:21m:41s +Compiles Completed: 38/38 Tests Completed: 182/182 NOTES: diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 4c318d73a9..3b67c86e04 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -d5f1957f6d43c8e93bd556e9862958738751400a +d164b650b97d4c4a68ab86c55f2254f29767da2b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/HEAD-4-g6e1bc3e) - b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-396-gb447c63) + 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) NOTES: @@ -35,234 +35,234 @@ 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-20240408 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_225418 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240417 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_53976 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:21, 11:33] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:36, 02:10](2974 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:41, 28:12] -PASS -- TEST 'cpld_control_gfsv17_intel' [40:17, 02:07](1595 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:20, 01:53](1718 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [19:17, 01:38](849 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:18, 01:29](1581 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:14, 04:21] -PASS -- TEST 'cpld_debug_gfsv17_intel' [04:45, 01:38](1606 MB) - -PASS -- COMPILE 's2swa_intel' [11:22, 10:49] -PASS -- TEST 'cpld_control_p8_intel' [58:36, 01:31](3004 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [58:36, 01:40](3001 MB) -PASS -- TEST 'cpld_restart_p8_intel' [48:11, 01:17](3065 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [58:36, 01:02](3030 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [48:11, 01:16](3081 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [58:36, 01:37](3320 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [58:36, 01:22](2999 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [58:37, 01:36](2931 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:35, 01:42](3002 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [58:45, 05:07](3949 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:20, 03:40](4253 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [58:36, 02:02](2970 MB) - -PASS -- COMPILE 's2sw_intel' [12:22, 11:03] -PASS -- TEST 'cpld_control_noaero_p8_intel' [57:35, 00:55](1589 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [57:35, 01:22](1639 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:34, 21:25] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:23, 01:47](1633 MB) - -PASS -- COMPILE 's2s_intel' [26:38, 24:44] -PASS -- TEST 'cpld_control_c48_intel' [43:18, 00:55](2652 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:32, 18:20] -PASS -- TEST 'cpld_control_p8_faster_intel' [17:20, 01:58](3005 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:21, 11:28] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [57:36, 01:32](1605 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [36:09, 01:16](904 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:58, 01:28](1586 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [23:36, 21:54] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:22, 01:10](1613 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [24:34, 22:37] -PASS -- TEST 'control_flake_intel' [40:09, 00:43](573 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [40:09, 01:01](522 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [40:09, 01:04](532 MB) -PASS -- TEST 'control_latlon_intel' [40:09, 00:56](523 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [40:09, 01:03](526 MB) -PASS -- TEST 'control_c48_intel' [40:08, 01:13](714 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [40:08, 01:12](719 MB) -PASS -- TEST 'control_c192_intel' [40:09, 00:26](637 MB) -PASS -- TEST 'control_c384_intel' [37:32, 01:06](951 MB) -PASS -- TEST 'control_c384gdas_intel' [37:32, 02:19](1093 MB) -PASS -- TEST 'control_stochy_intel' [35:33, 01:14](527 MB) -PASS -- TEST 'control_stochy_restart_intel' [28:04, 00:37](331 MB) -PASS -- TEST 'control_lndp_intel' [33:45, 00:28](526 MB) -PASS -- TEST 'control_iovr4_intel' [33:43, 00:22](524 MB) -PASS -- TEST 'control_iovr5_intel' [33:40, 01:19](525 MB) -PASS -- TEST 'control_p8_intel' [33:35, 01:29](1512 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [33:00, 01:37](1506 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [33:00, 01:41](1506 MB) -PASS -- TEST 'control_restart_p8_intel' [25:16, 01:08](689 MB) -PASS -- TEST 'control_noqr_p8_intel' [33:00, 01:16](1496 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [19:16, 01:33](701 MB) -PASS -- TEST 'control_decomp_p8_intel' [32:44, 01:40](1498 MB) -PASS -- TEST 'control_2threads_p8_intel' [32:05, 01:34](1594 MB) -PASS -- TEST 'control_p8_lndp_intel' [31:10, 00:45](1502 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [30:39, 01:53](1564 MB) -PASS -- TEST 'control_p8_mynn_intel' [30:30, 01:42](1515 MB) -PASS -- TEST 'merra2_thompson_intel' [30:27, 01:28](1511 MB) -PASS -- TEST 'regional_control_intel' [29:44, 00:45](610 MB) -PASS -- TEST 'regional_restart_intel' [19:57, 00:29](777 MB) -PASS -- TEST 'regional_decomp_intel' [29:42, 00:31](608 MB) -PASS -- TEST 'regional_2threads_intel' [29:41, 00:29](665 MB) -PASS -- TEST 'regional_noquilt_intel' [29:38, 00:51](1145 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [28:58, 00:41](610 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [28:56, 00:34](608 MB) -PASS -- TEST 'regional_wofs_intel' [28:34, 01:02](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [17:26, 15:10] -PASS -- TEST 'rap_control_intel' [28:12, 01:25](917 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:09, 01:08](1096 MB) -PASS -- TEST 'rap_decomp_intel' [41:09, 01:48](920 MB) -PASS -- TEST 'rap_2threads_intel' [41:09, 01:58](1010 MB) -PASS -- TEST 'rap_restart_intel' [15:50, 01:28](786 MB) -PASS -- TEST 'rap_sfcdiff_intel' [41:09, 01:22](915 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [41:09, 01:52](914 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [27:27, 01:30](785 MB) -PASS -- TEST 'hrrr_control_intel' [41:09, 01:08](907 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [41:09, 01:06](909 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [41:10, 01:37](995 MB) -PASS -- TEST 'hrrr_control_restart_intel' [27:16, 00:55](742 MB) -PASS -- TEST 'rrfs_v1beta_intel' [41:09, 01:28](909 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [41:09, 01:15](1875 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:11, 00:30](1860 MB) - -PASS -- COMPILE 'csawmg_intel' [21:30, 19:17] -PASS -- TEST 'control_csawmg_intel' [24:36, 01:07](600 MB) -PASS -- TEST 'control_csawmgt_intel' [24:33, 01:11](599 MB) -PASS -- TEST 'control_ras_intel' [23:36, 00:47](562 MB) - -PASS -- COMPILE 'wam_intel' [20:29, 18:36] -PASS -- TEST 'control_wam_intel' [23:05, 01:01](271 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:26, 14:44] -PASS -- TEST 'control_p8_faster_intel' [22:32, 01:25](1513 MB) -PASS -- TEST 'regional_control_faster_intel' [22:10, 00:58](612 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:22, 07:14] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:02, 00:43](686 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:52, 00:49](691 MB) -PASS -- TEST 'control_stochy_debug_intel' [21:35, 00:24](689 MB) -PASS -- TEST 'control_lndp_debug_intel' [21:13, 01:08](695 MB) -PASS -- TEST 'control_csawmg_debug_intel' [21:07, 00:23](733 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [19:58, 00:37](731 MB) -PASS -- TEST 'control_ras_debug_intel' [19:58, 00:27](700 MB) -PASS -- TEST 'control_diag_debug_intel' [19:56, 00:31](748 MB) -PASS -- TEST 'control_debug_p8_intel' [19:54, 00:58](1526 MB) -PASS -- TEST 'regional_debug_intel' [19:44, 00:47](631 MB) -PASS -- TEST 'rap_control_debug_intel' [19:10, 01:15](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [18:44, 00:33](1073 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [16:43, 01:20](1072 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:00, 01:08](1072 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:39, 01:12](1077 MB) -PASS -- TEST 'rap_diag_debug_intel' [15:36, 01:06](1159 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:02, 00:39](1073 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:26, 00:21](1075 MB) -PASS -- TEST 'rap_lndp_debug_intel' [14:16, 00:32](1075 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:05, 00:37](1076 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:52, 00:51](1074 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:32, 00:52](1073 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:49, 00:56](1074 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:48, 00:58](1072 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:44, 01:02](1078 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:30, 01:04](1076 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:25, 01:28](1079 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:19, 06:52] -PASS -- TEST 'control_wam_debug_intel' [12:23, 01:09](301 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:28, 13:18] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:16, 01:20](953 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:49, 01:17](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:23, 02:06](788 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:13, 00:59](848 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:13, 02:07](848 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:11, 02:02](791 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:30, 01:28](688 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:41, 01:11](669 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:31, 13:15] -PASS -- TEST 'conus13km_control_intel' [09:14, 00:40](1003 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:21, 00:24](1009 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:13, 00:19](882 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:24, 11:22] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:40, 01:05](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:13, 03:01] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:19, 00:58](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 00:38](951 MB) -PASS -- TEST 'conus13km_debug_intel' [07:25, 01:06](1038 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [07:16, 00:49](711 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:08, 00:54](1038 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [06:57, 00:44](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [15:30, 12:02] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:51, 00:51](980 MB) - -PASS -- COMPILE 'hafsw_intel' [21:30, 16:17] -PASS -- TEST 'hafs_regional_atm_intel' [05:47, 01:53](616 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:44, 01:16](967 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:33, 01:25](660 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [05:26, 02:18](703 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:15, 01:19](711 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:05, 00:59](390 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [04:23, 01:46](404 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:07, 01:02](283 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:02, 02:42](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:42, 01:26](415 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:18, 01:46](411 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [02:50, 01:27](488 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:22, 01:13](314 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [18:28, 13:42] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:03, 01:27](502 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:42, 19:16] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:45, 01:42](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:40, 01:24](708 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:39, 15:59] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:52, 01:33](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:34, 16:23] -PASS -- TEST 'hafs_regional_docn_intel' [01:01, 02:01](659 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [00:55, 01:58](650 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [00:14, 01:17](880 MB) - -PASS -- COMPILE 'atml_intel' [22:41, 18:42] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [59:59, 01:47](1546 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [59:22, 01:16](1540 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [51:52, 00:49](741 MB) - -PASS -- COMPILE 'atmaero_intel' [14:33, 11:08] -PASS -- TEST 'atmaero_control_p8_intel' [59:11, 01:31](2851 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [58:54, 01:59](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [58:10, 01:14](2923 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [14:29, 10:39] -PASS -- TEST 'regional_atmaq_debug_intel' [58:09, 01:40](4435 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:27, 10:54] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:12, 01:19](2974 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:28, 11:58] +PASS -- TEST 'cpld_control_gfsv17_intel' [10:11, 01:52](1592 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [52:15, 02:04](1708 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [52:05, 01:55](848 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [10:12, 02:35](1570 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:18] +PASS -- TEST 'cpld_debug_gfsv17_intel' [17:22, 01:57](1600 MB) + +PASS -- COMPILE 's2swa_intel' [16:31, 15:23] +PASS -- TEST 'cpld_control_p8_intel' [06:08, 01:43](3005 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:08, 02:18](3002 MB) +PASS -- TEST 'cpld_restart_p8_intel' [57:25, 01:58](3063 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [06:08, 01:41](3029 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [57:23, 01:54](3084 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:08, 01:13](3314 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:08, 01:38](3003 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:09, 01:33](2924 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:08, 02:08](3001 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [06:17, 05:37](3948 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:00, 04:12](4251 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:08, 02:12](2971 MB) + +PASS -- COMPILE 's2sw_intel' [22:36, 21:52] +PASS -- TEST 'cpld_control_noaero_p8_intel' [58:35, 01:38](1593 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:35, 01:56](1638 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:37, 21:17] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:02, 01:57](1635 MB) + +PASS -- COMPILE 's2s_intel' [10:25, 09:55] +PASS -- TEST 'cpld_control_c48_intel' [12:13, 00:40](2653 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:32, 16:07] +PASS -- TEST 'cpld_control_p8_faster_intel' [06:07, 02:22](3002 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [43:05, 42:21] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [39:27, 01:04](1606 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:55, 01:23](904 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:56, 01:38](1574 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [21:38, 20:33] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:02, 01:32](1611 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:31, 15:58] +PASS -- TEST 'control_flake_intel' [00:50, 00:31](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [00:50, 00:56](523 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [00:50, 01:04](530 MB) +PASS -- TEST 'control_latlon_intel' [00:50, 00:51](522 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [00:50, 00:54](521 MB) +PASS -- TEST 'control_c48_intel' [00:49, 00:53](715 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [00:49, 00:50](714 MB) +PASS -- TEST 'control_c192_intel' [00:50, 01:38](636 MB) +PASS -- TEST 'control_c384_intel' [00:54, 02:39](952 MB) +PASS -- TEST 'control_c384gdas_intel' [00:54, 03:46](1090 MB) +PASS -- TEST 'control_stochy_intel' [00:50, 00:31](532 MB) +PASS -- TEST 'control_stochy_restart_intel' [58:14, 01:00](346 MB) +PASS -- TEST 'control_lndp_intel' [00:50, 00:32](527 MB) +PASS -- TEST 'control_iovr4_intel' [00:50, 00:54](527 MB) +PASS -- TEST 'control_iovr5_intel' [00:50, 00:56](522 MB) +PASS -- TEST 'control_p8_intel' [00:50, 02:07](1501 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [58:17, 01:53](1497 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [57:35, 01:52](1513 MB) +PASS -- TEST 'control_restart_p8_intel' [55:05, 00:37](692 MB) +PASS -- TEST 'control_noqr_p8_intel' [57:18, 01:27](1494 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [51:56, 01:02](700 MB) +PASS -- TEST 'control_decomp_p8_intel' [57:12, 01:19](1503 MB) +PASS -- TEST 'control_2threads_p8_intel' [57:10, 00:50](1591 MB) +PASS -- TEST 'control_p8_lndp_intel' [57:10, 01:12](1499 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [57:08, 01:56](1571 MB) +PASS -- TEST 'control_p8_mynn_intel' [57:07, 01:37](1508 MB) +PASS -- TEST 'merra2_thompson_intel' [56:56, 01:25](1511 MB) +PASS -- TEST 'regional_control_intel' [56:55, 00:16](609 MB) +PASS -- TEST 'regional_restart_intel' [50:42, 00:27](777 MB) +PASS -- TEST 'regional_decomp_intel' [56:52, 00:59](606 MB) +PASS -- TEST 'regional_2threads_intel' [56:50, 00:50](664 MB) +PASS -- TEST 'regional_noquilt_intel' [56:06, 00:25](1147 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [55:23, 00:24](609 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [54:08, 00:26](608 MB) +PASS -- TEST 'regional_wofs_intel' [54:06, 00:57](1579 MB) + +PASS -- COMPILE 'rrfs_intel' [21:39, 21:13] +PASS -- TEST 'rap_control_intel' [50:27, 02:07](919 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [50:23, 01:13](1089 MB) +PASS -- TEST 'rap_decomp_intel' [50:05, 00:52](917 MB) +PASS -- TEST 'rap_2threads_intel' [49:48, 02:01](1006 MB) +PASS -- TEST 'rap_restart_intel' [40:56, 01:15](790 MB) +PASS -- TEST 'rap_sfcdiff_intel' [49:44, 01:39](916 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:40, 01:16](913 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [40:01, 01:43](784 MB) +PASS -- TEST 'hrrr_control_intel' [49:33, 01:08](910 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [49:32, 01:04](909 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [49:32, 01:14](995 MB) +PASS -- TEST 'hrrr_control_restart_intel' [43:13, 01:03](743 MB) +PASS -- TEST 'rrfs_v1beta_intel' [49:05, 01:45](909 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [48:30, 01:05](1875 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [48:16, 01:19](1861 MB) + +PASS -- COMPILE 'csawmg_intel' [17:33, 16:58] +PASS -- TEST 'control_csawmg_intel' [53:28, 01:57](598 MB) +PASS -- TEST 'control_csawmgt_intel' [52:39, 00:31](598 MB) +PASS -- TEST 'control_ras_intel' [51:58, 01:03](561 MB) + +PASS -- COMPILE 'wam_intel' [18:35, 18:10] +PASS -- TEST 'control_wam_intel' [51:34, 00:58](271 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:30, 13:16] +PASS -- TEST 'control_p8_faster_intel' [51:48, 02:06](1505 MB) +PASS -- TEST 'regional_control_faster_intel' [51:45, 00:24](610 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 08:46] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [51:30, 01:18](682 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [51:08, 01:23](692 MB) +PASS -- TEST 'control_stochy_debug_intel' [50:51, 00:52](690 MB) +PASS -- TEST 'control_lndp_debug_intel' [50:45, 01:11](692 MB) +PASS -- TEST 'control_csawmg_debug_intel' [48:03, 01:22](733 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [47:22, 00:43](731 MB) +PASS -- TEST 'control_ras_debug_intel' [47:17, 00:49](701 MB) +PASS -- TEST 'control_diag_debug_intel' [47:01, 01:08](748 MB) +PASS -- TEST 'control_debug_p8_intel' [46:52, 00:19](1527 MB) +PASS -- TEST 'regional_debug_intel' [46:50, 00:34](631 MB) +PASS -- TEST 'rap_control_debug_intel' [46:28, 00:39](1077 MB) +PASS -- TEST 'hrrr_control_debug_intel' [46:24, 00:44](1068 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [46:23, 00:41](1071 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [46:17, 00:38](1072 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [46:16, 00:37](1076 MB) +PASS -- TEST 'rap_diag_debug_intel' [46:02, 00:48](1158 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:20, 00:46](1074 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:46, 00:45](1074 MB) +PASS -- TEST 'rap_lndp_debug_intel' [43:13, 00:52](1077 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:13, 00:54](1076 MB) +PASS -- TEST 'rap_noah_debug_intel' [42:57, 00:53](1074 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [42:03, 00:54](1078 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:45, 00:48](1074 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [41:23, 00:56](1071 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [41:02, 01:07](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [40:56, 00:55](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:54, 02:16](1078 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:17, 02:55] +PASS -- TEST 'control_wam_debug_intel' [40:26, 00:58](299 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:16, 14:48] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [40:02, 01:21](961 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [39:43, 01:12](789 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:42, 02:26](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [38:48, 01:29](849 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:46, 01:44](839 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [38:44, 01:28](786 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:25, 01:30](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [33:50, 00:17](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 10:48] +PASS -- TEST 'conus13km_control_intel' [38:43, 01:02](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [34:50, 00:50](1007 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [34:28, 00:41](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:40, 22:40] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [36:22, 01:25](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [21:46, 20:59] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [35:58, 01:05](952 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [35:58, 01:12](953 MB) +PASS -- TEST 'conus13km_debug_intel' [35:58, 00:25](1036 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [35:37, 01:15](709 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [35:32, 00:34](1035 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [34:55, 01:16](1099 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:26, 06:27] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [38:43, 00:58](981 MB) + +PASS -- COMPILE 'hafsw_intel' [24:47, 24:16] +PASS -- TEST 'hafs_regional_atm_intel' [28:53, 01:52](619 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:53, 00:27](966 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:51, 01:42](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [28:51, 01:36](703 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [28:52, 01:20](712 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [28:51, 00:59](388 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [28:52, 02:05](405 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [28:52, 01:28](290 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [28:55, 02:56](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [28:51, 01:26](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [28:51, 00:50](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [28:53, 00:44](494 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [28:52, 01:15](313 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:28, 09:39] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [38:24, 01:33](504 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:33, 11:36] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:56, 01:39](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:42, 01:39](711 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:34, 11:52] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:28, 00:56](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [24:44, 24:18] +PASS -- TEST 'hafs_regional_docn_intel' [17:01, 01:22](664 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:36, 02:09](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:34, 00:26](880 MB) + +PASS -- COMPILE 'atml_intel' [16:37, 15:26] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [32:38, 01:15](1550 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [32:38, 01:15](1550 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:17, 01:16](741 MB) + +PASS -- COMPILE 'atmaero_intel' [11:32, 10:33] +PASS -- TEST 'atmaero_control_p8_intel' [32:58, 01:31](2854 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [32:58, 01:54](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:58, 01:40](2924 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:20, 08:02] +PASS -- TEST 'regional_atmaq_debug_intel' [33:47, 01:21](4437 MB) SYNOPSIS: -Starting Date/Time: 20240416 14:49:41 -Ending Date/Time: 20240416 16:29:19 -Total Time: 01h:40m:15s +Starting Date/Time: 20240418 12:37:01 +Ending Date/Time: 20240418 13:59:51 +Total Time: 01h:23m:22s Compiles Completed: 30/30 Tests Completed: 157/157 diff --git a/tests/rt.sh b/tests/rt.sh index 0b693c1966..201ce697f8 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -724,6 +724,7 @@ case ${MACHINE_ID} in ROCOTO_SCHEDULER="slurm" fi + export LD_PRELOAD=/opt/cray/pe/gcc/12.2.0/snos/lib64/libstdc++.so.6 module load PrgEnv-intel/8.3.3 module load intel-classic/2023.1.0 module load cray-mpich/8.1.25 @@ -1040,9 +1041,7 @@ NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST # Overwrite default RUNDIR_ROOT if environment variable RUNDIR_ROOT is set RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}/FV3_RT}/rt_$$ mkdir -p "${RUNDIR_ROOT}" -if [[ -L "${PATHRT}/run_dir" && -d "${PATHRT}/run_dir" ]]; then - rm "${PATHRT}/run_dir" -fi +rm -rf "${PATHRT}/run_dir" echo "Linking ${RUNDIR_ROOT} to ${PATHRT}/run_dir" ln -s "${RUNDIR_ROOT}" "${PATHRT}/run_dir" echo "Run regression test in: ${RUNDIR_ROOT}" @@ -1149,7 +1148,7 @@ if [[ ${ROCOTO} == true ]]; then ]> - + 197001010000 197001010000 01:00:00 &LOG;/workflow.log EOF @@ -1421,4 +1420,4 @@ fi ## Lets verify all tests were run and that they passed generate_log eval "${set_x}" -echo "******Regression Testing Script Completed******" \ No newline at end of file +echo "******Regression Testing Script Completed******" diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..f822a534c3 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,13 @@ +regional_control intel +regional_restart intel +regional_decomp intel +regional_2threads intel +regional_2dwrtdecomp intel +regional_wofs intel +regional_spp_sppt_shum_skeb intel +regional_control_faster intel +rap_clm_lake_debug intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +hafs_regional_atm intel +hafs_global_multiple_4nests_atm intel +hafs_regional_specified_moving_1nest_atm intel From b6c576d71b1bcfa8801e06faaa43dd970d62a471 Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Tue, 23 Apr 2024 12:24:22 -0400 Subject: [PATCH 03/16] Merged global namelist (#2173) * UFSWM - global_control.nml_IN has been added as the new regression test namelist template for all global regression tests. The namelist now uses pointers (i.e. @[abc]) for variables and default values have been added to the default_vars.sh script. A new section in default_vars.sh has been added (export_tiled) to account for tiled RTs that pulls the correct parameter files using the ATMRES variable. Regression tests have been modified to account for these changes. Tests that were not compatible with the GFSv17_p8 core have been disabled for now. They will be turned on as they are updated from GFSv16 to GFSv17. --- tests/bl_date.conf | 2 +- tests/default_vars.sh | 1814 +++++++++-------- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 156 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_acorn.log | 507 +++-- tests/logs/RegressionTests_derecho.log | 653 +++--- tests/logs/RegressionTests_gaea.log | 603 +++--- tests/logs/RegressionTests_hera.log | 768 +++---- tests/logs/RegressionTests_hercules.log | 812 ++++---- tests/logs/RegressionTests_jet.log | 532 ++--- tests/logs/RegressionTests_orion.log | 630 +++--- tests/logs/RegressionTests_wcoss2.log | 446 ++-- tests/parm/control_ugwpv1.nml.IN | 319 --- ...d_control.nml.IN => global_control.nml.IN} | 38 +- tests/parm/merra2_thompson.nml.IN | 371 ---- tests/rt.conf | 10 - tests/test_changes.list | 27 +- tests/tests/atmaero_control_p8 | 18 +- tests/tests/atmaero_control_p8_rad | 18 +- tests/tests/atmaero_control_p8_rad_micro | 17 +- tests/tests/atmwav_control_noaero_p8 | 17 +- tests/tests/control_2threads_p8 | 19 +- tests/tests/control_CubedSphereGrid | 5 +- tests/tests/control_CubedSphereGrid_debug | 5 +- tests/tests/control_CubedSphereGrid_parallel | 6 +- tests/tests/control_atmwav | 90 - tests/tests/control_c192 | 12 +- tests/tests/control_c384 | 12 +- tests/tests/control_c384gdas | 2 +- tests/tests/control_c384gdas_wav | 126 -- tests/tests/control_c48 | 16 +- tests/tests/control_c48.v2.sfc | 2 +- tests/tests/control_c768 | 4 +- tests/tests/control_csawmg | 2 +- tests/tests/control_csawmg_debug | 2 +- tests/tests/control_csawmgt | 40 - tests/tests/control_csawmgt_debug | 36 - tests/tests/control_debug_p8 | 38 +- tests/tests/control_decomp_p8 | 33 +- tests/tests/control_diag_debug | 5 +- tests/tests/control_flake | 2 +- tests/tests/control_flake_debug | 4 +- tests/tests/control_iovr4 | 2 +- tests/tests/control_iovr5 | 2 +- tests/tests/control_latlon | 5 +- tests/tests/control_lndp | 2 +- tests/tests/control_lndp_debug | 2 +- tests/tests/control_noqr_p8 | 35 +- tests/tests/control_p8 | 35 +- tests/tests/control_p8.v2.sfc | 35 +- tests/tests/control_p8_atmlnd | 19 +- tests/tests/control_p8_atmlnd_sbs | 17 +- tests/tests/control_p8_faster | 35 +- tests/tests/control_p8_lndp | 35 +- tests/tests/control_p8_mynn | 58 +- tests/tests/control_p8_rrtmgp | 35 +- tests/tests/control_p8_ugwpv1 | 35 +- tests/tests/control_ras | 2 +- tests/tests/control_ras_debug | 2 +- tests/tests/control_restart_noqr_p8 | 37 +- tests/tests/control_restart_p8 | 37 +- tests/tests/control_restart_p8_atmlnd | 17 +- tests/tests/control_stochy | 2 +- tests/tests/control_stochy_debug | 2 +- tests/tests/control_stochy_restart | 2 +- tests/tests/control_wam | 2 +- tests/tests/control_wam_debug | 3 +- tests/tests/control_wrtGauss_netcdf_parallel | 5 +- .../control_wrtGauss_netcdf_parallel_debug | 5 +- tests/tests/cpld_control_gfsv17 | 4 +- tests/tests/cpld_control_gfsv17_iau | 4 +- tests/tests/cpld_control_p8 | 2 +- tests/tests/cpld_debug_gfsv17 | 2 +- tests/tests/cpld_mpi_gfsv17 | 4 +- tests/tests/cpld_restart_gfsv17 | 4 +- tests/tests/gnv1_c96_no_nest_debug | 2 +- tests/tests/merra2_thompson | 35 +- tests/tests/regional_2dwrtdecomp | 2 +- tests/tests/regional_2threads | 2 +- tests/tests/regional_atmaq | 2 +- tests/tests/regional_atmaq_debug | 2 +- tests/tests/regional_atmaq_faster | 2 +- tests/tests/regional_control | 2 +- tests/tests/regional_control_faster | 2 +- tests/tests/regional_debug | 2 +- tests/tests/regional_decomp | 2 +- tests/tests/regional_ifi_2threads | 2 +- tests/tests/regional_ifi_control | 2 +- tests/tests/regional_ifi_decomp | 2 +- tests/tests/regional_netcdf_parallel | 2 +- tests/tests/regional_noquilt | 2 +- tests/tests/regional_restart | 2 +- tests/tests/regional_rrfs_a | 2 +- tests/tests/regional_spp_sppt_shum_skeb | 2 +- .../regional_spp_sppt_shum_skeb_dyn32_phy32 | 2 +- tests/tests/regional_wofs | 2 +- 97 files changed, 4063 insertions(+), 4791 deletions(-) mode change 100755 => 100644 tests/default_vars.sh delete mode 100644 tests/parm/control_ugwpv1.nml.IN rename tests/parm/{cpld_control.nml.IN => global_control.nml.IN} (93%) delete mode 100644 tests/parm/merra2_thompson.nml.IN delete mode 100644 tests/tests/control_atmwav delete mode 100644 tests/tests/control_c384gdas_wav delete mode 100644 tests/tests/control_csawmgt delete mode 100644 tests/tests/control_csawmgt_debug diff --git a/tests/bl_date.conf b/tests/bl_date.conf index d10f180066..2c9c09b289 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240417 +export BL_DATE=20240419 diff --git a/tests/default_vars.sh b/tests/default_vars.sh old mode 100755 new mode 100644 index 7bbbd3652f..03e70f9308 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -420,341 +420,473 @@ export CMP_DATAONLY=false export esmf_logkind="ESMF_LOGKIND_MULTI" export DumpFields="false" -export_fv3 () +export_fv3_v16 () { -# ufs.configure defaults - export UFS_CONFIGURE=ufs.configure.atm_esmf.IN - export MODEL_CONFIGURE=model_configure.IN - export atm_model=fv3 +# Add support for v16 test cases. This section +# will be removed once support for GFSv16 is +# officially depricated. - export FV3=true - export S2S=false - export HAFS=false - export AQM=false - export DATM_CDEPS=false - export DOCN_CDEPS=false - export CDEPS_INLINE=false - export POSTAPP='global' - export USE_MERRA2=.false. +# Load in FV3 values +export_fv3 - export NTILES=6 - export INPES=${INPES_dflt} - export JNPES=${JNPES_dflt} - export RESTART_INTERVAL=0 - export QUILTING=.true. - export QUILTING_RESTART=.true. - export WRITE_GROUP=1 - export WRTTASK_PER_GROUP=6 - export ITASKS=1 - export OUTPUT_HISTORY=.true. - export HISTORY_FILE_ON_NATIVE_GRID=.false. - export WRITE_DOPOST=.false. - export NUM_FILES=2 - export FILENAME_BASE="'atm' 'sfc'" - export OUTPUT_GRID="'cubed_sphere_grid'" - export OUTPUT_FILE="'netcdf'" - export ZSTANDARD_LEVEL=0 - export IDEFLATE=0 - export QUANTIZE_NSD=0 - export ICHUNK2D=0 - export JCHUNK2D=0 - export ICHUNK3D=0 - export JCHUNK3D=0 - export KCHUNK3D=0 - export IMO=384 - export JMO=190 - export WRITE_NSFLIP=.false. - - #input file - export DIAG_TABLE=diag_table_gfsv16 - export FIELD_TABLE=field_table_gfsv16 - - export DOMAINS_STACK_SIZE=3000000 - - # Coldstart/warmstart - #rt script for ICs - export MODEL_INITIALIZATION=false - #namelist variable - export WARM_START=.false. - export READ_INCREMENT=.false. - export RES_LATLON_DYNAMICS="''" - export NGGPS_IC=.true. - export EXTERNAL_IC=.true. - export MAKE_NH=.true. - export MOUNTAIN=.false. - export NA_INIT=1 - - # Radiation - export DO_RRTMGP=.false. - export DOGP_CLDOPTICS_LUT=.false. - export DOGP_LWSCAT=.false. - export USE_LW_JACOBIAN=.false. - export DAMP_LW_FLUXADJ=.false. - export RRTMGP_LW_PHYS_BLKSZ=2 - export ICLOUD=0 - export IAER=111 - export ICLIQ_SW=1 - export IOVR=1 - export LFNC_K=-999 - export LFNC_P0=-999 - - # Microphysics - export IMP_PHYSICS=11 - export NWAT=6 - # GFDL MP - export DNATS=1 - export DO_SAT_ADJ=.true. - export LHEATSTRG=.true. - export LSEASPRAY=.false. - export LGFDLMPRAD=.false. - export EFFR_IN=.false. - # Thompson MP - export LRADAR=.true. - export LTAEROSOL=.true. - export EXT_DIAG_THOMPSON=.false. - export SEDI_SEMI=.true. - export DECFL=10 - # NSSL MP - export NSSL_CCCN=0.6e9 - export NSSL_ALPHAH=0.0 - export NSSL_ALPHAHL=1.0 - export NSSL_HAIL_ON=.false. - export NSSL_CCN_ON=.true. - export NSSL_INVERTCCN=.true. - - # Smoke - export RRFS_SMOKE=.false. - export SMOKE_FORECAST=0 - export RRFS_RESTART=NO - export SEAS_OPT=2 - - # GWD - export LDIAG_UGWP=.false. - export DO_UGWP=.false. - export DO_TOFD=.false. - export GWD_OPT=1 - export DO_UGWP_V0=.false. - export DO_UGWP_V1_W_GSLDRAG=.false. - export DO_UGWP_V0_OROG_ONLY=.false. - export DO_GSL_DRAG_LS_BL=.false. - export DO_GSL_DRAG_SS=.false. - export DO_GSL_DRAG_TOFD=.false. - export DO_UGWP_V1=.false. - export DO_UGWP_V1_OROG_ONLY=.false. - export KNOB_UGWP_DOKDIS=1 - export KNOB_UGWP_NDX4LH=1 - export KNOB_UGWP_VERSION=0 - export KNOB_UGWP_PALAUNCH=500.e2 - export KNOB_UGWP_NSLOPE=1 - - # resolution dependent settings - export CDMBWD_c48='0.071,2.1,1.0,1.0' - export CDMBWD_c96='0.14,1.8,1.0,1.0' - export CDMBWD_c192='0.23,1.5,1.0,1.0' - export CDMBWD_c384='1.1,0.72,1.0,1.0' - export CDMBWD_c768='4.0,0.15,1.0,1.0' - - #DT_INNER=(Time step)/2 - export DT_INNER_c96=360 - export DT_INNER_c192=300 - export DT_INNER_c384=150 - export DT_INNER_c768=75 - - # set default - export CDMBWD=${CDMBWD_c96} - export DT_INNER=${DT_INNER_c96} - - # PBL - export SATMEDMF=.false. - export ISATMEDMF=0 - export HYBEDMF=.true. - export SHINHONG=.false. - export DO_YSU=.false. - export DO_MYNNEDMF=.false. - export HURR_PBL=.false. - export MONINQ_FAC=1.0 - export SFCLAY_COMPUTE_FLUX=.false. - - # Shallow/deep convection - export DO_DEEP=.true. - export SHAL_CNV=.true. - export IMFSHALCNV=2 - export HWRF_SAMFSHAL=.false. - export IMFDEEPCNV=2 - export HWRF_SAMFDEEP=.false. - export RAS=.false. - export RANDOM_CLDS=.false. - export CNVCLD=.true. - export PROGSIGMA=.false. - export BETASCU=8.0 - export BETAMCU=1.0 - export BETADCU=2.0 - - # Aerosol convective scavenging - export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc1:0.6","bc2:0.6","oc1:0.4","oc2:0.4","dust1:0.6","dust2:0.6","dust3:0.6","dust4:0.6","dust5:0.6","seas1:0.5","seas2:0.5","seas3:0.5","seas4:0.5","seas5:0.5"' - - # SFC - export DO_MYJSFC=.false. - export DO_MYNNSFCLAY=.false. - export BL_MYNN_TKEADVECT=.false. - - # LSM - export LSM=1 - export LSOIL_LSM=4 - export LANDICE=.true. - export KICE=2 - export IALB=1 - export IEMS=1 - - # Ozone / stratospheric H2O - export OZ_PHYS_OLD=.true. - export OZ_PHYS_NEW=.false. - export H2O_PHYS=.false. - - # Lake models - export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake points - export IOPT_LAKE=2 # 1=flake, 2=clm lake - export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it - export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it - export FRAC_ICE=.true. # should be false for flake, true for clm_lake - - export CPL=.false. - export CPLCHM=.false. - export CPLFLX=.false. - export CPLICE=.false. - export CPLWAV=.false. - export CPLWAV2ATM=.false. - export CPLLND=.false. - export CPLLND2ATM=.false. - export USE_MED_FLUX=.false. - export DAYS=1 - export NPX=97 - export NPY=97 - export NPZ=64 - export NPZP=65 - export NSTF_NAME=2,1,1,0,5 - export OUTPUT_FH="12 -1" - export FHZERO=6 - export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'" - export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'" - export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'" - export FNSOCC="''" - export FNSMCC="'global_soilmgldas.t126.384.190.grb'" - export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" - export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" - export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'" - - # Dynamical core - export FV_CORE_TAU=0. - export RF_CUTOFF=30.0 - export FAST_TAU_W_SEC=0.0 - - # Tiled Fix files - export ATMRES=C96 - export TILEDFIX=.false. +# Replace FV3 variable with old values as needed +export USE_MERRA2=.false. +export WRITE_NSFLIP=.false. + +export DIAG_TABLE=diag_table_gfsv16 +export FIELD_TABLE=field_table_gfsv16 +export FV3_RUN=control_run.IN +export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v16 + +export DOGP_CLDOPTICS_LUT=.false. +export DOGP_LWSCAT=.false. +export IAER=111 +export ICLIQ_SW=1 +export IOVR=1 +export IMP_PHYSICS=11 +export DNATS=1 +export DO_SAT_ADJ=.true. +export LHEATSTRG=.true. +export LSEASPRAY=.false. +export GWD_OPT=1 +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_SS=.false. +export SATMEDMF=.false. +export ISATMEDMF=0 + +export LSM=1 +export LANDICE=.true. +export IALB=1 +export IEMS=1 + +export NSTF_NAME=2,1,1,0,5 +export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'" +export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'" +export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'" +export FNSOCC="''" +export FNSMCC="'global_soilmgldas.t126.384.190.grb'" +export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" +export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" +export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'" + +export RF_CUTOFF=30.0 +export FAST_TAU_W_SEC=0.0 + +export ATMRES=C96 +export TILEDFIX=.false. +export DO_CA=.false. +export CA_SGS=.false. - export ENS_NUM=1 - export SYEAR=2016 - export SMONTH=10 - export SDAY=03 - export SHOUR=00 - export SECS=$(( SHOUR*600 )) - export FHMAX=$(( DAYS*24 )) - export DT_ATMOS=1800 - export FHCYC=24 - export FHROT=0 - export LDIAG3D=.false. - export QDIAG3D=.false. - export PRINT_DIFF_PGR=.false. - export MAX_OUTPUT_FIELDS=310 - - # Stochastic physics - export STOCHINI=.false. - export DO_SPPT=.false. - export DO_SHUM=.false. - export DO_SKEB=.false. - export LNDP_TYPE=0 - export N_VAR_LNDP=0 - export SKEB=-999. - export SPPT=-999. - export SHUM=-999. - export LNDP_VAR_LIST="'XXX'" - export LNDP_PRT_LIST=-999 - export LNDP_MODEL_TYPE=0 - - #IAU - export IAU_INC_FILES="''" - export IAU_DELTHRS=0 - export IAUFHRS=-1 - export IAU_OFFSET=0 - - export FH_DFI_RADAR='-2e10' - - #Cellular automata - export DO_CA=.false. - export CA_SGS=.false. - export CA_GLOBAL=.false. - - #waves - export WW3_RSTDTHR=12 - WW3_DT_2_RST="$(printf "%02d" $(( WW3_RSTDTHR*3600 )))" - export WW3_DT_2_RST - export WW3_OUTDTHR=1 - WW3_DTFLD="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))" - export WW3_DTFLD - WW3_DTPNT="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))" - export WW3_DTPNT - export DTRST=0 - export RSTTYPE=T - export GOFILETYPE=1 - export POFILETYPE=1 - export WW3_OUTPARS="WND HS FP DP PHS PTP PDIR" - export CPLILINE='$' - export ICELINE='$' - export WINDLINE='$' - export CURRLINE='$' - export NFGRIDS=0 - export NMGRIDS=1 - export WW3GRIDLINE="'glo_1deg' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" - export FUNIPNT=T - export IOSRV=1 - export FPNTPROC=T - export FGRDPROC=T - export UNIPOINTS='points' - export FLAGMASKCOMP=' F' - export FLAGMASKOUT=' F' - RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000" - export RUN_BEG - RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000" - export RUN_END - export OUT_BEG=${RUN_BEG} - export OUT_END=${RUN_END} - export RST_BEG=${RUN_BEG} - export RST_2_BEG=${RUN_BEG} - export RST_END=${RUN_END} - export RST_2_END=${RUN_END} - export WW3_CUR='F' - export WW3_ICE='F' - export WW3_IC1='F' - export WW3_IC5='F' - # ATMW - export WW3_MULTIGRID=true - export WW3_MODDEF=mod_def.glo_1deg - export MESH_WAV=mesh.glo_1deg.nc +} - # ATMA - export AOD_FRQ=060000 - # Regional - export WRITE_RESTART_WITH_BCS=.false. +export_fv3 () +{ +if [[ -z ${ATMRES+x} || -z ${ATMRES} ]]; then + export ATMRES=C96 +fi - # Diagnostics - export PRINT_DIFF_PGR=.false. +# ufs.configure defaults +export UFS_CONFIGURE=ufs.configure.atm_esmf.IN +export MODEL_CONFIGURE=model_configure.IN +export atm_model=fv3 + +export FV3=true +export S2S=false +export HAFS=false +export AQM=false +export DATM_CDEPS=false +export DOCN_CDEPS=false +export CDEPS_INLINE=false +export POSTAPP='global' +export USE_MERRA2=.true. + +export NTILES=6 +export INPES=${INPES_dflt} +export JNPES=${JNPES_dflt} +export RESTART_INTERVAL=0 +export QUILTING=.true. +export QUILTING_RESTART=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export ITASKS=1 +export OUTPUT_HISTORY=.true. +export HISTORY_FILE_ON_NATIVE_GRID=.false. +export WRITE_DOPOST=.false. +export NUM_FILES=2 +export FILENAME_BASE="'atm' 'sfc'" +export OUTPUT_GRID="'cubed_sphere_grid'" +export OUTPUT_FILE="'netcdf'" +export ZSTANDARD_LEVEL=0 +export IDEFLATE=0 +export QUANTIZE_NSD=0 +export ICHUNK2D=0 +export JCHUNK2D=0 +export ICHUNK3D=0 +export JCHUNK3D=0 +export KCHUNK3D=0 +export IMO=384 +export JMO=190 +export WRITE_NSFLIP=.true. + +export DZ_MIN=6 +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MIN_LAKEICE=0.15 + +#input file +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN + +export DOMAINS_STACK_SIZE=3000000 + +# Coldstart/warmstart +#rt script for ICs +export MODEL_INITIALIZATION=false +#namelist variable +export WARM_START=.false. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="''" +export NGGPS_IC=.true. +export EXTERNAL_IC=.true. +export MAKE_NH=.true. +export MOUNTAIN=.false. +export NA_INIT=1 + +# Radiation +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. +export USE_LW_JACOBIAN=.false. +export DAMP_LW_FLUXADJ=.false. +export RRTMGP_LW_PHYS_BLKSZ=2 +export ICLOUD=0 +export IAER=1011 +export ICLIQ_SW=2 +export IOVR=3 +export LFNC_K=-999 +export LFNC_P0=-999 + +# Microphysics +export IMP_PHYSICS=8 +export NWAT=6 +# GFDL MP +export DNATS=0 +export DO_SAT_ADJ=.false. +export LHEATSTRG=.false. +export LSEASPRAY=.true. +export LGFDLMPRAD=.false. +export EFFR_IN=.false. +# Thompson MP +export LRADAR=.true. +export LTAEROSOL=.true. +export EXT_DIAG_THOMPSON=.false. +export SEDI_SEMI=.true. +export DECFL=10 +# NSSL MP +export NSSL_CCCN=0.6e9 +export NSSL_ALPHAH=0.0 +export NSSL_ALPHAHL=1.0 +export NSSL_HAIL_ON=.false. +export NSSL_CCN_ON=.true. +export NSSL_INVERTCCN=.true. + +# Smoke +export RRFS_SMOKE=.false. +export SMOKE_FORECAST=0 +export RRFS_RESTART=NO +export SEAS_OPT=2 + +# GWD +export LDIAG_UGWP=.false. +export DO_UGWP=.false. +export DO_TOFD=.false. +export GWD_OPT=2 +export DO_UGWP_V0=.true. +export DO_UGWP_V1_W_GSLDRAG=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export KNOB_UGWP_DOKDIS=1 +export KNOB_UGWP_NDX4LH=1 +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_PALAUNCH=500.e2 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0_NST_ONLY=.false. + +# resolution dependent settings +export CDMBWD_c48='0.071,2.1,1.0,1.0' +export CDMBWD_c96='0.14,1.8,1.0,1.0' +export CDMBWD_c192='0.23,1.5,1.0,1.0' +export CDMBWD_c384='1.1,0.72,1.0,1.0' +export CDMBWD_c768='4.0,0.15,1.0,1.0' + +#DT_INNER=(Time step)/2 +export DT_INNER_c96=360 +export DT_INNER_c192=300 +export DT_INNER_c384=150 +export DT_INNER_c768=75 + +# set default +export CDMBWD=${CDMBWD_c96} +export DT_INNER=${DT_INNER_c96} + +# PBL +export SATMEDMF=.true. +export HYBEDMF=.true. +export SHINHONG=.false. +export DO_YSU=.false. +export DO_MYNNEDMF=.false. +export HURR_PBL=.false. +export MONINQ_FAC=1.0 +export SFCLAY_COMPUTE_FLUX=.false. + +# Shallow/deep convection +export DO_DEEP=.true. +export SHAL_CNV=.true. +export IMFSHALCNV=2 +export HWRF_SAMFSHAL=.false. +export IMFDEEPCNV=2 +export HWRF_SAMFDEEP=.false. +export RAS=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.true. +export PROGSIGMA=.false. +export BETASCU=8.0 +export BETAMCU=1.0 +export BETADCU=2.0 + +# Aerosol convective scavenging +export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc1:0.6","bc2:0.6","oc1:0.4","oc2:0.4","dust1:0.6","dust2:0.6","dust3:0.6","dust4:0.6","dust5:0.6","seas1:0.5","seas2:0.5","seas3:0.5","seas4:0.5","seas5:0.5"' + +# SFC +export DO_MYJSFC=.false. +export DO_MYNNSFCLAY=.false. +export BL_MYNN_TKEADVECT=.false. + +# LSM +export LSM=2 +export LSOIL_LSM=4 +export LANDICE=.false. +export KICE=2 +export IALB=2 +export IEMS=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 + +export IOPT_SFC=3 +export IOPT_TRS=2 +export IOPT_DIAG=2 + +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 + +export DDDMP=0.1 + +# Ozone / stratospheric H2O +export OZ_PHYS_OLD=.true. +export OZ_PHYS_NEW=.false. +export H2O_PHYS=.false. + +# Lake models +export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake points +export IOPT_LAKE=2 # 1=flake, 2=clm lake +export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it +export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it +export FRAC_ICE=.true. # should be false for flake, true for clm_lake + +# Tiled Fix files +export TILEDFIX=.true. + +export CPL=.false. +export CPLCHM=.false. +export CPLFLX=.false. +export CPLICE=.false. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPLLND=.false. +export CPLLND2ATM=.false. +export USE_MED_FLUX=.false. +export DAYS=1 +export NPX=97 +export NPY=97 +export NPZ=64 +export NPZP=65 +export NSTF_NAME=2,1,0,0,0 +export OUTPUT_FH="12 -1" +export FHZERO=6 +export FSICL=0 +export FSICS=0 + +# Dynamical core +export FV_CORE_TAU=0. +export RF_CUTOFF=10.0 +export FAST_TAU_W_SEC=0.2 +export DRY_MASS=98320.0 + +export ENS_NUM=1 +export SYEAR=2016 +export SMONTH=10 +export SDAY=03 +export SHOUR=00 +export SECS=$(( SHOUR*3600 )) +export FHMAX=$(( DAYS*24 )) +export DT_ATMOS=1800 +export FHCYC=24 +export FHROT=0 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.false. +export MAX_OUTPUT_FIELDS=310 + +# Stochastic physics +export STOCHINI=.false. +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 +export SKEB=-999. +export SPPT=-999. +export SHUM=-999. +export LNDP_VAR_LIST="'XXX'" +export LNDP_PRT_LIST=-999 +export LNDP_MODEL_TYPE=0 +export LNDP_TAU=21600, +export LNDP_LSCALE=500000, +export ISEED_LNDP=2010, + +#IAU +export IAU_INC_FILES="''" +export IAU_DELTHRS=0 +export IAUFHRS=-1 +export IAU_OFFSET=0 + +export FH_DFI_RADAR='-2e10' + +#Cellular automata +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +#waves +export WW3_RSTDTHR=12 +WW3_DT_2_RST="$(printf "%02d" $(( WW3_RSTDTHR*3600 )))" +export WW3_DT_2_RST +export WW3_OUTDTHR=1 +WW3_DTFLD="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))" +export WW3_DTFLD +WW3_DTPNT="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))" +export WW3_DTPNT +export DTRST=0 +export RSTTYPE=T +export GOFILETYPE=1 +export POFILETYPE=1 +export WW3_OUTPARS="WND HS FP DP PHS PTP PDIR" +export CPLILINE='$' +export ICELINE='$' +export WINDLINE='$' +export CURRLINE='$' +export NFGRIDS=0 +export NMGRIDS=1 +export WW3GRIDLINE="'glo_1deg' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export FUNIPNT=T +export IOSRV=1 +export FPNTPROC=T +export FGRDPROC=T +export UNIPOINTS='points' +export FLAGMASKCOMP=' F' +export FLAGMASKOUT=' F' +RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000" +export RUN_BEG +RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000" +export RUN_END +export OUT_BEG=${RUN_BEG} +export OUT_END=${RUN_END} +export RST_BEG=${RUN_BEG} +export RST_2_BEG=${RUN_BEG} +export RST_END=${RUN_END} +export RST_2_END=${RUN_END} +export WW3_CUR='F' +export WW3_ICE='F' +export WW3_IC1='F' +export WW3_IC5='F' +# ATMW +export WW3_MULTIGRID=true +export WW3_MODDEF=mod_def.glo_1deg +export MESH_WAV=mesh.glo_1deg.nc + +# ATMA +export AOD_FRQ=060000 + +# Regional +export WRITE_RESTART_WITH_BCS=.false. + +# Diagnostics +export PRINT_DIFF_PGR=.false. + +# Coupling +export coupling_interval_fast_sec=0 +export CHOUR=06 +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ +export MOM6_RESTART_SETTING=n + +# Following not used for standalone +export USE_CICE_ALB=.false. + +# GFDL Cloud Microphysics +export FTSFS=90 + + +# NAM sfc +export FNGLAC="'global_glacier.2x2.grb'" +export FNMXIC="'global_maxice.2x2.grb'" +export FNTSFC="'RTGSST.1982.2012.monthly.clim.grb'" +export FNSNOC="'global_snoclim.1.875.grb'" +export FNZORC="'igbp'" +export FNAISC="'IMS-NIC.blended.ice.monthly.clim.grb'" +} - # Coupling - export coupling_interval_fast_sec=0 - export CHOUR=06 - export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +# Add section for tiled grid namelist +export_tiled() { +export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" +export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" +export FNALBC="'${ATMRES}.snowfree_albedo.tileX.nc'" +export FNALBC2="'${ATMRES}.facsf.tileX.nc'" +export FNTG3C="'${ATMRES}.substrate_temperature.tileX.nc'" +export FNVEGC="'${ATMRES}.vegetation_greenness.tileX.nc'" +export FNVETC="'${ATMRES}.vegetation_type.tileX.nc'" +export FNSOTC="'${ATMRES}.soil_type.tileX.nc'" +export FNSOCC="'${ATMRES}.soil_color.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'${ATMRES}.vegetation_greenness.tileX.nc'" +export FNVMXC="'${ATMRES}.vegetation_greenness.tileX.nc'" +export FNSLPC="'${ATMRES}.slope_type.tileX.nc'" +export FNABSC="'${ATMRES}.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." } # Defaults for the CICE6 model namelist, mx100 @@ -914,195 +1046,178 @@ export_cmeps() { export_cpl () { - export FV3=true - export S2S=true - export HAFS=false - export AQM=false - export DATM_CDEPS=false - export DOCN_CDEPS=false - export CDEPS_INLINE=false - export FV3BMIC='p8c' - export BMIC=.false. - export DAYS=1 - - #model configure - export MODEL_CONFIGURE=model_configure.IN - export SYEAR=2021 - export SMONTH=03 - export SDAY=22 - export SHOUR=06 - export CHOUR=06 - export FHMAX=24 - export FHROT=0 - export DT_ATMOS=720 - export QUILTING_RESTART=.false. - export WRTTASK_PER_GROUP=${WPG_cpl_dflt} - export WRITE_NSFLIP=.true. - export OUTPUT_FH='6 -1' - - # default atm/ocn/ice resolution - export ATMRES=C96 - export OCNRES=100 - export ICERES=1.00 - export NX_GLB=360 - export NY_GLB=320 - export NPZ=127 - export NPZP=128 - - # default resources - export DOMAINS_STACK_SIZE=8000000 - export INPES=${INPES_cpl_dflt} - export JNPES=${JNPES_cpl_dflt} - export THRD=${THRD_cpl_dflt} - export OCN_tasks=${OCN_tasks_cpl_dflt} - export ICE_tasks=${ICE_tasks_cpl_dflt} - export WAV_tasks=${WAV_tasks_cpl_dflt} - - # Set CICE6 component defaults - export_cice6 - - # Set MOM6 component defaults - export_mom6 - - # Set WW3 component defaults - export_ww3 - - # Set CMEPS component defauls - export_cmeps - - # FV3 defaults - export FRAC_GRID=.true. - export CCPP_SUITE=FV3_GFS_v17_coupled_p8 - export INPUT_NML=cpld_control.nml.IN - export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - export DIAG_TABLE=diag_table_cpld.IN - export DIAG_TABLE_ADDITIONAL='' - - export FHZERO=6 - export DT_INNER=${DT_ATMOS} - - # P7 default - export IALB=2 - export IEMS=2 - export LSM=2 - export IOPT_DVEG=4 - export IOPT_CRS=2 - export IOPT_RAD=3 - export IOPT_ALB=1 - export IOPT_STC=3 - # P8 - export IOPT_SFC=3 - export IOPT_TRS=2 - export IOPT_DIAG=2 - - # FV3 P7 settings - export D2_BG_K1=0.20 - export D2_BG_K2=0.04 - #export DZ_MIN=2 - export PSM_BC=1 - export DDDMP=0.1 - - #P8 - export DZ_MIN=6 - - # P7 Merra2 Aerosols & NSST - export USE_MERRA2=.true. - export IAER=1011 - export NSTF_NAME=2,0,0,0,0 - - export LHEATSTRG=.false. - export LSEASPRAY=.true. - - # P7 UGWP1 - export GWD_OPT=2 - export KNOB_UGWP_NSLOPE=1 - export DO_GSL_DRAG_LS_BL=.true. - export DO_GSL_DRAG_SS=.true. - export DO_UGWP_V1_OROG_ONLY=.false. - export DO_UGWP_V0_NST_ONLY=.false. - export LDIAG_UGWP=.false. - #P8 - export DO_GSL_DRAG_TOFD=.false. - export CDMBWD=${CDMBWD_c96} - - # P8 RRTMGP - export DO_RRTMGP=.false. - export DOGP_CLDOPTICS_LUT=.true. - export DOGP_LWSCAT=.true. - export DOGP_SGS_CNV=.true. - - #P8 UGWD - export DO_UGWP_V0=.true. - export DO_UGWP_V1=.false. - export DO_GSL_DRAG_LS_BL=.false. - export KNOB_UGWP_VERSION=0 - - # P7 CA - export DO_CA=.true. - export CA_SGS=.true. - export CA_GLOBAL=.false. - export NCA=1 - export NCELLS=5 - export NLIVES=12 - export NTHRESH=18 - export NSEED=1 - export NFRACSEED=0.5 - export CA_TRIGGER=.true. - export NSPINUP=1 - export ISEED_CA=12345 - - # P7 settings - export FNALBC="'C96.snowfree_albedo.tileX.nc'" - export FNALBC2="'C96.facsf.tileX.nc'" - export FNTG3C="'C96.substrate_temperature.tileX.nc'" - export FNVEGC="'C96.vegetation_greenness.tileX.nc'" - export FNVETC="'C96.vegetation_type.tileX.nc'" - export FNSOTC="'C96.soil_type.tileX.nc'" - export FNSOCC="'C96.soil_color.tileX.nc'" - export FNSMCC=${FNSMCC_control} - export FNMSKH=${FNMSKH_control} - export FNVMNC="'C96.vegetation_greenness.tileX.nc'" - export FNVMXC="'C96.vegetation_greenness.tileX.nc'" - export FNSLPC="'C96.slope_type.tileX.nc'" - export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" - export LANDICE=".false." - #P8 - export FSICL=0 - export FSICS=0 - - # P8 - export USE_CICE_ALB=.true. - export MIN_SEAICE=1.0e-6 - export DNATS=2 - export IMP_PHYSICS=8 - export LGFDLMPRAD=.false. - export DO_SAT_ADJ=.false. - export SATMEDMF=.true. - - # P7 default - export CPLFLX=.true. - export CPLICE=.true. - export CPL=.true. - export CPLWAV=.true. - export CPLWAV2ATM=.true. - export USE_MED_FLUX=.false. - export CPLCHM=.true. - export CPLLND=.false. - - # for FV3: default values will be changed if doing a warm-warm restart - export WARM_START=.false. - export MAKE_NH=.true. - export NA_INIT=1 - export EXTERNAL_IC=.true. - export NGGPS_IC=.true. - export MOUNTAIN=.false. - # gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory - export AOD_FRQ=060000 - - # checkpoint restarts - export RESTART_FILE_PREFIX='' - export RESTART_FILE_SUFFIX_SECS='' - export RT35D='' +export FV3=true +export S2S=true +export HAFS=false +export AQM=false +export DATM_CDEPS=false +export DOCN_CDEPS=false +export CDEPS_INLINE=false +export FV3BMIC='p8c' +export BMIC=.false. +export DAYS=1 + +#model configure +export MODEL_CONFIGURE=model_configure.IN +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export CHOUR=06 +export FHMAX=24 +export FHROT=0 +export DT_ATMOS=720 +export QUILTING_RESTART=.false. +export WRTTASK_PER_GROUP=${WPG_cpl_dflt} +export WRITE_NSFLIP=.true. +export OUTPUT_FH='6 -1' + +# default atm/ocn/ice resolution +export ATMRES=C96 +export OCNRES=100 +export ICERES=1.00 +export NX_GLB=360 +export NY_GLB=320 +export NPZ=127 +export NPZP=128 + +# default resources +export DOMAINS_STACK_SIZE=8000000 +export INPES=${INPES_cpl_dflt} +export JNPES=${JNPES_cpl_dflt} +export THRD=${THRD_cpl_dflt} +export OCN_tasks=${OCN_tasks_cpl_dflt} +export ICE_tasks=${ICE_tasks_cpl_dflt} +export WAV_tasks=${WAV_tasks_cpl_dflt} + +# Set tiled file defaults +export_tiled + +# Set CICE6 component defaults +export_cice6 + +# Set MOM6 component defaults +export_mom6 + +# Set WW3 component defaults +export_ww3 + +# Set CMEPS component defauls +export_cmeps + +# FV3 defaults +export FRAC_GRID=.true. +export CCPP_SUITE=FV3_GFS_v17_coupled_p8 +export INPUT_NML=global_control.nml.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART +export DIAG_TABLE=diag_table_cpld.IN +export DIAG_TABLE_ADDITIONAL='' +export FV3_RUN=cpld_control_run.IN +export TILEDFIX=.false. + +export FHZERO=6 +export DT_INNER=${DT_ATMOS} + +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 + +export IOPT_SFC=3 +export IOPT_TRS=2 +export IOPT_DIAG=2 + +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +export DDDMP=0.1 + +export DZ_MIN=6 + +# Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,0,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# UGWP1 +export GWD_OPT=2 +export KNOB_UGWP_NSLOPE=1 +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +export DO_GSL_DRAG_TOFD=.false. +export CDMBWD=${CDMBWD_c96} + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +# UGWD +export DO_UGWP_V0=.true. +export DO_UGWP_V1=.false. +export DO_GSL_DRAG_LS_BL=.false. +export KNOB_UGWP_VERSION=0 + +# CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +export FSICL=0 +export FSICS=0 + +export USE_CICE_ALB=.true. +export MIN_SEAICE=1.0e-6 +export DNATS=2 +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export SATMEDMF=.true. + +export CPLFLX=.true. +export CPLICE=.true. +export CPL=.true. +export CPLWAV=.true. +export CPLWAV2ATM=.true. +export USE_MED_FLUX=.false. +export CPLCHM=.true. +export CPLLND=.false. + +# for FV3: default values will be changed if doing a warm-warm restart +export WARM_START=.false. +export MAKE_NH=.true. +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +# gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory +export AOD_FRQ=060000 + +# checkpoint restarts +export RESTART_FILE_PREFIX='' +export RESTART_FILE_SUFFIX_SECS='' +export RT35D='' } export_35d_run () { @@ -1298,350 +1413,351 @@ export_hafs_regional () export_hafs () { - export FV3=true - export S2S=false - export HAFS=true - export AQM=false - export DATM_CDEPS=false - export DOCN_CDEPS=false - export CDEPS_INLINE=false - export INPES=${INPES_dflt} - export JNPES=${JNPES_dflt} - export NTILES=1 - export IMFSHALCNV=2 - export IMFDEEPCNV=2 - export HYBEDMF=.false. - export SATMEDMF=.true. - export MONINQ_FAC=-1.0 - export HURR_PBL=.true. - export ISATMEDMF=1 - export IOPT_SFC=1 - export IOPT_DVEG=2 - export IOPT_CRS=1 - export IOPT_RAD=1 - export IOPT_ALB=2 - export IOPT_STC=1 - export LSM=1 - export DO_GSL_DRAG_LS_BL=.true. - export DO_GSL_DRAG_SS=.true. - export DO_GSL_DRAG_TOFD=.true. - export IMP_PHYSICS=11 - export IAER=111 - export CNVGWD=.false. - export LTAEROSOL=.false. - export CDMBWD=1.0,1.0,1.0,1.0 - export LHEATSTRG=.false. - export LRADAR=.true. - - export FV_CORE_TAU=5. - export RF_CUTOFF=30.e2 - export RF_CUTOFF_NEST=50.e2 - - export IS_MOVING_NEST=".false." - export VORTEX_TRACKER=0 - export NTRACK=0 - export MOVE_CD_X=0 - export MOVE_CD_Y=0 - export CPL_IMP_MRG=.true. - - export OUTPUT_GRID='' - export IMO='' - export JMO='' - export CEN_LON='' - export CEN_LAT='' - export LON1='' - export LAT1='' - export LON2='' - export LAT2='' - export DLON='' - export DLAT='' - export STDLAT1='' - export STDLAT2='' - export NX='' - export NY='' - export DX='' - export DY='' - - export OUTPUT_GRID_2='' - export IMO_2='' - export JMO_2='' - export CEN_LON_2='' - export CEN_LAT_2='' - export LON1_2='' - export LAT1_2='' - export LON2_2='' - export LAT2_2='' - export DLON_2='' - export DLAT_2='' - export STDLAT1_2='' - export STDLAT2_2='' - export NX_2='' - export NY_2='' - export DX_2='' - export DY_2='' - - export OUTPUT_GRID_3='' - export IMO_3='' - export JMO_3='' - export CEN_LON_3='' - export CEN_LAT_3='' - export LON1_3='' - export LAT1_3='' - export LON2_3='' - export LAT2_3='' - export DLON_3='' - export DLAT_3='' - export STDLAT1_3='' - export STDLAT2_3='' - export NX_3='' - export NY_3='' - export DX_3='' - export DY_3='' - - export OUTPUT_GRID_4='' - export IMO_4='' - export JMO_4='' - export CEN_LON_4='' - export CEN_LAT_4='' - export LON1_4='' - export LAT1_4='' - export LON2_4='' - export LAT2_4='' - export DLON_4='' - export DLAT_4='' - export STDLAT1_4='' - export STDLAT2_4='' - export NX_4='' - export NY_4='' - export DX_4='' - export DY_4='' - - export OUTPUT_GRID_5='' - export IMO_5='' - export JMO_5='' - export CEN_LON_5='' - export CEN_LAT_5='' - export LON1_5='' - export LAT1_5='' - export LON2_5='' - export LAT2_5='' - export DLON_5='' - export DLAT_5='' - export STDLAT1_5='' - export STDLAT2_5='' - export NX_5='' - export NY_5='' - export DX_5='' - export DY_5='' - - export OUTPUT_GRID_6='' - export IMO_6='' - export JMO_6='' - export CEN_LON_6='' - export CEN_LAT_6='' - export LON1_6='' - export LAT1_6='' - export LON2_6='' - export LAT2_6='' - export DLON_6='' - export DLAT_6='' - export STDLAT1_6='' - export STDLAT2_6='' - export NX_6='' - export NY_6='' - export DX_6='' - export DY_6='' - - export OUTPUT_FH='3 -1' +export_fv3_v16 +export FV3=true +export S2S=false +export HAFS=true +export AQM=false +export DATM_CDEPS=false +export DOCN_CDEPS=false +export CDEPS_INLINE=false +export INPES=${INPES_dflt} +export JNPES=${JNPES_dflt} +export NTILES=1 +export IMFSHALCNV=2 +export IMFDEEPCNV=2 +export HYBEDMF=.false. +export SATMEDMF=.true. +export MONINQ_FAC=-1.0 +export HURR_PBL=.true. +export ISATMEDMF=1 +export IOPT_SFC=1 +export IOPT_DVEG=2 +export IOPT_CRS=1 +export IOPT_RAD=1 +export IOPT_ALB=2 +export IOPT_STC=1 +export LSM=1 +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export IMP_PHYSICS=11 +export IAER=111 +export CNVGWD=.false. +export LTAEROSOL=.false. +export CDMBWD=1.0,1.0,1.0,1.0 +export LHEATSTRG=.false. +export LRADAR=.true. + +export FV_CORE_TAU=5. +export RF_CUTOFF=30.e2 +export RF_CUTOFF_NEST=50.e2 + +export IS_MOVING_NEST=".false." +export VORTEX_TRACKER=0 +export NTRACK=0 +export MOVE_CD_X=0 +export MOVE_CD_Y=0 +export CPL_IMP_MRG=.true. + +export OUTPUT_GRID='' +export IMO='' +export JMO='' +export CEN_LON='' +export CEN_LAT='' +export LON1='' +export LAT1='' +export LON2='' +export LAT2='' +export DLON='' +export DLAT='' +export STDLAT1='' +export STDLAT2='' +export NX='' +export NY='' +export DX='' +export DY='' + +export OUTPUT_GRID_2='' +export IMO_2='' +export JMO_2='' +export CEN_LON_2='' +export CEN_LAT_2='' +export LON1_2='' +export LAT1_2='' +export LON2_2='' +export LAT2_2='' +export DLON_2='' +export DLAT_2='' +export STDLAT1_2='' +export STDLAT2_2='' +export NX_2='' +export NY_2='' +export DX_2='' +export DY_2='' + +export OUTPUT_GRID_3='' +export IMO_3='' +export JMO_3='' +export CEN_LON_3='' +export CEN_LAT_3='' +export LON1_3='' +export LAT1_3='' +export LON2_3='' +export LAT2_3='' +export DLON_3='' +export DLAT_3='' +export STDLAT1_3='' +export STDLAT2_3='' +export NX_3='' +export NY_3='' +export DX_3='' +export DY_3='' + +export OUTPUT_GRID_4='' +export IMO_4='' +export JMO_4='' +export CEN_LON_4='' +export CEN_LAT_4='' +export LON1_4='' +export LAT1_4='' +export LON2_4='' +export LAT2_4='' +export DLON_4='' +export DLAT_4='' +export STDLAT1_4='' +export STDLAT2_4='' +export NX_4='' +export NY_4='' +export DX_4='' +export DY_4='' + +export OUTPUT_GRID_5='' +export IMO_5='' +export JMO_5='' +export CEN_LON_5='' +export CEN_LAT_5='' +export LON1_5='' +export LAT1_5='' +export LON2_5='' +export LAT2_5='' +export DLON_5='' +export DLAT_5='' +export STDLAT1_5='' +export STDLAT2_5='' +export NX_5='' +export NY_5='' +export DX_5='' +export DY_5='' + +export OUTPUT_GRID_6='' +export IMO_6='' +export JMO_6='' +export CEN_LON_6='' +export CEN_LAT_6='' +export LON1_6='' +export LAT1_6='' +export LON2_6='' +export LAT2_6='' +export DLON_6='' +export DLAT_6='' +export STDLAT1_6='' +export STDLAT2_6='' +export NX_6='' +export NY_6='' +export DX_6='' +export DY_6='' + +export OUTPUT_FH='3 -1' } export_hrrr() { - export_fv3 - export NPZ=127 - export NPZP=128 - export DT_ATMOS=300 - export SYEAR=2021 - export SMONTH=03 - export SDAY=22 - export SHOUR=06 - export OUTPUT_GRID='gaussian_grid' - export NSTF_NAME='2,0,0,0,0' - export WRITE_DOPOST=.true. - export IAER=5111 - export FHMAX=12 - - export FRAC_GRID=.false. - export FRAC_ICE=.true. - - export FV_CORE_TAU=10. - export RF_CUTOFF=7.5e2 - - export FV3_RUN=lake_control_run.IN - export CCPP_SUITE=FV3_HRRR - export INPUT_NML=rap.nml.IN - export FIELD_TABLE=field_table_thompson_aero_tke - export NEW_DIAGTABLE=diag_table_rap - - export SFCLAY_COMPUTE_FLUX=.true. - - export LKM=1 - export IOPT_LAKE=2 - export IMP_PHYSICS=8 - export DNATS=0 - export DO_SAT_ADJ=.false. - export LRADAR=.true. - export LTAEROSOL=.true. - export IALB=2 - export IEMS=2 - export HYBEDMF=.false. - export DO_MYNNEDMF=.true. - export DO_MYNNSFCLAY=.true. - export DO_DEEP=.false. - export SHAL_CNV=.false. - export IMFSHALCNV=-1 - export IMFDEEPCNV=-1 - export LHEATSTRG=.false. - export LSM=3 - export LSOIL_LSM=9 - export KICE=9 - - export GWD_OPT=3 - export DO_UGWP_V0=.false. - export DO_UGWP_V0_OROG_ONLY=.false. - export DO_GSL_DRAG_LS_BL=.true. - export DO_GSL_DRAG_SS=.true. - export DO_GSL_DRAG_TOFD=.true. - export DO_UGWP_V1=.false. - export DO_UGWP_V1_OROG_ONLY=.false. +export_fv3_v16 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export FHMAX=12 + +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV_CORE_TAU=10. +export RF_CUTOFF=7.5e2 + +export FV3_RUN=lake_control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export NEW_DIAGTABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.true. + +export LKM=1 +export IOPT_LAKE=2 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. } export_hrrr_conus13km() { - export_fv3 - export SYEAR=2021 - export SMONTH=05 - export SDAY=12 - export SHOUR=16 - export FHMAX=2 - export DT_ATMOS=120 - export RESTART_INTERVAL=1 - export QUILTING=.true. - export WRITE_GROUP=1 - export WRTTASK_PER_GROUP=6 - export NTILES=1 - export WRITE_DOPOST=.false. - export OUTPUT_HISTORY=.true. - export OUTPUT_GRID=lambert_conformal - export OUTPUT_FILE="'netcdf'" - - # Revert these two to GFS_typedefs defaults to avoid a crash: - export SEDI_SEMI=.false. - export DECFL=8 - - export RRFS_SMOKE=.true. - export SEAS_OPT=0 - - export LKM=1 - export SFCLAY_COMPUTE_FLUX=.true. - export IALB=2 - export ICLIQ_SW=2 - export IEMS=2 - export IOVR=3 - export KICE=9 - export LSM=3 - export LSOIL_LSM=9 - export DO_MYNNSFCLAY=.true. - export DO_MYNNEDMF=.true. - export HYBEDMF=.false. - export SHAL_CNV=.false. - export DO_SAT_ADJ=.false. - export DO_DEEP=.false. - export CCPP_SUITE='FV3_HRRR' - export INPES=12 - export JNPES=12 - export NPX=397 - export NPY=233 - export NPZ=65 - export MAKE_NH=.false. - export NA_INIT=0 - export DNATS=0 - export EXTERNAL_IC=.false. - export NGGPS_IC=.false. - export MOUNTAIN=.true. - export WARM_START=.true. - export READ_INCREMENT=.false. - export RES_LATLON_DYNAMICS="'fv3_increment.nc'" - export NPZP=66 - export FHZERO=1.0 - export IMP_PHYSICS=8 - export LDIAG3D=.false. - export QDIAG3D=.false. - export PRINT_DIFF_PGR=.true. - export FHCYC=0.0 - export IAER=1011 - export LHEATSTRG=.false. - export RANDOM_CLDS=.false. - export CNVCLD=.false. - export IMFSHALCNV=-1 - export IMFDEEPCNV=-1 - export CDMBWD='3.5,1.0' - export DO_SPPT=.false. - export DO_SHUM=.false. - export DO_SKEB=.false. - export LNDP_TYPE=0 - export N_VAR_LNDP=0 - - export GWD_OPT=3 - export DO_UGWP_V0=.false. - export DO_UGWP_V0_OROG_ONLY=.false. - export DO_GSL_DRAG_LS_BL=.true. - export DO_GSL_DRAG_SS=.true. - export DO_GSL_DRAG_TOFD=.true. - export DO_UGWP_V1=.false. - export DO_UGWP_V1_OROG_ONLY=.false. - - export FV3_RUN=rrfs_warm_run.IN - export INPUT_NML=rrfs_conus13km_hrrr.nml.IN - export FIELD_TABLE=field_table_thompson_aero_tke_smoke - export DIAG_TABLE=diag_table_hrrr - export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - export FRAC_ICE=.true. +export_fv3_v16 +export SYEAR=2021 +export SMONTH=05 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export RRFS_SMOKE=.true. +export SEAS_OPT=0 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=1011 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_smoke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke +export FRAC_ICE=.true. } export_rap_common() { -export_fv3 - export NPZ=127 - export NPZP=128 - export DT_ATMOS=300 - export SYEAR=2021 - export SMONTH=03 - export SDAY=22 - export SHOUR=06 - export OUTPUT_GRID='gaussian_grid' - export NSTF_NAME='2,0,0,0,0' - export WRITE_DOPOST=.true. - export IAER=5111 - - export FV_CORE_TAU=10. - export RF_CUTOFF=7.5e2 - - export FV3_RUN=control_run.IN - export INPUT_NML=rap.nml.IN - export FIELD_TABLE=field_table_thompson_aero_tke - - export LHEATSTRG=.false. - export IMP_PHYSICS=8 - export DNATS=0 - export DO_SAT_ADJ=.false. - export LRADAR=.true. - export LTAEROSOL=.true. - export IALB=2 - export IEMS=2 - export HYBEDMF=.false. - export DO_MYNNEDMF=.true. - export DO_MYNNSFCLAY=.true. +export_fv3_v16 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 + +export FV_CORE_TAU=10. +export RF_CUTOFF=7.5e2 + +export FV3_RUN=control_run.IN +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke + +export LHEATSTRG=.false. +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. } export_rap() diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index ca3a06a77c..29b8a01b8a 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Apr 18 13:16:52 UTC 2024 +Fri Apr 19 19:57:57 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/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 = 273.642666 - 0: The maximum resident set size (KB) = 1250952 + 0: The total amount of wall time = 272.557598 + 0: The maximum resident set size (KB) = 1254932 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/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 = 951.737374 - 0: The maximum resident set size (KB) = 1234892 + 0: The total amount of wall time = 959.903328 + 0: The maximum resident set size (KB) = 1232448 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/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 = 231.272825 - 0: The maximum resident set size (KB) = 1232708 + 0: The total amount of wall time = 241.225092 + 0: The maximum resident set size (KB) = 1230688 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/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 = 237.359756 - 0: The maximum resident set size (KB) = 1240676 + 0: The total amount of wall time = 236.258585 + 0: The maximum resident set size (KB) = 1236816 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/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 = 237.824946 - 0: The maximum resident set size (KB) = 1232292 + 0: The total amount of wall time = 235.269569 + 0: The maximum resident set size (KB) = 1231588 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/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 = 240.136006 - 0: The maximum resident set size (KB) = 1230264 + 0: The total amount of wall time = 240.429501 + 0: The maximum resident set size (KB) = 1232412 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/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 = 235.571519 - 0: The maximum resident set size (KB) = 1233056 + 0: The total amount of wall time = 237.774632 + 0: The maximum resident set size (KB) = 1232820 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Apr 18 14:32:34 UTC 2024 -Elapsed time: 01h:15m:44s. Have a nice day! +Fri Apr 19 20:59:04 UTC 2024 +Elapsed time: 01h:01m:08s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 4890b07943..1cbca13a85 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Thu Apr 18 17:53:39 UTC 2024 +Mon Apr 22 14:31:53 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2291890/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,83 +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 = 1575.086435 - 0: The maximum resident set size (KB) = 1345260 + 0: The total amount of wall time = 1572.129737 + 0: The maximum resident set size (KB) = 1368184 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/rst_rst -Checking test rst results .... - Comparing sfcf021.tile1.nc .....USING NCCMP......OK - Comparing sfcf021.tile2.nc .....USING NCCMP......OK - Comparing sfcf021.tile3.nc .....USING NCCMP......OK - Comparing sfcf021.tile4.nc .....USING NCCMP......OK - Comparing sfcf021.tile5.nc .....USING NCCMP......OK - Comparing sfcf021.tile6.nc .....USING NCCMP......OK - Comparing atmf021.tile1.nc .....USING NCCMP......OK - Comparing atmf021.tile2.nc .....USING NCCMP......OK - Comparing atmf021.tile3.nc .....USING NCCMP......OK - Comparing atmf021.tile4.nc .....USING NCCMP......OK - Comparing atmf021.tile5.nc .....USING NCCMP......OK - Comparing atmf021.tile6.nc .....USING NCCMP......OK - Comparing sfcf024.tile1.nc .....USING NCCMP......OK - Comparing sfcf024.tile2.nc .....USING NCCMP......OK - Comparing sfcf024.tile3.nc .....USING NCCMP......OK - Comparing sfcf024.tile4.nc .....USING NCCMP......OK - Comparing sfcf024.tile5.nc .....USING NCCMP......OK - Comparing sfcf024.tile6.nc .....USING NCCMP......OK - Comparing atmf024.tile1.nc .....USING NCCMP......OK - Comparing atmf024.tile2.nc .....USING NCCMP......OK - Comparing atmf024.tile3.nc .....USING NCCMP......OK - Comparing atmf024.tile4.nc .....USING NCCMP......OK - Comparing atmf024.tile5.nc .....USING NCCMP......OK - Comparing atmf024.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK - 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 = 412.335686 - 0: The maximum resident set size (KB) = 1345900 - -Test rst PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2291890/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +136,80 @@ 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 = 416.527929 - 0: The maximum resident set size (KB) = 1341108 + 0: The total amount of wall time = 386.377672 + 0: The maximum resident set size (KB) = 1358644 Test std_base PASS + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3301844/rst_rst +Checking test rst results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK + 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 = 389.040798 + 0: The maximum resident set size (KB) = 1360268 + +Test rst PASS + OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Apr 18 19:21:18 UTC 2024 -Elapsed time: 01h:27m:39s. Have a nice day! +Mon Apr 22 19:14:09 UTC 2024 +Elapsed time: 00h:31m:32s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 2fbba640bb..c7200df608 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Apr 18 15:29:26 UTC 2024 +Mon Apr 22 12:33:48 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -14,14 +14,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2213.723834 - 0: The maximum resident set size (KB) = 542640 + 0: The total amount of wall time = 2123.028031 + 0: The maximum resident set size (KB) = 556456 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2173.765133 - 0: The maximum resident set size (KB) = 539832 + 0: The total amount of wall time = 2146.624346 + 0: The maximum resident set size (KB) = 561996 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -51,11 +51,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2243.570995 - 0: The maximum resident set size (KB) = 541576 + 0: The total amount of wall time = 2265.288036 + 0: The maximum resident set size (KB) = 556412 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Apr 18 17:37:11 UTC 2024 -Elapsed time: 02h:07m:46s. Have a nice day! +Mon Apr 22 14:30:55 UTC 2024 +Elapsed time: 01h:57m:08s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 5766e9df76..25a1acb339 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -d164b650b97d4c4a68ab86c55f2254f29767da2b +ac0c99fef9ec63df227e1ffff63088c8ec7ecbb1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -35,267 +35,262 @@ 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-20240417 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42534 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22222 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:51] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:09, 02:10](3039 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:09] -PASS -- TEST 'cpld_control_gfsv17_intel' [23:12, 03:04](1648 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [52:00, 03:04](1795 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [50:51, 02:59](900 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:45, 03:37](1624 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:42] -PASS -- TEST 'cpld_debug_gfsv17_intel' [36:15, 02:36](1679 MB) - -PASS -- COMPILE 's2swa_intel' [11:26, 10:52] -PASS -- TEST 'cpld_control_p8_intel' [30:07, 02:11](3068 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:07, 02:22](3067 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:32, 01:09](3124 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [30:07, 01:35](3093 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [21:05, 02:22](3145 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [30:07, 02:36](3381 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [30:07, 01:37](3066 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [30:08, 02:05](2990 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:07, 02:27](3070 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [30:07, 02:22](3037 MB) - -PASS -- COMPILE 's2sw_intel' [11:26, 10:30] -PASS -- TEST 'cpld_control_noaero_p8_intel' [30:07, 01:09](1643 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:07, 01:34](1696 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:25, 09:50] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:13, 02:27](1696 MB) - -PASS -- COMPILE 's2s_intel' [10:24, 09:42] -PASS -- TEST 'cpld_control_c48_intel' [31:08, 01:03](2674 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:00] -PASS -- TEST 'cpld_control_p8_faster_intel' [26:04, 02:27](3063 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 16:26] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:29, 02:00](1668 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [52:26, 01:22](966 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [49:45, 02:02](1644 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:19, 04:10] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:15, 01:15](1680 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 10:05] -PASS -- TEST 'control_flake_intel' [25:50, 00:34](634 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [25:50, 00:46](584 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:50, 01:05](590 MB) -PASS -- TEST 'control_latlon_intel' [25:50, 00:59](584 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:50, 01:08](584 MB) -PASS -- TEST 'control_c48_intel' [25:49, 01:07](736 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [25:49, 00:45](737 MB) -PASS -- TEST 'control_c192_intel' [25:50, 01:28](699 MB) -PASS -- TEST 'control_c384_intel' [25:54, 02:15](1008 MB) -PASS -- TEST 'control_c384gdas_intel' [25:54, 03:43](1157 MB) -PASS -- TEST 'control_stochy_intel' [25:50, 00:43](590 MB) -PASS -- TEST 'control_stochy_restart_intel' [10:02, 00:24](391 MB) -PASS -- TEST 'control_lndp_intel' [21:40, 00:55](589 MB) -PASS -- TEST 'control_iovr4_intel' [20:50, 00:37](584 MB) -PASS -- TEST 'control_iovr5_intel' [20:42, 01:20](584 MB) -PASS -- TEST 'control_p8_intel' [19:52, 02:22](1564 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [18:50, 02:39](1563 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [18:22, 02:00](1573 MB) -PASS -- TEST 'control_restart_p8_intel' [04:10, 02:45](750 MB) -PASS -- TEST 'control_noqr_p8_intel' [14:51, 01:25](1551 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:53, 01:23](753 MB) -PASS -- TEST 'control_decomp_p8_intel' [14:50, 01:17](1557 MB) -PASS -- TEST 'control_2threads_p8_intel' [12:00, 01:13](1657 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:43, 01:22](1563 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:02, 02:17](1624 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:25, 01:52](1572 MB) -PASS -- TEST 'merra2_thompson_intel' [09:14, 02:37](1575 MB) -PASS -- TEST 'regional_control_intel' [09:01, 00:35](629 MB) -PASS -- TEST 'regional_restart_intel' [59:55, 00:35](797 MB) -PASS -- TEST 'regional_decomp_intel' [09:01, 01:07](628 MB) -PASS -- TEST 'regional_2threads_intel' [08:51, 00:17](723 MB) -PASS -- TEST 'regional_noquilt_intel' [07:59, 00:39](1164 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:56, 00:35](630 MB) -PASS -- TEST 'regional_wofs_intel' [58:51, 00:52](1600 MB) - -PASS -- COMPILE 'ifi_intel' [09:22, 08:40] -PASS -- TEST 'regional_ifi_control_intel' [26:50, 00:36](630 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [26:50, 00:44](628 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [26:51, 00:33](724 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:22] -PASS -- TEST 'rap_control_intel' [07:21, 02:32](973 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 01:18](1150 MB) -PASS -- TEST 'rap_decomp_intel' [06:58, 02:00](974 MB) -PASS -- TEST 'rap_2threads_intel' [05:57, 01:43](1057 MB) -PASS -- TEST 'rap_restart_intel' [42:02, 02:39](845 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:15, 03:03](967 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [03:46, 02:11](967 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [38:26, 02:35](843 MB) -PASS -- TEST 'hrrr_control_intel' [03:43, 02:33](962 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [03:24, 02:19](966 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:12, 02:23](1046 MB) -PASS -- TEST 'hrrr_control_restart_intel' [37:31, 00:42](794 MB) -PASS -- TEST 'rrfs_v1beta_intel' [03:06, 02:17](965 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [02:55, 00:23](1929 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [02:51, 01:19](1918 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:58] -PASS -- TEST 'control_csawmg_intel' [02:22, 00:31](657 MB) -PASS -- TEST 'control_csawmgt_intel' [02:20, 00:27](654 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 08:45] -PASS -- TEST 'control_wam_intel' [02:00, 01:01](329 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 09:09] -PASS -- TEST 'control_p8_faster_intel' [00:38, 02:49](1562 MB) -PASS -- TEST 'regional_control_faster_intel' [00:19, 00:37](627 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:18, 04:28] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [59:56, 00:20](753 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [59:55, 01:22](756 MB) -PASS -- TEST 'control_stochy_debug_intel' [58:04, 00:31](760 MB) -PASS -- TEST 'control_lndp_debug_intel' [57:22, 00:29](758 MB) -PASS -- TEST 'control_csawmg_debug_intel' [54:58, 01:19](801 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [54:40, 00:48](802 MB) -PASS -- TEST 'control_ras_debug_intel' [53:18, 00:38](769 MB) -PASS -- TEST 'control_diag_debug_intel' [53:09, 00:49](818 MB) -PASS -- TEST 'control_debug_p8_intel' [47:51, 01:09](1586 MB) -PASS -- TEST 'regional_debug_intel' [42:00, 00:34](676 MB) -PASS -- TEST 'rap_control_debug_intel' [42:01, 01:10](1140 MB) -PASS -- TEST 'hrrr_control_debug_intel' [39:08, 01:04](1137 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [37:31, 00:32](1145 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [34:52, 01:10](1140 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [34:20, 00:26](1147 MB) -PASS -- TEST 'rap_diag_debug_intel' [33:40, 01:18](1232 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [33:06, 00:26](1140 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [32:55, 00:28](1146 MB) -PASS -- TEST 'rap_lndp_debug_intel' [31:50, 00:38](1151 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:55, 00:36](1140 MB) -PASS -- TEST 'rap_noah_debug_intel' [29:04, 00:29](1141 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [28:44, 00:44](1143 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:49, 00:24](1141 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [27:47, 00:41](1138 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [27:32, 00:39](1145 MB) -PASS -- TEST 'rap_flake_debug_intel' [26:49, 00:30](1147 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:20, 03:06](1147 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:20, 03:12] -PASS -- TEST 'control_wam_debug_intel' [24:19, 00:14](368 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:25, 08:29] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [24:07, 01:33](1014 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:32, 02:53](849 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:06, 04:00](849 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:30, 02:59](909 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [19:44, 03:43](905 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:11, 02:19](849 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:42, 01:52](745 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:13, 00:23](731 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:29, 10:35] -PASS -- TEST 'conus13km_control_intel' [18:09, 01:11](1056 MB) -PASS -- TEST 'conus13km_2threads_intel' [41:19, 00:51](1035 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [40:45, 00:48](935 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:45, 08:35] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:03, 01:03](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:40, 03:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:46, 00:40](1021 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:42, 00:50](1019 MB) -PASS -- TEST 'conus13km_debug_intel' [16:17, 01:28](1122 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 00:42](807 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:37, 00:43](1086 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:37, 00:24](1193 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [24:39, 03:19] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:20, 01:15](1043 MB) - -PASS -- COMPILE 'hafsw_intel' [31:47, 09:46] -PASS -- TEST 'hafs_regional_atm_intel' [13:58, 01:41](672 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:45, 00:25](1018 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:11, 02:14](714 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [12:05, 01:59](838 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [12:05, 01:26](767 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:22, 01:35](433 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:09, 02:05](461 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [11:06, 01:04](334 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:04, 02:25](395 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:49, 01:19](469 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:38, 01:44](471 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:06, 01:14](529 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:29, 00:41](361 MB) -PASS -- TEST 'gnv1_nested_intel' [04:52, 01:35](738 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [24:37, 03:55] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:35, 00:43](626 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:36, 10:07] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:28, 01:27](581 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:16, 00:53](747 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:38, 09:57] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [03:01, 00:54](748 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:39, 09:19] -PASS -- TEST 'hafs_regional_docn_intel' [00:44, 02:01](711 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [59:50, 01:24](702 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [57:13, 00:15](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:26, 07:56] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:35, 00:27](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [48:11, 00:17](737 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:00, 00:34](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [50:41, 00:17](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [49:39, 01:12](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [48:13, 01:02](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [47:54, 01:02](748 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [47:38, 00:26](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [47:19, 00:56](649 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [46:13, 01:46](636 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [45:16, 00:34](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [44:00, 01:03](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [43:23, 00:34](2017 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:33, 08:21] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [43:11, 00:37](746 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [55:13, 01:02] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [41:51, 00:55](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:14, 01:03](413 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [36:39, 01:02](412 MB) - -PASS -- COMPILE 'atml_intel' [05:24, 10:08] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:35, 02:31](1602 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [38:56, 02:49](1599 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [29:14, 01:07](803 MB) - -PASS -- COMPILE 'atmw_intel' [02:17, 09:05] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:47, 02:11](1603 MB) - -PASS -- COMPILE 'atmwm_intel' [02:19, 09:05] -PASS -- TEST 'control_atmwav_intel' [38:39, 02:04](598 MB) - -PASS -- COMPILE 'atmaero_intel' [05:23, 09:01] -PASS -- TEST 'atmaero_control_p8_intel' [38:34, 01:38](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [38:13, 01:44](2969 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:10, 01:46](2987 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [17:31, 03:26] -PASS -- TEST 'regional_atmaq_debug_intel' [37:37, 02:11](4513 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:24, 10:54] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 02:14](3039 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:31] +PASS -- TEST 'cpld_control_gfsv17_intel' [03:54, 03:05](1652 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:17, 03:12](1802 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [41:43, 03:14](926 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [03:55, 01:49](1626 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:18, 04:32] +PASS -- TEST 'cpld_debug_gfsv17_intel' [16:07, 02:55](1678 MB) + +PASS -- COMPILE 's2swa_intel' [13:26, 10:38] +PASS -- TEST 'cpld_control_p8_intel' [08:58, 01:47](3068 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 02:32](3067 MB) +PASS -- TEST 'cpld_restart_p8_intel' [54:51, 01:57](3124 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 01:49](3095 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [53:20, 01:02](3145 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:58, 02:17](3384 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:58, 01:47](3066 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:59, 02:13](2997 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 01:51](3068 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 01:44](3034 MB) + +PASS -- COMPILE 's2sw_intel' [12:25, 10:13] +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:59, 01:56](1644 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:59, 02:22](1696 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:25, 09:54] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:59, 02:22](1697 MB) + +PASS -- COMPILE 's2s_intel' [12:25, 09:44] +PASS -- TEST 'cpld_control_c48_intel' [09:58, 00:53](2673 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:09] +PASS -- TEST 'cpld_control_p8_faster_intel' [04:54, 02:26](3065 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:32, 15:35] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [03:52, 01:18](1668 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:45, 01:30](973 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:16, 01:45](1643 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:24, 04:24] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:01, 01:48](1687 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:30, 10:11] +PASS -- TEST 'control_flake_intel' [59:36, 00:46](634 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [59:36, 01:17](1532 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [59:36, 01:18](1536 MB) +PASS -- TEST 'control_latlon_intel' [59:36, 00:21](1532 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [59:36, 00:32](1537 MB) +PASS -- TEST 'control_c48_intel' [59:35, 01:35](1613 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [59:35, 00:58](736 MB) +PASS -- TEST 'control_c192_intel' [59:36, 01:24](1650 MB) +PASS -- TEST 'control_c384_intel' [59:40, 02:05](1969 MB) +PASS -- TEST 'control_c384gdas_intel' [59:40, 03:24](1150 MB) +PASS -- TEST 'control_stochy_intel' [59:36, 00:29](590 MB) +PASS -- TEST 'control_stochy_restart_intel' [54:00, 00:53](393 MB) +PASS -- TEST 'control_lndp_intel' [59:31, 00:42](591 MB) +PASS -- TEST 'control_iovr4_intel' [58:33, 00:22](584 MB) +PASS -- TEST 'control_iovr5_intel' [58:24, 01:10](585 MB) +PASS -- TEST 'control_p8_intel' [56:39, 02:34](1563 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [56:39, 02:27](1563 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [55:35, 02:25](1572 MB) +PASS -- TEST 'control_restart_p8_intel' [28:30, 02:18](751 MB) +PASS -- TEST 'control_noqr_p8_intel' [55:21, 02:33](1558 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [28:30, 02:19](754 MB) +PASS -- TEST 'control_decomp_p8_intel' [53:33, 02:27](1563 MB) +PASS -- TEST 'control_2threads_p8_intel' [53:20, 01:06](1653 MB) +PASS -- TEST 'control_p8_lndp_intel' [52:32, 00:43](1563 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [52:31, 02:24](1619 MB) +PASS -- TEST 'control_p8_mynn_intel' [51:54, 02:38](1572 MB) +PASS -- TEST 'merra2_thompson_intel' [49:55, 02:52](1579 MB) +PASS -- TEST 'regional_control_intel' [48:13, 00:48](629 MB) +PASS -- TEST 'regional_restart_intel' [39:09, 01:08](801 MB) +PASS -- TEST 'regional_decomp_intel' [47:02, 00:14](628 MB) +PASS -- TEST 'regional_2threads_intel' [46:57, 00:17](723 MB) +PASS -- TEST 'regional_noquilt_intel' [45:04, 00:29](1168 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [44:10, 01:06](633 MB) +PASS -- TEST 'regional_wofs_intel' [43:21, 01:01](1607 MB) + +PASS -- COMPILE 'ifi_intel' [09:23, 08:35] +PASS -- TEST 'regional_ifi_control_intel' [01:36, 00:34](630 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [01:36, 00:51](628 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [01:37, 00:45](718 MB) + +PASS -- COMPILE 'rrfs_intel' [31:46, 09:12] +PASS -- TEST 'rap_control_intel' [38:13, 02:12](970 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [38:14, 00:49](1146 MB) +PASS -- TEST 'rap_decomp_intel' [37:03, 01:42](970 MB) +PASS -- TEST 'rap_2threads_intel' [34:44, 02:34](1058 MB) +PASS -- TEST 'rap_restart_intel' [19:09, 02:24](845 MB) +PASS -- TEST 'rap_sfcdiff_intel' [32:06, 02:37](972 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:08, 02:07](971 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [18:32, 02:54](847 MB) +PASS -- TEST 'hrrr_control_intel' [30:25, 02:25](963 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [29:22, 01:52](966 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [28:49, 01:31](1048 MB) +PASS -- TEST 'hrrr_control_restart_intel' [21:51, 00:32](796 MB) +PASS -- TEST 'rrfs_v1beta_intel' [28:42, 03:06](965 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [28:38, 00:40](1929 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [27:59, 00:36](1918 MB) + +PASS -- COMPILE 'csawmg_intel' [53:14, 08:43] +PASS -- TEST 'control_csawmg_intel' [16:45, 00:48](656 MB) + +PASS -- COMPILE 'wam_intel' [58:20, 08:29] +PASS -- TEST 'control_wam_intel' [11:07, 00:48](329 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [58:20, 09:05] +PASS -- TEST 'control_p8_faster_intel' [10:17, 02:47](1559 MB) +PASS -- TEST 'regional_control_faster_intel' [10:02, 00:32](626 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [53:13, 04:41] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:44, 00:42](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:44, 00:43](1559 MB) +PASS -- TEST 'control_stochy_debug_intel' [15:44, 00:52](760 MB) +PASS -- TEST 'control_lndp_debug_intel' [15:44, 01:10](761 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:44, 00:58](798 MB) +PASS -- TEST 'control_ras_debug_intel' [15:44, 00:34](767 MB) +PASS -- TEST 'control_diag_debug_intel' [15:44, 01:07](1619 MB) +PASS -- TEST 'control_debug_p8_intel' [15:44, 01:13](1589 MB) +PASS -- TEST 'regional_debug_intel' [15:43, 00:48](687 MB) +PASS -- TEST 'rap_control_debug_intel' [15:44, 01:06](1146 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:44, 00:53](1139 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [15:44, 00:47](1141 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [15:01, 01:10](1141 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:58, 00:19](1151 MB) +PASS -- TEST 'rap_diag_debug_intel' [12:37, 00:47](1231 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:15, 01:04](1145 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:13, 00:50](1146 MB) +PASS -- TEST 'rap_lndp_debug_intel' [11:53, 01:13](1149 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:03, 00:47](1146 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:03, 00:44](1144 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:57, 00:28](1143 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:47, 00:35](1141 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:06, 00:43](1139 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:05, 00:40](1147 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:05, 00:31](1145 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:17, 02:53](1148 MB) + +PASS -- COMPILE 'wam_debug_intel' [48:05, 03:18] +PASS -- TEST 'control_wam_debug_intel' [16:48, 00:59](370 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [52:09, 08:29] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:29, 01:16](1015 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:25, 03:07](850 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:21, 03:54](846 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:18, 02:58](914 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:32](897 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 03:20](849 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [37:41, 01:48](744 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [33:27, 01:10](729 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [54:14, 10:43] +PASS -- TEST 'conus13km_control_intel' [04:59, 00:46](1056 MB) +PASS -- TEST 'conus13km_2threads_intel' [30:06, 00:36](1036 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [30:05, 00:37](935 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [50:04, 08:47] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 00:58](872 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [42:57, 03:23] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:38, 01:09](1019 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:38, 01:17](1023 MB) +PASS -- TEST 'conus13km_debug_intel' [16:38, 01:25](1111 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:38, 01:18](811 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:39, 00:36](1100 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:38, 00:21](1177 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:35, 03:23] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:37, 01:03](1044 MB) + +PASS -- COMPILE 'hafsw_intel' [10:24, 09:50] +PASS -- TEST 'hafs_regional_atm_intel' [04:20, 02:14](673 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:05, 00:29](1019 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [02:36, 02:17](713 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [01:20, 01:41](755 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [01:16, 01:57](767 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:12, 01:35](439 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [59:49, 01:50](460 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [59:38, 01:07](332 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:41, 02:35](397 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:27, 01:19](474 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:25, 00:59](470 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:22, 00:51](531 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:16, 00:50](365 MB) +PASS -- TEST 'gnv1_nested_intel' [57:33, 01:46](732 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:16, 03:46] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:13, 01:32](626 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:24, 10:23] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [56:22, 01:24](579 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:03, 01:31](746 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:24, 10:12] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [56:03, 01:10](749 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:34, 09:32] +PASS -- TEST 'hafs_regional_docn_intel' [55:10, 01:50](709 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:23, 01:48](696 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:03, 01:05](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [20:34, 07:49] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:32, 00:24](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [48:09, 00:50](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:15, 00:32](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [48:57, 00:14](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [46:52, 00:34](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [46:13, 00:54](762 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [45:47, 00:48](762 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [45:34, 00:54](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:24, 01:04](646 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [42:28, 01:11](629 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:48, 00:53](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [41:30, 00:43](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [41:08, 00:31](2019 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [20:34, 08:27] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [32:27, 01:02](759 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [20:35, 01:04] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [39:22, 00:18](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [39:21, 01:11](413 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [32:44, 00:57](413 MB) + +PASS -- COMPILE 'atml_intel' [22:37, 09:51] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:09, 02:56](1599 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [38:02, 02:35](1603 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [26:21, 01:10](802 MB) + +PASS -- COMPILE 'atmw_intel' [38:53, 09:03] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [32:38, 02:33](1603 MB) + +PASS -- COMPILE 'atmaero_intel' [36:53, 08:52] +PASS -- TEST 'atmaero_control_p8_intel' [32:43, 01:53](2915 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [32:43, 02:17](2970 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:43, 01:58](2985 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [35:49, 03:27] +PASS -- TEST 'regional_atmaq_debug_intel' [30:34, 02:09](4495 MB) SYNOPSIS: -Starting Date/Time: 20240418 17:18:16 -Ending Date/Time: 20240418 19:52:31 -Total Time: 02h:34m:32s -Compiles Completed: 36/36 -Tests Completed: 176/176 +Starting Date/Time: 20240422 19:37:15 +Ending Date/Time: 20240422 21:57:39 +Total Time: 02h:20m:51s +Compiles Completed: 35/35 +Tests Completed: 173/173 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 47e293388f..b0d8347b23 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -d164b650b97d4c4a68ab86c55f2254f29767da2b +d47726e50be21a6b878bfb05f03b0b9fbe725775 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -35,280 +35,293 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240417 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_115059 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_41899 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:23, 18:57] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:14, 04:51](3076 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:23, 20:23] -PASS -- TEST 'cpld_control_gfsv17_intel' [15:55, 13:45](1689 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:14, 14:52](1829 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:00](960 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:51, 15:39](1664 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:21, 08:50] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 21:18](1698 MB) - -PASS -- COMPILE 's2swa_intel' [20:23, 18:58] -PASS -- TEST 'cpld_control_p8_intel' [08:31, 05:32](3095 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 05:32](3091 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:52, 03:13](3151 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:31, 05:30](3127 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:52, 03:14](3182 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:24, 05:28](3093 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:51, 04:29](3387 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:43, 05:30](3102 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:14, 08:36](3633 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:10, 05:36](3615 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:53, 09:33](4346 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:00, 06:23](4648 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:16, 05:10](3068 MB) - -PASS -- COMPILE 's2sw_intel' [19:21, 18:24] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:22, 04:07](1679 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:34, 04:10](1727 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:21, 08:46] -PASS -- TEST 'cpld_debug_p8_intel' [09:51, 07:31](3154 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:19, 08:20] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:32, 05:14](1710 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:22, 14:03] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:52, 04:10](1726 MB) - -PASS -- COMPILE 's2s_intel' [15:21, 13:56] -PASS -- TEST 'cpld_control_c48_intel' [08:05, 06:34](2664 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:22, 22:34] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:08, 05:22](3101 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:20, 19:33] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:07, 13:56](1696 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 07:03](1017 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:46, 15:59](1669 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:19] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:34, 22:59](1717 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:16] -PASS -- TEST 'control_flake_intel' [04:38, 03:22](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:40, 02:01](622 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:45, 02:05](624 MB) -PASS -- TEST 'control_latlon_intel' [03:36, 02:02](621 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:43, 02:04](622 MB) -PASS -- TEST 'control_c48_intel' [06:44, 05:14](735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 05:13](741 MB) -PASS -- TEST 'control_c192_intel' [09:09, 07:48](738 MB) -PASS -- TEST 'control_c384_intel' [13:33, 08:00](1064 MB) -PASS -- TEST 'control_c384gdas_intel' [14:39, 07:05](1201 MB) -PASS -- TEST 'control_stochy_intel' [02:39, 01:23](629 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_stochy_restart_intel' [, ]( MB) -PASS -- TEST 'control_lndp_intel' [02:38, 01:18](625 MB) -PASS -- TEST 'control_iovr4_intel' [03:34, 02:02](624 MB) -PASS -- TEST 'control_iovr5_intel' [03:42, 02:05](620 MB) -PASS -- TEST 'control_p8_intel' [04:24, 02:25](1596 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:25, 02:26](1596 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:20, 02:25](1599 MB) -PASS -- TEST 'control_restart_p8_intel' [03:23, 01:22](802 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:13, 02:24](1592 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:21](808 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:12, 02:31](1597 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:16, 04:19](1599 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:39, 03:13](1653 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:33, 02:27](1608 MB) -PASS -- TEST 'merra2_thompson_intel' [05:44, 02:55](1603 MB) -PASS -- TEST 'regional_control_intel' [06:10, 04:29](633 MB) -PASS -- TEST 'regional_restart_intel' [04:21, 02:27](801 MB) -PASS -- TEST 'regional_decomp_intel' [06:07, 04:39](631 MB) -PASS -- TEST 'regional_noquilt_intel' [06:14, 04:21](1159 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:18, 04:23](631 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:13, 04:27](631 MB) -PASS -- TEST 'regional_wofs_intel' [07:12, 05:35](1605 MB) - -PASS -- COMPILE 'rrfs_intel' [11:18, 10:44] -PASS -- TEST 'rap_control_intel' [08:10, 06:06](1005 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 03:46](1193 MB) -PASS -- TEST 'rap_decomp_intel' [09:41, 06:19](1006 MB) -PASS -- TEST 'rap_restart_intel' [05:56, 03:11](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:32, 06:02](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:30, 06:18](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:11, 04:34](880 MB) -PASS -- TEST 'hrrr_control_intel' [05:02, 03:10](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:03, 03:17](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 02:45](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:50, 01:43](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:33, 05:55](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 07:20](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:50, 07:05](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [10:17, 09:49] -PASS -- TEST 'control_csawmg_intel' [07:17, 05:47](692 MB) -PASS -- TEST 'control_csawmgt_intel' [07:08, 05:44](696 MB) -PASS -- TEST 'control_ras_intel' [03:37, 02:48](657 MB) - -PASS -- COMPILE 'wam_intel' [10:19, 09:14] -PASS -- TEST 'control_wam_intel' [03:29, 01:52](384 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:18, 12:13] -PASS -- TEST 'control_p8_faster_intel' [04:35, 02:19](1594 MB) -PASS -- TEST 'regional_control_faster_intel' [07:09, 04:20](628 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:13] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:44, 02:30](795 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:49, 02:29](799 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:34, 02:53](801 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:31, 02:32](801 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:07, 03:54](841 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:42, 03:56](839 MB) -PASS -- TEST 'control_ras_debug_intel' [03:39, 02:34](810 MB) -PASS -- TEST 'control_diag_debug_intel' [04:05, 02:37](858 MB) -PASS -- TEST 'control_debug_p8_intel' [04:13, 02:38](1629 MB) -PASS -- TEST 'regional_debug_intel' [18:10, 15:45](668 MB) -PASS -- TEST 'rap_control_debug_intel' [05:37, 04:34](1185 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:40, 04:39](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 04:33](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:39, 04:36](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:36](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:59, 04:48](1268 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:38, 04:46](1182 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 04:47](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:41, 04:36](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:33, 04:36](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:32](1183 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:34](1182 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:35, 07:26](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:36](1176 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:27](1184 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:54, 04:40](1182 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:00, 07:50](1182 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:12, 05:03] -PASS -- TEST 'control_wam_debug_intel' [05:31, 04:37](421 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:18, 09:30] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:21, 03:29](1060 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:10, 05:05](884 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:13, 02:44](884 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:02, 02:51](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:00, 03:50](798 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:06, 01:30](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:29] -FAILED: RUN DID NOT COMPLETE -- TEST 'conus13km_control_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'conus13km_2threads_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'conus13km_restart_mismatch_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:17, 09:33] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:39, 03:34](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:37, 04:29](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:43, 04:28](1056 MB) -PASS -- TEST 'conus13km_debug_intel' [15:40, 13:19](1134 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:27, 13:24](820 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:19, 13:16](1203 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:09] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:39, 04:40](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [17:21, 15:25] -PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:24](723 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:53, 05:04](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 06:17](780 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [12:22, 10:46](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 11:50](815 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 04:36](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:37, 05:37](493 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:58, 02:16](390 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:39, 06:05](461 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:53, 03:12](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 02:59](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:15, 03:42](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:11](427 MB) -PASS -- TEST 'gnv1_nested_intel' [05:03, 03:15](790 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:18, 06:30] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:14, 11:59](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:21, 19:10] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:23, 06:57](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 07:03](691 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:20, 16:09] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:21, 05:18](678 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:22, 13:37] -PASS -- TEST 'hafs_regional_docn_intel' [07:31, 05:26](752 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:18, 05:26](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:09, 16:09](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:22] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:29](762 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:28](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:18](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:23, 02:21](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:23, 02:23](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:36, 02:27](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:28](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:18](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:49, 05:34](687 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:50, 05:36](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:27](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 03:49](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:36, 03:50](2015 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:20, 04:46] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:01](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:17, 07:27] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:26, 02:26](750 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:19, 02:12] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:03](304 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:32, 00:57](453 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:39](453 MB) - -PASS -- COMPILE 'atml_intel' [13:21, 12:40] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:35, 05:45](1627 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:41, 05:20](1641 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:09, 03:01](855 MB) - -PASS -- COMPILE 'atmw_intel' [13:20, 12:24] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:18, 01:30](1637 MB) - -PASS -- COMPILE 'atmwm_intel' [13:22, 12:24] -PASS -- TEST 'control_atmwav_intel' [02:48, 01:24](638 MB) - -PASS -- COMPILE 'atmaero_intel' [11:17, 10:52] -PASS -- TEST 'atmaero_control_p8_intel' [05:44, 03:35](2947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:12](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:13, 04:24](3012 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:22, 05:59] -PASS -- TEST 'regional_atmaq_debug_intel' [24:23, 21:40](4533 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:19, 19:10] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:34, 04:53](3075 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:16, 20:22] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:22, 13:41](1691 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:51, 15:04](1828 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:57, 07:12](958 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:25, 15:44](1667 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:14, 08:48] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:14, 22:14](1701 MB) + +PASS -- COMPILE 's2swa_intel' [20:15, 19:07] +PASS -- TEST 'cpld_control_p8_intel' [08:58, 05:35](3093 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:47, 05:35](3090 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:45, 03:18](3150 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 05:37](3130 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:45, 03:18](3178 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:46, 05:32](3099 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:00, 04:38](3397 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:02, 05:36](3102 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:18, 08:45](3639 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:05, 05:58](3615 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:45, 09:46](4343 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:58, 07:00](4649 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:31, 05:13](3065 MB) + +PASS -- COMPILE 's2sw_intel' [19:19, 18:27] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:45, 04:11](1682 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:14](1729 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:13, 08:48] +PASS -- TEST 'cpld_debug_p8_intel' [11:06, 07:50](3154 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:13, 08:15] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:40, 05:18](1712 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:07] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:11, 04:17](1735 MB) + +PASS -- COMPILE 's2s_intel' [15:15, 14:04] +PASS -- TEST 'cpld_control_c48_intel' [08:20, 06:40](2665 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:27, 24:03] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:15, 05:29](3104 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:14, 19:21] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:47, 13:58](1702 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:14](1013 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:46, 15:56](1673 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:12, 08:50] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:42, 22:56](1720 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:13, 12:35] +PASS -- TEST 'control_flake_intel' [04:35, 03:24](671 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:39, 05:15](740 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB) +PASS -- TEST 'control_c384gdas_intel' [16:00, 07:16](1203 MB) +PASS -- TEST 'control_stochy_intel' [02:32, 01:27](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:51](438 MB) +PASS -- TEST 'control_lndp_intel' [02:34, 01:23](629 MB) +PASS -- TEST 'control_iovr4_intel' [03:38, 02:07](624 MB) +PASS -- TEST 'control_iovr5_intel' [03:45, 02:06](620 MB) +PASS -- TEST 'control_p8_intel' [04:26, 02:30](1596 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:25, 02:27](1596 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:25, 02:28](1607 MB) +PASS -- TEST 'control_restart_p8_intel' [03:31, 01:24](800 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:31, 02:28](1597 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:24](806 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:24, 02:32](1594 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:55, 04:21](1595 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:36, 03:16](1652 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:20, 02:31](1611 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB) +PASS -- TEST 'regional_control_intel' [06:26, 04:28](631 MB) +PASS -- TEST 'regional_restart_intel' [04:11, 02:32](803 MB) +PASS -- TEST 'regional_decomp_intel' [06:25, 04:43](630 MB) +PASS -- TEST 'regional_noquilt_intel' [06:20, 04:24](1162 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 04:29](630 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:21, 04:29](632 MB) +PASS -- TEST 'regional_wofs_intel' [07:33, 05:41](1604 MB) + +PASS -- COMPILE 'rrfs_intel' [12:20, 11:17] +PASS -- TEST 'rap_control_intel' [08:33, 06:13](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 03:41](1191 MB) +PASS -- TEST 'rap_decomp_intel' [08:54, 06:23](1006 MB) +PASS -- TEST 'rap_restart_intel' [05:26, 03:12](885 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:40, 06:06](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:31, 06:41](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:15, 04:34](881 MB) +PASS -- TEST 'hrrr_control_intel' [06:02, 03:49](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:18](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:21, 03:05](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:43, 01:43](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:22](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:31, 07:26](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:42, 07:10](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [11:19, 10:21] +PASS -- TEST 'control_csawmg_intel' [08:26, 05:48](692 MB) +PASS -- TEST 'control_ras_intel' [04:09, 02:52](656 MB) + +PASS -- COMPILE 'wam_intel' [10:17, 09:22] +PASS -- TEST 'control_wam_intel' [03:38, 01:55](382 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:19, 12:35] +PASS -- TEST 'control_p8_faster_intel' [05:07, 02:23](1604 MB) +PASS -- TEST 'regional_control_faster_intel' [06:01, 04:20](625 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:22] +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) +PASS -- TEST 'control_stochy_debug_intel' [04:36, 02:54](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:34](798 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:16](840 MB) +PASS -- TEST 'control_ras_debug_intel' [03:34, 02:41](807 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB) +PASS -- TEST 'control_debug_p8_intel' [04:14, 02:36](1629 MB) +PASS -- TEST 'regional_debug_intel' [18:09, 16:20](667 MB) +PASS -- TEST 'rap_control_debug_intel' [06:36, 04:53](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:08, 04:55](1180 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:43, 04:37](1182 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:43, 04:37](1183 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:51, 04:49](1180 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:18, 04:56](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 04:46](1182 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:36, 04:48](1183 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:43, 04:43](1182 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB) +PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:32](1178 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:44, 04:37](1184 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:38, 07:28](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:41, 04:32](1179 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 05:23](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:34, 04:40](1181 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:20, 07:58](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:17, 05:23] +PASS -- TEST 'control_wam_debug_intel' [05:24, 04:37](421 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:20, 09:37] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:24, 03:29](1059 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:02, 05:07](884 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:12, 02:45](884 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 02:53](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:05, 03:53](795 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 01:30](776 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:54] +PASS -- TEST 'conus13km_control_intel' [05:05, 01:50](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:53, 00:58](1088 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:07](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:47, 09:52] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:07, 03:35](914 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:45] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:33, 04:28](1058 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:31, 04:29](1055 MB) +PASS -- TEST 'conus13km_debug_intel' [15:43, 13:23](1135 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 13:27](821 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:57, 13:27](1204 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:42, 06:05] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 04:30](1088 MB) + +PASS -- COMPILE 'hafsw_intel' [18:20, 17:40] +PASS -- TEST 'hafs_regional_atm_intel' [07:01, 04:31](722 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:06, 05:09](1062 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 06:22](780 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:33, 11:01](798 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 11:55](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:31, 04:40](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:30, 05:42](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:09, 02:18](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 06:19](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:16](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:09, 03:05](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:17, 03:47](590 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:34, 01:14](430 MB) +PASS -- TEST 'gnv1_nested_intel' [05:24, 03:21](786 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:13, 08:07] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:16, 12:14](613 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:11] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:21, 07:04](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:19, 07:05](691 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:03, 18:52] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 05:19](679 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:53, 16:02] +PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:32](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:45, 05:31](739 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:21, 16:08](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:48, 09:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:30, 02:29](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:31](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:36, 02:20](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:33, 02:24](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:27, 02:24](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:23, 02:29](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:30](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:24, 02:20](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:44, 05:40](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 05:40](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:27](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:33, 03:52](2019 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:35, 03:53](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:49, 06:33] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:31, 05:02](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:17, 07:50] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:31](762 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:58] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:11](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:06](453 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:42](451 MB) + +PASS -- COMPILE 'atml_intel' [14:18, 13:15] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:34, 07:03](1641 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:26, 06:34](1641 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:20, 03:39](855 MB) + +PASS -- COMPILE 'atmw_intel' [13:18, 12:49] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:32](1630 MB) + +PASS -- COMPILE 'atmaero_intel' [12:18, 11:00] +PASS -- TEST 'atmaero_control_p8_intel' [06:10, 03:37](2950 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 04:15](2998 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:12, 06:25] +PASS -- TEST 'regional_atmaq_debug_intel' [26:05, 22:02](4537 MB) SYNOPSIS: -Starting Date/Time: 20240419 06:31:21 -Ending Date/Time: 20240419 07:56:11 -Total Time: 01h:25m:29s -Compiles Completed: 38/38 -Tests Completed: 171/175 +Starting Date/Time: 20240422 06:31:47 +Ending Date/Time: 20240422 08:01:07 +Total Time: 01h:30m:07s +Compiles Completed: 37/37 +Tests Completed: 159/172 Failed Tests: -* TEST control_stochy_restart_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/work/zshrader/rt-2213/tests/logs/log_derecho/run_control_stochy_restart_intel.log -* TEST conus13km_control_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/work/zshrader/rt-2213/tests/logs/log_derecho/run_conus13km_control_intel.log -* TEST conus13km_2threads_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST conus13km_restart_mismatch_intel: FAILED: UNABLE TO START RUN --- LOG: N/A +* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_intel.log +* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_parallel_intel.log +* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_latlon_intel.log +* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_wrtGauss_netcdf_parallel_intel.log +* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c48_intel.log +* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c192_intel.log +* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c384_intel.log +* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_merra2_thompson_intel.log +* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_debug_intel.log +* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_wrtGauss_netcdf_parallel_debug_intel.log +* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_diag_debug_intel.log +* TEST rap_progcld_thompson_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_rap_progcld_thompson_debug_intel.log +* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_atmaero_control_p8_rad_micro_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -321,7 +334,7 @@ Result: FAILURE ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -d164b650b97d4c4a68ab86c55f2254f29767da2b +d47726e50be21a6b878bfb05f03b0b9fbe725775 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -331,7 +344,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -355,27 +368,105 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240417 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_121217 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_84317 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:18, 11:25] -PASS -- TEST 'conus13km_control_intel' [04:34, 01:49](1084 MB) +PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:43] +PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:25](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:27](1574 MB) +PASS -- TEST 'control_latlon_intel' [04:15, 02:25](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:26](1565 MB) +PASS -- TEST 'control_c48_intel' [08:20, 06:14](1618 MB) +PASS -- TEST 'control_c192_intel' [10:38, 08:42](1682 MB) +PASS -- TEST 'control_c384_intel' [12:47, 08:54](2006 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'merra2_thompson_intel' [, ]( MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:44] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:11, 02:31](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:11, 02:29](1601 MB) +PASS -- TEST 'control_diag_debug_intel' [04:42, 02:33](1663 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:34, 04:44](1184 MB) + +PASS -- COMPILE 'atmaero_intel' [12:19, 11:14] +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 04:19](3013 MB) -PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:43] -PASS -- TEST 'control_stochy_intel' [02:37, 01:24](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:50](436 MB) +SYNOPSIS: +Starting Date/Time: 20240422 09:08:46 +Ending Date/Time: 20240422 09:36:22 +Total Time: 00h:27m:48s +Compiles Completed: 3/3 +Tests Completed: 12/13 +Failed Tests: +* TEST merra2_thompson_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_merra2_thompson_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d47726e50be21a6b878bfb05f03b0b9fbe725775 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_63459 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_dyn32_intel' [13:17, 12:33] +PASS -- TEST 'merra2_thompson_intel' [05:25, 02:47](1611 MB) SYNOPSIS: -Starting Date/Time: 20240419 08:26:55 -Ending Date/Time: 20240419 08:46:43 -Total Time: 00h:19m:54s -Compiles Completed: 2/2 -Tests Completed: 3/3 +Starting Date/Time: 20240422 10:29:36 +Ending Date/Time: 20240422 10:49:44 +Total Time: 00h:20m:17s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 8416413b47..09a3a5fd63 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -684ddd65adbf26b3a8003e05c8af6c4e19be63f8 +d47726e50be21a6b878bfb05f03b0b9fbe725775 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn) - b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) @@ -26,7 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) NOTES: @@ -35,280 +35,339 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240408 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100835 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_187503 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [25:06, 24:37] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:14, 08:17](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:06, 24:03] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:28, 13:41](1687 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:02, 14:24](1810 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:29, 06:48](947 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:23, 14:53](1671 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:10, 14:56] -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:17, 23:53](1709 MB) - -PASS -- COMPILE 's2swa_intel' [20:06, 19:37] -PASS -- TEST 'cpld_control_p8_intel' [12:33, 08:41](3101 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:53, 08:38](3099 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:13, 05:53](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:33, 08:34](3124 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:13, 05:52](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:02, 07:03](3410 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:19, 08:28](3101 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:02, 07:41](3022 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:17, 08:39](3102 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:06, 10:58](3275 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:44, 08:09](3605 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:17, 13:19](4043 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:04, 09:47](4343 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:03, 08:29](3067 MB) - -PASS -- COMPILE 's2sw_intel' [19:06, 18:24] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:52, 05:21](1685 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:04, 05:30](1730 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:10, 14:46] -PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:26](3131 MB) - -PASS -- COMPILE 's2sw_debug_intel' [20:06, 19:11] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:36, 06:11](1701 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:06, 17:51] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:10, 05:33](1729 MB) - -PASS -- COMPILE 's2s_intel' [24:06, 23:42] -PASS -- TEST 'cpld_control_c48_intel' [09:56, 06:56](2663 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:06, 23:20] -PASS -- TEST 'cpld_control_p8_faster_intel' [12:01, 08:29](3099 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:10, 24:54] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:04, 15:26](1703 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:59, 07:32](1000 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:50, 18:26](1682 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:06, 13:57] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:15, 26:53](1720 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:07, 15:52] -PASS -- TEST 'control_flake_intel' [05:03, 03:48](675 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:04, 02:35](619 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:40](627 MB) -PASS -- TEST 'control_latlon_intel' [04:02, 02:39](622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:32, 02:43](623 MB) -PASS -- TEST 'control_c48_intel' [07:24, 05:39](721 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:47, 05:38](721 MB) -PASS -- TEST 'control_c192_intel' [11:21, 08:51](738 MB) -PASS -- TEST 'control_c384_intel' [18:43, 16:51](1042 MB) -PASS -- TEST 'control_c384gdas_intel' [18:32, 14:32](1181 MB) -PASS -- TEST 'control_stochy_intel' [04:02, 01:57](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:13, 01:26](429 MB) -PASS -- TEST 'control_lndp_intel' [04:02, 01:51](628 MB) -PASS -- TEST 'control_iovr4_intel' [04:45, 02:42](623 MB) -PASS -- TEST 'control_iovr5_intel' [04:39, 02:39](623 MB) -PASS -- TEST 'control_p8_intel' [06:07, 03:22](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:38, 03:39](1608 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:07, 03:39](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [04:27, 01:51](790 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:24, 03:46](1595 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:37, 02:34](793 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:19, 03:29](1594 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:53, 03:17](1687 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:34](1607 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:23, 04:13](1657 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:36, 03:59](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [06:47, 04:15](1616 MB) -PASS -- TEST 'regional_control_intel' [06:50, 04:54](615 MB) -PASS -- TEST 'regional_restart_intel' [04:10, 02:37](789 MB) -PASS -- TEST 'regional_decomp_intel' [06:38, 04:58](615 MB) -PASS -- TEST 'regional_2threads_intel' [04:50, 02:59](758 MB) -PASS -- TEST 'regional_noquilt_intel' [06:52, 04:36](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:03, 04:54](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:01, 04:53](615 MB) -PASS -- TEST 'regional_wofs_intel' [11:03, 06:48](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [17:06, 16:37] -PASS -- TEST 'rap_control_intel' [09:23, 07:09](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:08](1185 MB) -PASS -- TEST 'rap_decomp_intel' [09:22, 07:17](1009 MB) -PASS -- TEST 'rap_2threads_intel' [08:17, 06:20](1100 MB) -PASS -- TEST 'rap_restart_intel' [05:14, 03:41](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:28, 06:55](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:14, 07:22](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:54, 05:28](879 MB) -PASS -- TEST 'hrrr_control_intel' [06:10, 03:54](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:10, 04:28](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 03:29](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:38, 02:32](837 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:24, 06:47](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:38, 08:23](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:40, 08:29](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [13:06, 12:56] -PASS -- TEST 'control_csawmg_intel' [07:50, 06:39](695 MB) -PASS -- TEST 'control_csawmgt_intel' [07:50, 06:37](691 MB) -PASS -- TEST 'control_ras_intel' [04:37, 03:25](657 MB) - -PASS -- COMPILE 'wam_intel' [14:07, 13:10] -PASS -- TEST 'control_wam_intel' [03:40, 02:31](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:08, 17:06] -PASS -- TEST 'control_p8_faster_intel' [06:02, 03:53](1608 MB) -PASS -- TEST 'regional_control_faster_intel' [06:00, 04:38](614 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:06, 13:40] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 03:16](777 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:47, 03:19](781 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:31, 03:19](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:58](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:29](823 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:47, 04:22](825 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:57](794 MB) -PASS -- TEST 'control_diag_debug_intel' [03:36, 03:00](842 MB) -PASS -- TEST 'control_debug_p8_intel' [04:43, 03:22](1620 MB) -PASS -- TEST 'regional_debug_intel' [19:24, 17:01](634 MB) -PASS -- TEST 'rap_control_debug_intel' [06:31, 05:14](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:31, 05:25](1165 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 05:06](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:47, 05:27](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:10, 05:25](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:33, 05:24](1255 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:03, 05:29](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:52, 05:32](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:52, 05:09](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:36, 05:28](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:30, 04:59](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 05:27](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 08:11](1166 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:48, 05:19](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 06:32](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:38, 05:11](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:51](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:07, 09:24] -PASS -- TEST 'control_wam_debug_intel' [07:33, 05:27](396 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:06, 15:33] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:09, 04:12](1052 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:00, 06:00](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:06, 03:52](886 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 05:31](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 03:07](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:58, 04:12](887 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:02, 04:35](783 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:37, 02:03](765 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:06, 16:50] -PASS -- TEST 'conus13km_control_intel' [04:58, 03:02](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:41](1073 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:40](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 13:53] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:10, 04:35](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:05, 10:37] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:15](1047 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 05:26](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [17:00, 15:05](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:59](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:15, 08:28](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:08, 14:26](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:05, 10:45] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 05:23](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [19:07, 18:27] -PASS -- TEST 'hafs_regional_atm_intel' [07:33, 05:20](707 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:57, 04:46](1057 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:02, 07:57](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:40, 12:09](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 13:08](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:36](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:43, 07:00](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:27, 03:03](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:22, 08:20](444 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 04:06](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:13, 03:39](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:27, 04:38](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:45](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:16, 04:10](763 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [19:06, 18:29] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:09, 13:17](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:07, 22:44] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:26, 07:53](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:26, 07:49](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:10, 20:40] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:08, 06:13](788 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:06, 18:46] -PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:21](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:33](729 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:15, 20:13](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:09, 13:26] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:53, 02:38](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:22, 01:45](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 02:35](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:42](637 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 02:35](637 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 02:38](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:40](758 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:41](637 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:14, 06:31](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:15, 06:32](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [14:21, 02:47](758 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:30, 04:38](1952 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [16:28, 04:48](2012 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:06, 09:14] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [17:26, 06:01](739 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:10, 14:14] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:26, 02:53](758 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 04:10] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [16:04, 04:17](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:55, 02:47](455 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:04, 01:24](456 MB) - -PASS -- COMPILE 'atml_intel' [16:10, 16:01] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:56, 08:37](1633 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [22:57, 07:41](1633 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:00, 04:10](837 MB) - -PASS -- COMPILE 'atmw_intel' [19:10, 18:08] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [15:25, 03:18](1648 MB) - -PASS -- COMPILE 'atmwm_intel' [17:10, 16:58] -PASS -- TEST 'control_atmwav_intel' [14:20, 02:58](640 MB) - -PASS -- COMPILE 'atmaero_intel' [22:10, 21:21] -PASS -- TEST 'atmaero_control_p8_intel' [14:33, 06:48](2943 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [15:27, 07:33](3012 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:12, 08:01](3019 MB) - -PASS -- COMPILE 'atmaq_intel' [16:10, 15:21] - -PASS -- COMPILE 'atmaq_debug_intel' [12:10, 11:16] -PASS -- TEST 'regional_atmaq_debug_intel' [32:42, 18:39](4477 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 18:05] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:36, 07:13](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 23:27] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:11, 13:54](1688 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:19, 14:54](1810 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:14, 07:26](946 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:10, 14:58](1671 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:34] +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:11, 24:23](1708 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 18:17] +PASS -- TEST 'cpld_control_p8_intel' [11:56, 08:22](3100 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:15, 08:09](3100 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:32, 05:10](3155 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:56, 08:17](3124 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 05:12](3177 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 06:42](3412 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:49, 07:54](3099 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:49, 07:16](3021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:15, 08:16](3100 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:19, 10:22](3271 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:25, 07:27](3603 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:11, 13:05](4041 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:51, 09:19](4345 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:00, 08:04](3067 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 17:46] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:14, 05:10](1685 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:32, 05:23](1730 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:37] +PASS -- TEST 'cpld_debug_p8_intel' [13:32, 10:12](3132 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:11, 12:04] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:08, 06:01](1701 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:44] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:29, 05:27](1732 MB) + +PASS -- COMPILE 's2s_intel' [16:13, 15:56] +PASS -- TEST 'cpld_control_c48_intel' [08:38, 06:53](2664 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:14, 21:28] +PASS -- TEST 'cpld_control_p8_faster_intel' [10:42, 08:06](3098 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 22:30] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:22, 14:58](1700 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:09, 07:54](1000 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:06, 17:40](1681 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:12, 12:12] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:02, 26:53](1717 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:48] +PASS -- TEST 'control_flake_intel' [04:36, 03:38](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:14, 03:24](1568 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:14, 03:26](1580 MB) +PASS -- TEST 'control_latlon_intel' [04:03, 03:02](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 03:17](1569 MB) +PASS -- TEST 'control_c48_intel' [08:37, 06:42](1604 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:02, 05:39](723 MB) +PASS -- TEST 'control_c192_intel' [11:28, 10:03](1685 MB) +PASS -- TEST 'control_c384_intel' [20:53, 18:00](1984 MB) +PASS -- TEST 'control_c384gdas_intel' [19:51, 14:07](1188 MB) +PASS -- TEST 'control_stochy_intel' [02:38, 02:05](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:17](430 MB) +PASS -- TEST 'control_lndp_intel' [03:37, 02:08](628 MB) +PASS -- TEST 'control_iovr4_intel' [03:38, 02:37](623 MB) +PASS -- TEST 'control_iovr5_intel' [03:37, 02:37](623 MB) +PASS -- TEST 'control_p8_intel' [05:46, 03:18](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:28](1607 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 03:44](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [03:44, 01:52](790 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:43, 03:33](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:57](792 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:37, 03:21](1594 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:46](1686 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:10, 05:44](1606 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:57, 04:08](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:06, 03:29](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [05:52, 03:40](1604 MB) +PASS -- TEST 'regional_control_intel' [06:20, 04:59](615 MB) +PASS -- TEST 'regional_restart_intel' [03:59, 02:59](789 MB) +PASS -- TEST 'regional_decomp_intel' [06:56, 05:15](615 MB) +PASS -- TEST 'regional_2threads_intel' [03:57, 02:54](759 MB) +PASS -- TEST 'regional_noquilt_intel' [05:57, 04:40](1154 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 05:01](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:53, 04:50](615 MB) +PASS -- TEST 'regional_wofs_intel' [07:55, 06:21](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:51] +PASS -- TEST 'rap_control_intel' [09:53, 07:17](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:32, 04:00](1187 MB) +PASS -- TEST 'rap_decomp_intel' [09:53, 07:22](1013 MB) +PASS -- TEST 'rap_2threads_intel' [09:02, 06:09](1099 MB) +PASS -- TEST 'rap_restart_intel' [05:40, 03:47](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:02, 06:52](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 07:09](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:37, 04:59](879 MB) +PASS -- TEST 'hrrr_control_intel' [05:44, 03:49](1004 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 03:56](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:44, 03:08](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:46, 01:59](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:59, 06:46](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:55, 08:12](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:52, 08:00](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [13:10, 12:53] +PASS -- TEST 'control_csawmg_intel' [08:06, 06:41](696 MB) +PASS -- TEST 'control_ras_intel' [04:35, 03:26](657 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 12:08] +PASS -- TEST 'control_wam_intel' [03:36, 02:09](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:34] +PASS -- TEST 'control_p8_faster_intel' [05:53, 03:34](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [06:00, 04:41](614 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:13, 11:54] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:06, 03:03](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:14, 03:01](1589 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:34, 03:20](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:37, 03:03](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:06, 04:22](823 MB) +PASS -- TEST 'control_ras_debug_intel' [04:31, 03:12](794 MB) +PASS -- TEST 'control_diag_debug_intel' [04:14, 03:03](1641 MB) +PASS -- TEST 'control_debug_p8_intel' [05:06, 03:25](1618 MB) +PASS -- TEST 'regional_debug_intel' [18:03, 16:52](633 MB) +PASS -- TEST 'rap_control_debug_intel' [06:41, 05:08](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:35, 04:57](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:39, 05:05](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 05:03](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:40, 05:13](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:53, 05:18](1251 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:38, 05:06](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 05:13](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:21](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:13](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:41, 05:17](1166 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:40, 05:09](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:42, 08:25](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 05:16](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:58](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:38, 05:04](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:51, 08:28](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:11, 08:38] +PASS -- TEST 'control_wam_debug_intel' [05:29, 04:54](396 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 12:07] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:50, 03:54](1053 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:30, 06:13](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:24, 03:20](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:22, 05:22](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:48](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:31](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:28, 04:30](784 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 02:08](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:14, 14:32] +PASS -- TEST 'conus13km_control_intel' [05:41, 02:29](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:02, 01:17](1074 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:03, 01:28](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 12:04] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:52, 04:29](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 09:01] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:52](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:03](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [16:28, 14:16](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:13, 14:06](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:05, 08:22](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:02, 14:42](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:13, 08:47] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:41, 04:59](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [17:11, 16:18] +PASS -- TEST 'hafs_regional_atm_intel' [07:55, 05:26](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:53, 04:42](1059 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:08, 07:42](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:31, 11:39](789 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:16, 13:02](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:28, 05:19](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:48, 06:46](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:56](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:38, 08:17](444 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:16, 03:48](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:23, 03:45](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:03, 04:49](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:47, 01:45](401 MB) +PASS -- TEST 'gnv1_nested_intel' [05:44, 04:05](773 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:52] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:24, 12:49](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:15, 18:29] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:24, 07:50](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:54](787 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 16:36] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:22, 06:09](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 15:10] +PASS -- TEST 'hafs_regional_docn_intel' [08:46, 06:08](747 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 06:08](731 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:59, 20:06](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 11:39] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:42](758 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:37](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:34, 02:34](637 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:30, 02:39](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:35](637 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:32, 02:41](745 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:42](759 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:34](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:18, 07:21](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:58, 07:21](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:43](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:35, 04:45](2013 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:45](2011 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 07:50] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:29, 05:21](741 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:41](758 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 03:48] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:32, 01:53](319 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:30, 01:29](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:50, 01:06](456 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 15:14] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 07:02](1633 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:21, 07:16](1633 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:14, 03:32](837 MB) + +PASS -- COMPILE 'atmw_intel' [15:12, 14:43] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:44, 02:29](1648 MB) + +PASS -- COMPILE 'atmaero_intel' [13:13, 12:52] +PASS -- TEST 'atmaero_control_p8_intel' [08:02, 06:02](2946 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:07, 06:31](3012 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:10, 09:49] +PASS -- TEST 'regional_atmaq_debug_intel' [24:32, 18:24](4484 MB) SYNOPSIS: -Starting Date/Time: 20240415 16:40:32 -Ending Date/Time: 20240415 18:27:41 -Total Time: 01h:47m:54s -Compiles Completed: 39/39 -Tests Completed: 182/182 +Starting Date/Time: 20240421 01:23:25 +Ending Date/Time: 20240421 02:55:53 +Total Time: 01h:33m:32s +Compiles Completed: 37/37 +Tests Completed: 178/179 +Failed Tests: +* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2173/ufs-weather-model/tests/logs/log_gaea/run_atmaero_control_p8_rad_micro_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d47726e50be21a6b878bfb05f03b0b9fbe725775 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_229035 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-n) - RUN SINGLE TEST: atmaero_control_p8_rad_micro +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atmaero_intel' [13:11, 12:52] +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:46](3019 MB) + +SYNOPSIS: +Starting Date/Time: 20240422 12:23:00 +Ending Date/Time: 20240422 12:46:49 +Total Time: 00h:24m:06s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index ee7e6520ee..59eef863a6 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -d164b650b97d4c4a68ab86c55f2254f29767da2b +d47726e50be21a6b878bfb05f03b0b9fbe725775 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) @@ -24,372 +24,420 @@ 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-20240417 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_4052024 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_686177 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [49:12, 12:48] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:23, 05:31](3160 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [52:12, 16:28] -PASS -- TEST 'cpld_control_gfsv17_intel' [19:01, 17:10](1740 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:16, 17:51](2002 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 08:04](1097 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:54, 19:16](1632 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [40:12, 04:45] -PASS -- TEST 'cpld_debug_gfsv17_intel' [37:59, 22:37](1654 MB) - -PASS -- COMPILE 's2swa_intel' [49:12, 12:48] -PASS -- TEST 'cpld_control_p8_intel' [14:17, 05:45](3193 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:27, 05:48](3191 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:31, 03:26](3230 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:17, 05:51](3217 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:30, 03:28](3254 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:17, 05:30](3536 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:17, 05:45](3195 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:21, 04:47](3046 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:27, 05:51](3192 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 10:07](3320 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:25](3587 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:47, 09:27](4100 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:02, 06:28](4347 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:18, 05:26](3160 MB) - -PASS -- COMPILE 's2sw_intel' [39:12, 12:15] -PASS -- TEST 'cpld_control_noaero_p8_intel' [20:59, 04:51](1720 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:03, 04:26](1756 MB) - -PASS -- COMPILE 's2swa_debug_intel' [40:12, 04:45] -PASS -- TEST 'cpld_debug_p8_intel' [26:11, 08:32](3192 MB) - -PASS -- COMPILE 's2sw_debug_intel' [38:12, 04:11] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [23:07, 05:49](1707 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [47:12, 11:39] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:05, 04:19](1773 MB) - -PASS -- COMPILE 's2s_intel' [47:12, 11:39] -PASS -- TEST 'cpld_control_c48_intel' [17:45, 09:34](2815 MB) - -PASS -- COMPILE 's2swa_faster_intel' [52:12, 16:42] -PASS -- TEST 'cpld_control_p8_faster_intel' [07:11, 05:27](3185 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 14:58] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 17:11](1758 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:14, 08:03](1150 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:03, 19:47](1668 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 04:07] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:58, 24:40](1683 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:39] -PASS -- TEST 'control_flake_intel' [04:25, 03:21](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:27](639 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:26, 02:30](644 MB) -PASS -- TEST 'control_latlon_intel' [03:23, 02:25](643 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:29](615 MB) -PASS -- TEST 'control_c48_intel' [07:26, 06:23](861 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:24](851 MB) -PASS -- TEST 'control_c192_intel' [09:42, 09:06](839 MB) -PASS -- TEST 'control_c384_intel' [12:42, 09:06](1277 MB) -PASS -- TEST 'control_c384gdas_intel' [12:03, 08:06](1380 MB) -PASS -- TEST 'control_stochy_intel' [02:23, 01:38](650 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:58](487 MB) -PASS -- TEST 'control_lndp_intel' [02:20, 01:35](642 MB) -PASS -- TEST 'control_iovr4_intel' [03:25, 02:27](614 MB) -PASS -- TEST 'control_iovr5_intel' [03:24, 02:26](633 MB) -PASS -- TEST 'control_p8_intel' [04:01, 02:58](1599 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:04, 02:57](1612 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 02:51](1612 MB) -PASS -- TEST 'control_restart_p8_intel' [02:51, 01:36](871 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:54, 02:55](1597 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:39](910 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:53, 03:02](1598 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:50, 02:44](1694 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:13](1609 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:53, 03:58](1683 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:55, 03:00](1616 MB) -PASS -- TEST 'merra2_thompson_intel' [04:54, 03:33](1620 MB) -PASS -- TEST 'regional_control_intel' [06:39, 05:15](830 MB) -PASS -- TEST 'regional_restart_intel' [03:40, 02:44](999 MB) -PASS -- TEST 'regional_decomp_intel' [06:41, 05:30](826 MB) -PASS -- TEST 'regional_2threads_intel' [04:42, 03:15](802 MB) -PASS -- TEST 'regional_noquilt_intel' [06:41, 05:07](1348 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:10](823 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 05:10](838 MB) -PASS -- TEST 'regional_wofs_intel' [07:41, 06:44](1898 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 10:23] -PASS -- TEST 'rap_control_intel' [14:42, 07:46](1081 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:10, 04:05](1270 MB) -PASS -- TEST 'rap_decomp_intel' [15:43, 08:08](1017 MB) -PASS -- TEST 'rap_2threads_intel' [14:42, 07:17](1163 MB) -PASS -- TEST 'rap_restart_intel' [04:48, 04:02](1091 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:44, 07:43](1088 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:42, 08:10](1023 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:49, 05:47](1115 MB) -PASS -- TEST 'hrrr_control_intel' [11:38, 03:58](1023 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [11:38, 04:08](1012 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:41, 03:40](1088 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:35, 02:09](986 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:49, 07:39](1084 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [16:31, 09:21](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:04](2048 MB) - -PASS -- COMPILE 'csawmg_intel' [12:13, 10:24] -PASS -- TEST 'control_csawmg_intel' [06:40, 06:00](739 MB) -PASS -- TEST 'control_csawmgt_intel' [06:38, 05:56](738 MB) -PASS -- TEST 'control_ras_intel' [04:21, 03:14](726 MB) - -PASS -- COMPILE 'csawmg_gnu' [12:12, 03:42] -PASS -- TEST 'control_csawmg_gnu' [09:40, 08:24](533 MB) -PASS -- TEST 'control_csawmgt_gnu' [09:39, 08:04](532 MB) - -PASS -- COMPILE 'wam_intel' [18:12, 10:04] -PASS -- TEST 'control_wam_intel' [02:22, 02:04](639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:12, 10:33] -PASS -- TEST 'control_p8_faster_intel' [03:54, 02:42](1617 MB) -PASS -- TEST 'regional_control_faster_intel' [05:41, 04:43](829 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 04:38] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:25, 02:39](777 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:29, 02:38](775 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:21, 02:57](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:42](782 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:42, 04:06](828 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [04:40, 04:05](832 MB) -PASS -- TEST 'control_ras_debug_intel' [03:22, 02:47](792 MB) -PASS -- TEST 'control_diag_debug_intel' [03:29, 02:48](837 MB) -PASS -- TEST 'control_debug_p8_intel' [03:44, 02:49](1612 MB) -PASS -- TEST 'regional_debug_intel' [17:42, 17:09](804 MB) -PASS -- TEST 'rap_control_debug_intel' [05:22, 04:54](1174 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:46](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:48](1171 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 04:54](1165 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:47](1173 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:07](1255 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 04:54](1172 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:51](1172 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:59](1167 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 05:01](1173 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:52](1170 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:52](1168 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:52](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:49](1164 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 06:10](1177 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:23, 04:49](1172 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:37, 08:26](1159 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:12, 02:39] -PASS -- TEST 'control_csawmg_debug_gnu' [02:38, 02:08](506 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [03:39, 02:09](509 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:12, 03:10] -PASS -- TEST 'control_wam_debug_intel' [06:21, 04:59](475 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:12, 09:59] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:04, 03:50](1133 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:33, 06:23](1033 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:37, 03:21](973 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 06:05](1085 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 03:10](950 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:35](919 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:41, 04:50](1025 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:32, 01:50](920 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 12:20] -PASS -- TEST 'conus13km_control_intel' [04:57, 02:05](1184 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:42, 00:55](1103 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:16](1096 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 10:18] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:10](970 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 03:20] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1054 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:39](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [16:50, 14:38](1209 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:48, 14:56](935 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:08](1107 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 14:40](1248 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 03:15] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:56](1092 MB) - -PASS -- COMPILE 'hafsw_intel' [12:12, 11:46] -PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:06](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:08](1104 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:19, 06:50](816 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 13:24](836 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:30, 15:11](865 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 05:26](484 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:37](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 02:47](358 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 07:07](472 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:42](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 03:29](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:03](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:13](379 MB) -PASS -- TEST 'gnv1_nested_intel' [06:42, 04:03](776 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:40] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:49, 12:41](526 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:12, 11:53] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:58, 08:42](649 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:03, 08:47](707 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:12, 11:45] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:01, 06:26](701 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 11:10] -PASS -- TEST 'hafs_regional_docn_intel' [08:15, 06:29](807 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:28](791 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 15:32](1202 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:13] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:42](1141 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:37](1089 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:37](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:39](1005 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:35](1005 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:38](1135 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1141 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:37](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:50](1045 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:32, 06:26](1033 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:43](1140 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:48](2485 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:49](2496 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 02:57] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:13](1064 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:08] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1144 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:04] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:45](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:52](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:30](316 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 11:49] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:13](1596 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:04, 04:15](1597 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:11](888 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 10:53] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:44](1660 MB) - -PASS -- COMPILE 'atmwm_intel' [11:11, 10:59] -PASS -- TEST 'control_atmwav_intel' [02:33, 01:39](654 MB) - -PASS -- COMPILE 'atmaero_intel' [11:11, 10:51] -PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:01](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:58, 04:52](3072 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:43, 05:05](3085 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:30] -PASS -- TEST 'regional_atmaq_debug_intel' [35:54, 33:01](4446 MB) - -PASS -- COMPILE 'atm_gnu' [04:11, 03:38] -PASS -- TEST 'control_c48_gnu' [11:25, 10:46](750 MB) -PASS -- TEST 'control_stochy_gnu' [04:23, 03:23](491 MB) -PASS -- TEST 'control_ras_gnu' [06:22, 04:49](501 MB) -PASS -- TEST 'control_p8_gnu' [05:58, 04:39](1253 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:34](1253 MB) -PASS -- TEST 'control_flake_gnu' [11:22, 10:44](537 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:11, 03:47] -PASS -- TEST 'rap_control_gnu' [11:32, 10:52](848 MB) -PASS -- TEST 'rap_decomp_gnu' [11:32, 10:50](847 MB) -PASS -- TEST 'rap_2threads_gnu' [10:39, 09:50](935 MB) -PASS -- TEST 'rap_restart_gnu' [06:39, 05:24](570 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:45](841 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:31, 10:58](842 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 08:02](572 MB) -PASS -- TEST 'hrrr_control_gnu' [06:33, 05:29](842 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:30](832 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:36, 05:02](915 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:29](838 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:54](556 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:50](648 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:41, 10:38](838 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:35] -PASS -- TEST 'control_diag_debug_gnu' [02:27, 01:44](527 MB) -PASS -- TEST 'regional_debug_gnu' [12:44, 11:47](547 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:32](852 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:29](852 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:33](853 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:34](850 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:41, 02:48](936 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 04:03](849 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:21, 02:35](847 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:30](846 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:32](482 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:42](477 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:41](1237 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:24, 02:32](849 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:46](858 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 04:19](854 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:11, 01:49] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:45] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:31](701 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:34, 04:54](701 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:35](753 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:31, 04:33](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:00](701 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:33, 07:03](547 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:30](538 MB) -PASS -- TEST 'conus13km_control_gnu' [04:54, 03:11](872 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:41](879 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:44, 01:52](553 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:19] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](728 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:45] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:33](704 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:21, 02:29](701 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:47, 07:00](872 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:46, 06:56](565 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:03](873 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:41, 06:56](941 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:38](722 MB) - -PASS -- COMPILE 's2swa_gnu' [15:11, 14:39] - -PASS -- COMPILE 's2s_gnu' [15:12, 14:17] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:06, 06:39](1343 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:30] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:16] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:58, 22:14](1307 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:19] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:55, 16:50](1308 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:19] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:20, 03:05](695 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:00] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:21, 05:33](3188 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:28] +PASS -- TEST 'cpld_control_gfsv17_intel' [22:09, 17:09](1750 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:18, 17:47](2042 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 08:03](1119 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:04, 20:01](1652 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 04:40] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:07, 23:32](1686 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 13:01] +PASS -- TEST 'cpld_control_p8_intel' [07:13, 05:46](3235 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:25, 05:44](3220 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:25, 04:50](3272 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:13, 05:47](3256 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:25, 04:50](3287 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:12, 05:26](3557 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:16, 05:43](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:15, 04:44](3076 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:24, 06:10](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:21, 10:14](3351 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:41, 06:05](3626 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:39, 09:39](4075 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:37, 05:54](4370 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:16, 05:22](3195 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 12:34] +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:56, 04:43](1743 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:01, 04:19](1800 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:12, 04:40] +PASS -- TEST 'cpld_debug_p8_intel' [11:10, 08:30](3236 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:14] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:05, 05:41](1747 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:12, 11:22] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:06, 04:20](1782 MB) + +PASS -- COMPILE 's2s_intel' [12:12, 11:44] +PASS -- TEST 'cpld_control_c48_intel' [10:44, 09:24](2828 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:27] +PASS -- TEST 'cpld_control_p8_faster_intel' [13:19, 06:39](3232 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:59] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:05, 17:22](1771 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 08:23](1178 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:00, 19:40](1692 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:10] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:59, 25:13](1721 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:40] +PASS -- TEST 'control_flake_intel' [04:25, 03:17](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:52, 02:51](1606 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:54, 02:57](1614 MB) +PASS -- TEST 'control_latlon_intel' [08:48, 02:52](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:55, 02:54](1607 MB) +PASS -- TEST 'control_c48_intel' [08:50, 07:38](1764 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:25, 06:24](863 MB) +PASS -- TEST 'control_c192_intel' [15:09, 10:32](1754 MB) +PASS -- TEST 'control_c384_intel' [15:59, 10:29](2009 MB) +PASS -- TEST 'control_c384gdas_intel' [13:45, 07:57](1408 MB) +PASS -- TEST 'control_stochy_intel' [06:22, 01:36](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:24, 00:57](512 MB) +PASS -- TEST 'control_lndp_intel' [06:21, 01:32](662 MB) +PASS -- TEST 'control_iovr4_intel' [07:23, 02:26](655 MB) +PASS -- TEST 'control_iovr5_intel' [06:23, 02:28](657 MB) +PASS -- TEST 'control_p8_intel' [07:45, 02:57](1629 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 02:58](1631 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:02, 02:50](1635 MB) +PASS -- TEST 'control_restart_p8_intel' [02:51, 01:36](897 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:57, 02:55](1623 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:35](941 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:54, 03:02](1620 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:44](1718 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:42, 05:11](1632 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:59, 03:56](1697 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:59, 02:57](1640 MB) +PASS -- TEST 'merra2_thompson_intel' [04:56, 03:13](1646 MB) +PASS -- TEST 'regional_control_intel' [06:43, 05:08](854 MB) +PASS -- TEST 'regional_restart_intel' [03:41, 02:43](1019 MB) +PASS -- TEST 'regional_decomp_intel' [07:42, 05:30](851 MB) +PASS -- TEST 'regional_2threads_intel' [04:43, 03:13](847 MB) +PASS -- TEST 'regional_noquilt_intel' [08:44, 06:35](1368 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 06:36](852 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:16, 05:11](856 MB) +PASS -- TEST 'regional_wofs_intel' [08:41, 06:43](1909 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 10:38] +PASS -- TEST 'rap_control_intel' [08:41, 07:41](1113 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:03](1299 MB) +PASS -- TEST 'rap_decomp_intel' [09:37, 08:06](1042 MB) +PASS -- TEST 'rap_2threads_intel' [08:34, 07:15](1152 MB) +PASS -- TEST 'rap_restart_intel' [04:43, 04:02](1104 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:40](1112 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:38, 08:10](1045 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:47](1132 MB) +PASS -- TEST 'hrrr_control_intel' [05:39, 03:55](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:04](1039 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 03:41](1113 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:28](1016 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:44, 07:33](1104 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:11](1997 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:06](2063 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:14] +PASS -- TEST 'control_csawmg_intel' [06:44, 05:59](755 MB) +PASS -- TEST 'control_ras_intel' [04:24, 03:14](755 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:11, 03:41] +PASS -- TEST 'control_csawmg_gnu' [09:44, 08:18](550 MB) + +PASS -- COMPILE 'wam_intel' [10:12, 09:50] +PASS -- TEST 'control_wam_intel' [02:23, 02:04](650 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:32] +PASS -- TEST 'control_p8_faster_intel' [03:54, 02:37](1636 MB) +PASS -- TEST 'regional_control_faster_intel' [05:40, 04:42](847 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 04:54] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 02:35](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:29](1619 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:23, 02:59](829 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:39](823 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:39, 04:03](867 MB) +PASS -- TEST 'control_ras_debug_intel' [03:22, 02:42](830 MB) +PASS -- TEST 'control_diag_debug_intel' [03:50, 02:44](1679 MB) +PASS -- TEST 'control_debug_p8_intel' [03:47, 02:47](1651 MB) +PASS -- TEST 'regional_debug_intel' [17:43, 16:48](836 MB) +PASS -- TEST 'rap_control_debug_intel' [05:23, 04:50](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:23, 04:46](1205 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:44](1210 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:53](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:56](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:10](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 05:00](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 04:53](1208 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:56](1209 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:59](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:45](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:51](1213 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 07:51](1203 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:42](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 05:58](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:43](1208 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:33](1211 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:34] +PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:08](533 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:11, 03:06] +PASS -- TEST 'control_wam_debug_intel' [06:22, 05:01](520 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:50] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:00, 03:50](1166 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 06:22](1055 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:31, 03:21](984 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:05](1090 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 03:07](963 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:30, 03:34](937 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:38, 04:49](1048 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:49](950 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:46] +PASS -- TEST 'conus13km_control_intel' [02:52, 02:03](1203 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:39, 00:52](1126 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:12](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 11:35] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:08](989 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:23] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:45](1087 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:43](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [15:45, 14:24](1234 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 14:42](928 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:15](1160 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:29](1307 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:21] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:59](1126 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 13:09] +PASS -- TEST 'hafs_regional_atm_intel' [06:19, 04:52](755 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:44](1113 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:49](837 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 13:15](864 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:56](894 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:55, 05:25](504 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:21, 06:34](519 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:45, 02:37](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:00, 07:05](480 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:43, 03:37](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:47, 03:24](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:55, 04:00](597 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:38, 01:12](410 MB) +PASS -- TEST 'gnv1_nested_intel' [05:42, 04:00](806 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:42, 03:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:59](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:12, 13:34] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:00, 08:42](677 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:15, 08:45](747 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:15] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:07, 06:21](737 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:12, 12:50] +PASS -- TEST 'hafs_regional_docn_intel' [08:12, 06:21](835 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:26](818 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 16:00](1215 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:12, 06:00] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:43](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:36](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:36](1037 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:36](1024 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:35](1016 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:38](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:39](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:33](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:22, 06:06](1052 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:22, 06:05](1051 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:39](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:48](2494 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:51](2445 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:28] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:15](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:28] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:36](1153 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 00:57] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:44](259 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:45](329 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:28](330 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 11:33] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:03, 04:06](1629 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 04:04](1616 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:10](918 MB) + +PASS -- COMPILE 'atmw_intel' [11:12, 10:39] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:40](1682 MB) + +PASS -- COMPILE 'atmaero_intel' [11:12, 10:41] +PASS -- TEST 'atmaero_control_p8_intel' [05:57, 03:57](3019 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:53](3092 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:28] +PASS -- TEST 'regional_atmaq_debug_intel' [26:54, 24:27](4453 MB) + +PASS -- COMPILE 'atm_gnu' [04:12, 03:40] +PASS -- TEST 'control_c48_gnu' [12:43, 11:09](1544 MB) +PASS -- TEST 'control_stochy_gnu' [04:21, 03:22](507 MB) +PASS -- TEST 'control_ras_gnu' [05:21, 04:45](515 MB) +PASS -- TEST 'control_p8_gnu' [05:57, 04:41](1268 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 04:32](1270 MB) +PASS -- TEST 'control_flake_gnu' [11:23, 10:38](550 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:12, 03:44] +PASS -- TEST 'rap_control_gnu' [12:32, 11:04](858 MB) +PASS -- TEST 'rap_decomp_gnu' [11:34, 11:03](859 MB) +PASS -- TEST 'rap_2threads_gnu' [10:35, 09:50](947 MB) +PASS -- TEST 'rap_restart_gnu' [06:36, 05:20](584 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:37, 10:50](857 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:37, 10:47](859 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:36, 08:00](589 MB) +PASS -- TEST 'hrrr_control_gnu' [06:31, 05:35](855 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:28, 05:36](845 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:35, 05:02](932 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:33](859 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 02:53](574 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:49](666 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:43, 10:24](858 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:38] +PASS -- TEST 'control_diag_debug_gnu' [02:47, 01:37](1289 MB) +PASS -- TEST 'regional_debug_gnu' [11:40, 10:41](562 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:33](873 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:21, 02:30](874 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:30](877 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:20, 02:32](877 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:32, 02:49](961 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 04:03](871 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:34](876 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:33](873 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:32](506 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:40](500 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:38](1260 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:35](872 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:45](880 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:11](884 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:12, 01:58] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:12, 03:41] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:19](720 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:34, 04:59](714 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:42](764 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:27, 04:29](757 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 05:09](715 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:32, 06:54](564 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:31](550 MB) +PASS -- TEST 'conus13km_control_gnu' [03:55, 03:07](887 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:44, 05:31](888 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:45, 01:45](561 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:12, 05:21] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:36](742 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:12, 03:37] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:29](723 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:27](721 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:48, 06:47](899 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:42, 06:52](590 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:39, 07:31](903 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:40, 06:54](969 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:12, 03:43] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:37](745 MB) + +PASS -- COMPILE 's2swa_gnu' [15:12, 14:35] + +PASS -- COMPILE 's2s_gnu' [15:12, 14:27] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:14, 09:59](1360 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:34] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:12] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:56, 22:02](1327 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:21] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:55, 16:34](1334 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:04] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:01](699 MB) SYNOPSIS: -Starting Date/Time: 20240418 03:37:39 -Ending Date/Time: 20240418 05:51:38 -Total Time: 02h:14m:16s -Compiles Completed: 54/54 -Tests Completed: 244/244 +Starting Date/Time: 20240421 00:24:06 +Ending Date/Time: 20240421 02:15:52 +Total Time: 01h:52m:03s +Compiles Completed: 53/53 +Tests Completed: 238/239 +Failed Tests: +* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2173/ufs-weather-model/tests/logs/log_hera/run_atmaero_control_p8_rad_micro_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 HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d47726e50be21a6b878bfb05f03b0b9fbe725775 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +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-20240419 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_24155 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-n) - RUN SINGLE TEST: atmaero_control_p8_rad_micro +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atmaero_intel' [14:12, 10:40] +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:40, 05:00](3094 MB) + +SYNOPSIS: +Starting Date/Time: 20240422 16:20:37 +Ending Date/Time: 20240422 16:43:49 +Total Time: 00h:23m:20s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index caab4b10f9..9a94f7e473 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -d164b650b97d4c4a68ab86c55f2254f29767da2b +d47726e50be21a6b878bfb05f03b0b9fbe725775 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -35,367 +35,473 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240417 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_463802 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1104065 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, 12:05] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:17, 07:41](1900 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:11, 10:30] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:12, 07:43](1892 MB) PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:31] -PASS -- TEST 'cpld_control_gfsv17_intel' [15:37, 14:00](1769 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:54, 14:47](2192 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:49, 06:35](1175 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:07, 15:11](1694 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:52] -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 20:59](1724 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 11:36] -PASS -- TEST 'cpld_control_p8_intel' [09:09, 07:51](2062 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:23, 07:39](2066 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:36, 04:11](1964 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:09, 07:50](1985 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:37, 04:18](1732 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:09, 09:24](2485 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:04, 07:46](2060 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:18, 06:33](1890 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:21, 07:47](2091 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:07, 15:38](2983 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:52, 05:51](2924 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:44, 09:11](3639 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:28, 06:20](3625 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:14, 05:11](2049 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 12:09] -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:10, 07:13](1789 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:21, 04:04](1818 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:52] -PASS -- TEST 'cpld_debug_p8_intel' [08:31, 07:02](2044 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:49] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:16, 04:51](1792 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:19] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:16, 04:08](1829 MB) - -PASS -- COMPILE 's2s_intel' [10:11, 09:29] -PASS -- TEST 'cpld_control_c48_intel' [08:55, 07:20](2839 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:11, 14:06] -PASS -- TEST 'cpld_control_p8_faster_intel' [09:23, 07:30](2067 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:12] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:09, 13:52](1825 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:25, 06:41](1287 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:13, 15:37](1745 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:17] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:09, 21:34](1774 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:19] -PASS -- TEST 'control_flake_intel' [03:22, 02:58](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:18](663 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:29, 02:20](682 MB) -PASS -- TEST 'control_latlon_intel' [03:22, 02:17](670 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:16](675 MB) -PASS -- TEST 'control_c48_intel' [06:29, 05:50](858 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:30, 05:46](860 MB) -PASS -- TEST 'control_c192_intel' [08:32, 07:58](987 MB) -PASS -- TEST 'control_c384_intel' [10:13, 08:14](1447 MB) -PASS -- TEST 'control_c384gdas_intel' [10:10, 07:39](1524 MB) -PASS -- TEST 'control_stochy_intel' [02:22, 01:33](674 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:30, 00:54](534 MB) -PASS -- TEST 'control_lndp_intel' [02:22, 01:27](663 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:11](661 MB) -PASS -- TEST 'control_iovr5_intel' [03:23, 02:11](666 MB) -PASS -- TEST 'control_p8_intel' [04:04, 02:36](1635 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 02:33](1633 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:13, 02:30](1647 MB) -PASS -- TEST 'control_restart_p8_intel' [03:02, 01:23](916 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:00, 02:28](1622 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:02, 01:24](974 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:53, 02:37](1632 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:53, 02:25](1729 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:37, 04:37](1647 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:02, 03:27](1716 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:00, 02:41](1643 MB) -PASS -- TEST 'merra2_thompson_intel' [05:13, 03:09](1653 MB) -PASS -- TEST 'regional_control_intel' [05:36, 04:41](956 MB) -PASS -- TEST 'regional_restart_intel' [03:34, 02:39](1100 MB) -PASS -- TEST 'regional_decomp_intel' [05:34, 04:46](948 MB) -PASS -- TEST 'regional_2threads_intel' [03:34, 02:54](910 MB) -PASS -- TEST 'regional_noquilt_intel' [05:38, 04:22](1486 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 04:31](960 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 04:33](955 MB) -PASS -- TEST 'regional_wofs_intel' [06:37, 05:54](2078 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 07:51] -PASS -- TEST 'rap_control_intel' [07:56, 06:48](1204 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:58, 03:36](1400 MB) -PASS -- TEST 'rap_decomp_intel' [07:47, 06:52](1135 MB) -PASS -- TEST 'rap_2threads_intel' [07:42, 06:29](1370 MB) -PASS -- TEST 'rap_restart_intel' [05:00, 03:25](1155 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:58, 06:49](1194 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:49, 06:55](1166 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:00, 05:02](1189 MB) -PASS -- TEST 'hrrr_control_intel' [04:50, 03:25](1064 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 03:35](1052 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:40, 03:10](1129 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:32, 01:53](1022 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:10, 06:24](1205 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:24, 07:42](2012 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:24, 07:27](2155 MB) - -PASS -- COMPILE 'csawmg_intel' [08:11, 07:34] -PASS -- TEST 'control_csawmg_intel' [06:35, 05:20](811 MB) -PASS -- TEST 'control_csawmgt_intel' [06:35, 05:20](834 MB) -PASS -- TEST 'control_ras_intel' [03:20, 03:00](807 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:10, 05:23] -PASS -- TEST 'control_csawmg_gnu' [07:39, 06:39](813 MB) -PASS -- TEST 'control_csawmgt_gnu' [07:38, 06:31](813 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 07:07] -PASS -- TEST 'control_wam_intel' [02:26, 01:59](785 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:56] -PASS -- TEST 'control_p8_faster_intel' [04:06, 02:26](1632 MB) -PASS -- TEST 'regional_control_faster_intel' [05:35, 04:21](957 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:17] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:26, 02:19](824 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:28, 02:18](822 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:20, 02:33](831 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:17](822 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:34, 03:26](869 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [04:34, 03:24](878 MB) -PASS -- TEST 'control_ras_debug_intel' [03:20, 02:18](843 MB) -PASS -- TEST 'control_diag_debug_intel' [03:26, 02:21](881 MB) -PASS -- TEST 'control_debug_p8_intel' [03:47, 02:24](1664 MB) -PASS -- TEST 'regional_debug_intel' [15:35, 14:11](894 MB) -PASS -- TEST 'rap_control_debug_intel' [04:22, 04:00](1216 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:21, 03:58](1227 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:21, 03:58](1224 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:20, 04:02](1218 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:20, 04:00](1221 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:30, 04:16](1298 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:21, 04:04](1219 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:20, 04:06](1210 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:03](1210 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:20, 04:03](1208 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:22, 03:55](1212 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:23, 04:01](1215 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:24, 06:31](1210 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:21, 04:00](1220 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:24, 04:57](1226 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:21, 04:01](1222 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 06:50](1220 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:54] -PASS -- TEST 'control_csawmg_debug_gnu' [02:32, 01:45](791 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [02:33, 01:43](788 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:11, 02:41] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:57] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:01, 03:20](1268 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:59, 05:33](1140 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:10, 02:52](1031 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:40, 05:20](1295 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:45, 02:42](1045 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:03](977 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:58, 04:12](1097 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:26, 01:37](963 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 09:27] -PASS -- TEST 'conus13km_control_intel' [02:48, 01:50](1297 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:45](1195 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:35, 01:02](1155 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 07:14] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:38, 03:44](1068 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:14] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:22, 03:58](1089 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:21, 03:51](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [12:40, 11:34](1346 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:36, 12:07](997 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:34, 06:35](1242 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:33, 11:36](1406 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:57] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 04:05](1145 MB) - -PASS -- COMPILE 'hafsw_intel' [11:11, 10:28] -PASS -- TEST 'hafs_regional_atm_intel' [07:11, 05:35](873 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:20](1273 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:24, 06:23](953 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:07, 13:58](985 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:18, 14:59](1003 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:02, 05:43](604 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:09](615 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:53, 02:58](432 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 08:15](542 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:51, 03:58](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:43](621 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:59, 04:48](681 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:30](447 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:12] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:54, 11:20](626 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:48] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:07, 16:44](738 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:02, 17:49](812 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:50] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:09, 09:36](793 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:11, 10:41] -PASS -- TEST 'hafs_regional_docn_intel' [07:09, 05:24](962 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:08, 05:29](914 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 16:35](1339 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:18] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:17, 02:09](1155 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:19](1092 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:06](1008 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:18, 02:07](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:16, 02:06](1007 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:10](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:17, 02:07](1133 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:05](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:00, 05:03](1154 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:01, 04:58](1141 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:14, 02:09](1144 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:19, 03:04](2380 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:03](2439 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:48] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:14](1072 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:15] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:10](1150 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:35, 01:02](334 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:58](561 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:36](558 MB) - -PASS -- COMPILE 'atml_intel' [08:10, 07:48] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:21, 06:03](1652 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:23, 05:57](1633 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 03:16](938 MB) - -PASS -- COMPILE 'atmw_intel' [10:10, 09:43] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:04, 01:37](1697 MB) - -PASS -- COMPILE 'atmwm_intel' [10:10, 09:52] -PASS -- TEST 'control_atmwav_intel' [02:53, 01:31](685 MB) - -PASS -- COMPILE 'atmaero_intel' [08:11, 07:26] -PASS -- TEST 'atmaero_control_p8_intel' [05:00, 03:38](1786 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:58, 04:25](1819 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:48, 04:27](1822 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:22] -PASS -- TEST 'regional_atmaq_debug_intel' [18:38, 16:44](4605 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:36] -PASS -- TEST 'control_c48_gnu' [10:35, 09:34](864 MB) -PASS -- TEST 'control_stochy_gnu' [03:24, 02:15](729 MB) -PASS -- TEST 'control_ras_gnu' [04:20, 03:40](737 MB) -PASS -- TEST 'control_p8_gnu' [05:06, 03:38](1515 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:51, 03:32](1524 MB) -PASS -- TEST 'control_flake_gnu' [05:22, 04:27](811 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 04:26] -PASS -- TEST 'rap_control_gnu' [08:44, 07:52](1087 MB) -PASS -- TEST 'rap_decomp_gnu' [08:46, 07:55](1088 MB) -PASS -- TEST 'rap_2threads_gnu' [07:58, 07:09](1124 MB) -PASS -- TEST 'rap_restart_gnu' [04:54, 03:55](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:53, 07:54](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:48, 07:56](1090 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:00, 05:46](884 MB) -PASS -- TEST 'hrrr_control_gnu' [05:46, 04:09](1076 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:01, 04:08](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:44, 03:40](1046 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:43, 04:01](1073 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:25, 02:06](891 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:26, 02:07](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:12, 07:48](1084 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:11, 05:31] -PASS -- TEST 'control_diag_debug_gnu' [02:23, 01:17](774 MB) -PASS -- TEST 'regional_debug_gnu' [07:37, 06:26](927 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:20, 02:04](1096 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:21, 01:55](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:18, 02:01](1096 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:03](1096 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:04](1269 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:19, 03:03](1093 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:21, 01:57](1094 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:09](1091 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:10](723 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:21](721 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:44, 01:15](1501 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:59](1096 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:19](1099 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:03, 03:17](1102 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:48] -PASS -- TEST 'control_wam_debug_gnu' [02:27, 02:00](500 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:59] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:41, 07:19](965 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:56, 03:53](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:52, 06:54](970 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:37](890 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:44, 03:55](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:53, 05:28](858 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:31, 02:02](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:48, 02:33](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:33, 01:04](1172 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:34, 01:33](926 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:15] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:41, 04:24](988 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 07:04] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:21, 02:00](975 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:24, 01:56](968 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:38, 05:21](1280 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:39, 05:37](955 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:32, 03:14](1190 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:34, 05:24](1346 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:00] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:20, 02:00](1001 MB) - -PASS -- COMPILE 's2swa_gnu' [16:11, 15:26] - -PASS -- COMPILE 's2s_gnu' [16:11, 15:54] - -PASS -- COMPILE 's2swa_debug_gnu' [06:11, 05:39] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:56] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 05:18] - -PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:55] +PASS -- TEST 'cpld_control_gfsv17_intel' [22:29, 13:22](1766 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:52, 14:22](2146 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:43, 06:37](1196 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:23, 15:33](1687 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 04:44] +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:30, 20:57](1730 MB) + +PASS -- COMPILE 's2swa_intel' [12:11, 11:27] +PASS -- TEST 'cpld_control_p8_intel' [15:11, 07:46](2077 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:27, 07:47](2084 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:23, 04:20](1951 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:11, 07:43](1972 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:20, 04:24](1731 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:04, 08:59](2492 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:03, 07:46](2066 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:07, 06:32](1889 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:25, 07:37](2061 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:04, 15:03](2811 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:01](2922 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:27, 10:44](3660 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:17, 06:52](3624 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:06, 04:58](2026 MB) + +PASS -- COMPILE 's2sw_intel' [11:11, 10:42] +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:02, 07:01](1774 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:13, 04:01](1831 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:14] +PASS -- TEST 'cpld_debug_p8_intel' [09:14, 06:56](2063 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:59] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:13, 04:52](1788 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:11, 09:19] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 03:57](1830 MB) + +PASS -- COMPILE 's2s_intel' [09:10, 08:56] +PASS -- TEST 'cpld_control_c48_intel' [08:56, 07:19](2839 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:37] +PASS -- TEST 'cpld_control_p8_faster_intel' [17:26, 07:18](2094 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:48] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 14:27](1809 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:19, 06:45](1280 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:06, 15:22](1742 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:58] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:09, 21:24](1765 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:45] +PASS -- TEST 'control_flake_intel' [11:23, 02:51](706 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [14:33, 05:44](864 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB) +PASS -- TEST 'control_c384gdas_intel' [22:17, 07:24](1530 MB) +PASS -- TEST 'control_stochy_intel' [08:23, 01:25](672 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:32, 00:55](546 MB) +PASS -- TEST 'control_lndp_intel' [10:21, 01:22](670 MB) +PASS -- TEST 'control_iovr4_intel' [13:28, 02:04](661 MB) +PASS -- TEST 'control_iovr5_intel' [12:23, 02:06](664 MB) +PASS -- TEST 'control_p8_intel' [10:51, 02:40](1640 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:03, 02:42](1635 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:58, 02:32](1637 MB) +PASS -- TEST 'control_restart_p8_intel' [07:59, 01:29](923 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:55, 02:38](1635 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [09:05, 01:38](982 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:53, 02:42](1638 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:51, 02:27](1731 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:38, 04:39](1650 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:03, 03:30](1719 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:09, 02:33](1652 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB) +PASS -- TEST 'regional_control_intel' [08:38, 04:36](960 MB) +PASS -- TEST 'regional_restart_intel' [07:39, 02:34](1107 MB) +PASS -- TEST 'regional_decomp_intel' [08:32, 04:56](946 MB) +PASS -- TEST 'regional_2threads_intel' [06:33, 02:58](917 MB) +PASS -- TEST 'regional_noquilt_intel' [08:34, 04:29](1488 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:37, 04:39](958 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:30, 04:59](943 MB) +PASS -- TEST 'regional_wofs_intel' [08:31, 05:48](2084 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 07:51] +PASS -- TEST 'rap_control_intel' [12:12, 06:39](1204 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 03:46](1454 MB) +PASS -- TEST 'rap_decomp_intel' [12:47, 06:52](1145 MB) +PASS -- TEST 'rap_2threads_intel' [12:46, 06:25](1375 MB) +PASS -- TEST 'rap_restart_intel' [05:11, 03:38](1130 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:57, 06:38](1201 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 06:53](1141 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [16:08, 04:57](1235 MB) +PASS -- TEST 'hrrr_control_intel' [08:56, 03:28](1074 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:44, 03:32](1041 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:46, 03:12](1123 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:36, 01:49](1030 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:59, 06:29](1187 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:24, 07:49](2010 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:24, 07:34](2159 MB) + +PASS -- COMPILE 'csawmg_intel' [08:10, 07:29] +PASS -- TEST 'control_csawmg_intel' [10:39, 05:22](814 MB) +PASS -- TEST 'control_ras_intel' [07:22, 02:55](820 MB) + +PASS -- COMPILE 'csawmg_gnu' [09:11, 03:51] +PASS -- TEST 'control_csawmg_gnu' [10:41, 06:39](809 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 06:36] +PASS -- TEST 'control_wam_intel' [05:27, 02:06](791 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 09:42] +PASS -- TEST 'control_p8_faster_intel' [06:03, 02:25](1645 MB) +PASS -- TEST 'regional_control_faster_intel' [07:34, 04:11](960 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 04:00] +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 02:30](843 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:18](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:37, 03:27](870 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 02:16](828 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB) +PASS -- TEST 'control_debug_p8_intel' [04:43, 02:21](1655 MB) +PASS -- TEST 'regional_debug_intel' [15:39, 14:20](891 MB) +PASS -- TEST 'rap_control_debug_intel' [05:24, 04:07](1209 MB) +PASS -- TEST 'hrrr_control_debug_intel' [14:23, 04:03](1214 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [14:21, 04:03](1221 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:21, 04:05](1230 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:22, 04:01](1231 MB) +PASS -- TEST 'rap_diag_debug_intel' [15:29, 04:17](1292 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:22, 04:13](1213 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:21, 04:13](1220 MB) +PASS -- TEST 'rap_lndp_debug_intel' [14:22, 04:08](1214 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:22, 04:12](1219 MB) +PASS -- TEST 'rap_noah_debug_intel' [14:22, 04:07](1222 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [14:22, 04:14](1221 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:21, 06:38](1218 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [14:20, 03:59](1221 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [15:20, 04:51](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [14:22, 04:03](1209 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:03, 07:00](1218 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 03:53] +PASS -- TEST 'control_csawmg_debug_gnu' [15:39, 01:48](790 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 02:29] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 06:20] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:52, 03:36](1285 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:58, 05:37](1158 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [16:09, 03:05](1030 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:38, 05:20](1289 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:51, 02:53](1040 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [15:49, 03:08](1001 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:00, 04:08](1094 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:26, 01:38](960 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 09:13] +PASS -- TEST 'conus13km_control_intel' [06:47, 01:56](1303 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:36, 01:02](1206 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:40, 01:08](1148 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:10, 07:04] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:41, 03:51](1097 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:11] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:23, 03:54](1097 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 03:51](1094 MB) +PASS -- TEST 'conus13km_debug_intel' [16:43, 11:49](1345 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:43, 11:55](987 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:32, 06:49](1218 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 12:03](1416 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:11] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:21, 04:06](1155 MB) + +PASS -- COMPILE 'hafsw_intel' [11:11, 10:14] +PASS -- TEST 'hafs_regional_atm_intel' [08:08, 05:34](880 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:27, 05:14](1282 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:23, 06:36](955 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:10, 14:23](979 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:19, 16:16](1016 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:05, 05:58](604 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:23, 07:30](618 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:57, 03:09](432 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:24, 08:22](542 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:53, 04:43](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:52, 03:54](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:58, 05:13](674 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:28, 01:40](446 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 02:57] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:54, 11:24](632 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 10:47] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:01, 17:10](732 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:11, 16:18](810 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 10:05] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:04, 10:10](790 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 09:55] +PASS -- TEST 'hafs_regional_docn_intel' [13:08, 05:41](956 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:08, 06:01](915 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:45, 16:34](1333 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:10, 06:29] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:20, 02:10](1133 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:24](1079 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:16, 02:05](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:19, 02:07](1019 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:17, 02:07](1013 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:11](1130 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:11](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:04](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:03, 04:57](1160 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:56, 04:56](1140 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:10](1147 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:02](2330 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:03](2432 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 03:03] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:12](1077 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 05:09] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:09](1128 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:12] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:03](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 01:02](561 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:22, 00:35](560 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 08:16] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:27, 05:49](1644 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:20, 05:40](1657 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:51, 02:58](946 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 09:44] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:08, 01:34](1693 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 08:12] +PASS -- TEST 'atmaero_control_p8_intel' [05:09, 03:41](1792 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:07, 04:16](1798 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:49] +PASS -- TEST 'regional_atmaq_debug_intel' [19:39, 17:12](4590 MB) + +PASS -- COMPILE 'atm_gnu' [07:10, 03:41] +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_gnu' [, ]( MB) +PASS -- TEST 'control_stochy_gnu' [03:22, 02:19](730 MB) +PASS -- TEST 'control_ras_gnu' [05:20, 03:39](730 MB) +PASS -- TEST 'control_p8_gnu' [04:57, 03:34](1512 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:50, 03:37](1513 MB) +PASS -- TEST 'control_flake_gnu' [05:20, 04:22](809 MB) + +PASS -- COMPILE 'rrfs_gnu' [08:10, 05:01] +PASS -- TEST 'rap_control_gnu' [08:53, 07:44](1086 MB) +PASS -- TEST 'rap_decomp_gnu' [09:46, 07:45](1088 MB) +PASS -- TEST 'rap_2threads_gnu' [08:43, 07:12](1122 MB) +PASS -- TEST 'rap_restart_gnu' [09:58, 03:55](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:54, 08:29](1086 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:49, 07:47](1085 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:58, 05:43](885 MB) +PASS -- TEST 'hrrr_control_gnu' [05:47, 04:02](1076 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:43, 04:03](1134 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:57, 03:38](1021 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 04:00](1073 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:26, 02:05](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:05](934 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:10, 07:46](1082 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 05:52] +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_gnu' [, ]( MB) +PASS -- TEST 'regional_debug_gnu' [07:38, 06:27](925 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:22, 01:58](1101 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 01:56](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:22, 01:59](1095 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 01:59](1094 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:29, 02:05](1270 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 03:06](1095 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:21, 01:57](1097 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:20, 01:56](1090 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:15](726 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:21](722 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:18](1506 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:26, 01:59](1097 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:10](1101 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:03, 03:21](1104 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:10, 03:21] +PASS -- TEST 'control_wam_debug_gnu' [03:31, 02:03](501 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:49] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:52, 07:27](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:10, 03:54](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:47, 06:51](995 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:45, 03:36](893 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:45, 03:57](957 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:49, 05:26](858 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 01:58](857 MB) +PASS -- TEST 'conus13km_control_gnu' [06:48, 02:42](1266 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:32, 01:05](1174 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:36, 01:29](930 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [16:11, 11:32] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:38, 04:28](987 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [14:11, 09:44] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:20, 01:59](978 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:20, 01:55](968 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:40, 05:30](1282 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:38, 05:37](968 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:33, 03:22](1191 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:35, 05:28](1350 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:11, 09:58] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [07:24, 01:59](1001 MB) + +PASS -- COMPILE 's2swa_gnu' [22:12, 17:59] + +PASS -- COMPILE 's2s_gnu' [19:11, 17:30] + +PASS -- COMPILE 's2swa_debug_gnu' [10:11, 09:01] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:17] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 04:23] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:16] SYNOPSIS: -Starting Date/Time: 20240418 10:13:12 -Ending Date/Time: 20240418 11:26:55 -Total Time: 01h:14m:32s -Compiles Completed: 54/54 -Tests Completed: 239/239 +Starting Date/Time: 20240422 07:29:32 +Ending Date/Time: 20240422 09:17:34 +Total Time: 01h:48m:46s +Compiles Completed: 53/53 +Tests Completed: 220/234 +Failed Tests: +* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_intel.log +* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_parallel_intel.log +* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_latlon_intel.log +* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_wrtGauss_netcdf_parallel_intel.log +* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c48_intel.log +* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c192_intel.log +* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c384_intel.log +* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_merra2_thompson_intel.log +* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_debug_intel.log +* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_wrtGauss_netcdf_parallel_debug_intel.log +* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_diag_debug_intel.log +* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_atmaero_control_p8_rad_micro_intel.log +* TEST control_c48_gnu: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c48_gnu.log +* TEST control_diag_debug_gnu: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_diag_debug_gnu.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERCULES REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d47726e50be21a6b878bfb05f03b0b9fbe725775 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1349963 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:28] +PASS -- TEST 'control_CubedSphereGrid_intel' [03:32, 02:43](1600 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:40, 02:40](1629 MB) +PASS -- TEST 'control_latlon_intel' [03:35, 02:46](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:40](1606 MB) +PASS -- TEST 'control_c48_intel' [07:43, 07:02](1748 MB) +PASS -- TEST 'control_c192_intel' [10:56, 09:11](1766 MB) +PASS -- TEST 'control_c384_intel' [12:28, 09:41](2053 MB) +PASS -- TEST 'merra2_thompson_intel' [03:45, 03:02](1658 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:36] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:38, 02:22](1632 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:40, 02:09](1644 MB) +PASS -- TEST 'control_diag_debug_intel' [03:42, 02:24](1686 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 07:56] +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:35, 04:30](1814 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:47] +PASS -- TEST 'control_c48_gnu' [10:45, 09:45](1574 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 05:37] +PASS -- TEST 'control_diag_debug_gnu' [02:36, 01:19](1625 MB) + +SYNOPSIS: +Starting Date/Time: 20240422 10:21:26 +Ending Date/Time: 20240422 10:44:31 +Total Time: 00h:23m:27s +Compiles Completed: 5/5 +Tests Completed: 14/14 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index eb45f3bfc5..f4fce114d9 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -d164b650b97d4c4a68ab86c55f2254f29767da2b +d47726e50be21a6b878bfb05f03b0b9fbe725775 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -35,247 +35,313 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240417 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3966856 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2785867 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [39:13, 38:26] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:48, 06:51](1794 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:15, 54:26] -PASS -- TEST 'cpld_control_gfsv17_intel' [23:09, 20:41](1664 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:14, 22:13](1889 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 10:18](995 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:36, 23:50](1636 MB) - -PASS -- COMPILE 's2swa_intel' [39:13, 38:43] -PASS -- TEST 'cpld_control_p8_intel' [09:27, 07:34](1830 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:48, 07:31](1818 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:43, 04:22](1709 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 07:41](1848 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:40, 04:25](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:17, 07:13](2281 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:19, 07:36](1825 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:40, 06:23](1774 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:48, 07:35](1819 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:40, 07:03](1789 MB) - -PASS -- COMPILE 's2sw_intel' [37:13, 36:41] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:25, 05:50](1654 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:37, 05:40](1710 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:26] -PASS -- TEST 'cpld_debug_p8_intel' [12:58, 10:33](1845 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:34] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:24, 07:18](1677 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:14] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 05:37](1714 MB) - -PASS -- COMPILE 's2s_intel' [33:13, 32:29] -PASS -- TEST 'cpld_control_c48_intel' [14:12, 12:57](2781 MB) - -PASS -- COMPILE 's2swa_faster_intel' [33:18, 32:39] -PASS -- TEST 'cpld_control_p8_faster_intel' [10:21, 07:05](1826 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:54] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:47, 20:49](1686 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:52, 10:23](1035 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:36, 24:23](1643 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:49] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:30, 32:09](1694 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [35:14, 34:49] -PASS -- TEST 'control_flake_intel' [17:34, 04:25](643 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:34, 03:18](592 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:39, 03:29](602 MB) -PASS -- TEST 'control_latlon_intel' [04:30, 03:21](600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:42, 03:25](600 MB) -PASS -- TEST 'control_c48_intel' [10:41, 10:08](852 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:43, 10:05](849 MB) -PASS -- TEST 'control_c192_intel' [23:04, 12:26](721 MB) -PASS -- TEST 'control_c384_intel' [20:55, 15:45](907 MB) -PASS -- TEST 'control_c384gdas_intel' [21:48, 13:26](1018 MB) -PASS -- TEST 'control_stochy_intel' [03:34, 02:11](600 MB) -PASS -- TEST 'control_stochy_restart_intel' [16:29, 01:18](427 MB) -PASS -- TEST 'control_lndp_intel' [16:34, 02:03](608 MB) -PASS -- TEST 'control_iovr4_intel' [04:33, 03:20](601 MB) -PASS -- TEST 'control_iovr5_intel' [04:34, 03:21](598 MB) -PASS -- TEST 'control_p8_intel' [20:46, 03:55](1571 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [24:46, 03:56](1579 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [20:45, 03:54](1577 MB) -PASS -- TEST 'control_restart_p8_intel' [09:20, 02:07](817 MB) -PASS -- TEST 'control_noqr_p8_intel' [21:49, 03:55](1568 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [09:24, 02:03](836 MB) -PASS -- TEST 'control_decomp_p8_intel' [24:37, 04:01](1552 MB) -PASS -- TEST 'control_2threads_p8_intel' [24:38, 03:41](1665 MB) -PASS -- TEST 'control_p8_lndp_intel' [27:21, 06:54](1575 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [26:04, 05:02](1636 MB) -PASS -- TEST 'control_p8_mynn_intel' [24:56, 04:01](1572 MB) -PASS -- TEST 'merra2_thompson_intel' [25:09, 04:32](1591 MB) -PASS -- TEST 'regional_control_intel' [10:09, 07:03](762 MB) -PASS -- TEST 'regional_restart_intel' [15:42, 03:48](934 MB) -PASS -- TEST 'regional_decomp_intel' [10:09, 07:29](761 MB) -PASS -- TEST 'regional_2threads_intel' [06:09, 04:24](757 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:17, 07:04](757 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [22:44, 06:58](759 MB) - -PASS -- COMPILE 'rrfs_intel' [33:14, 33:02] -PASS -- TEST 'rap_control_intel' [27:33, 10:04](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:11, 05:38](1199 MB) -PASS -- TEST 'rap_decomp_intel' [28:18, 10:37](986 MB) -PASS -- TEST 'rap_2threads_intel' [28:11, 09:33](1084 MB) -PASS -- TEST 'rap_restart_intel' [08:09, 05:13](991 MB) -PASS -- TEST 'rap_sfcdiff_intel' [28:29, 10:03](984 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [25:02, 10:40](979 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:20, 07:32](998 MB) -PASS -- TEST 'hrrr_control_intel' [19:25, 05:14](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [19:00, 05:21](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [18:58, 04:44](1062 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:47](915 MB) -PASS -- TEST 'rrfs_v1beta_intel' [20:34, 09:55](988 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [20:31, 12:25](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:32, 12:00](1939 MB) - -PASS -- COMPILE 'csawmg_intel' [32:13, 31:14] -PASS -- TEST 'control_csawmg_intel' [15:42, 08:02](694 MB) -PASS -- TEST 'control_csawmgt_intel' [13:50, 07:53](690 MB) -PASS -- TEST 'control_ras_intel' [09:26, 04:22](662 MB) - -PASS -- COMPILE 'wam_intel' [30:13, 29:53] -PASS -- TEST 'control_wam_intel' [03:22, 02:43](500 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [47:15, 31:38] -PASS -- TEST 'control_p8_faster_intel' [06:31, 03:36](1580 MB) -PASS -- TEST 'regional_control_faster_intel' [08:45, 07:28](770 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 05:31] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:35, 03:22](757 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:40, 03:21](761 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:45](765 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:31, 03:25](764 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:53, 05:14](809 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:53, 05:08](810 MB) -PASS -- TEST 'control_ras_debug_intel' [04:32, 03:25](754 MB) -PASS -- TEST 'control_diag_debug_intel' [04:37, 03:31](816 MB) -PASS -- TEST 'control_debug_p8_intel' [07:05, 03:34](1585 MB) -PASS -- TEST 'regional_debug_intel' [25:58, 21:43](778 MB) -PASS -- TEST 'rap_control_debug_intel' [07:33, 05:59](1153 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:34, 05:55](1151 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 05:58](1152 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:03](1147 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:02](1160 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:19](1229 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:30, 06:09](1149 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:23, 06:09](1133 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:27, 06:03](1146 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 05:59](1153 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:05](1137 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:31, 06:04](1145 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:28, 09:53](1153 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:27, 05:57](1147 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 07:20](1148 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:23, 06:02](1143 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:27, 10:23](1155 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:11, 04:04] -PASS -- TEST 'control_wam_debug_intel' [08:27, 06:09](447 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:03] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:17, 05:11](1073 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:21, 08:20](898 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:07, 04:22](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:59, 07:51](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:11, 04:01](909 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:42, 04:33](852 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:14, 06:13](902 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:21](842 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 42:33] -PASS -- TEST 'conus13km_control_intel' [05:07, 02:56](1104 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:24](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:49, 01:35](1021 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:14, 30:36] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 05:29](897 MB) +PASS -- COMPILE 's2swa_32bit_intel' [39:14, 38:39] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 07:08](1789 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:16, 54:23] +PASS -- TEST 'cpld_control_gfsv17_intel' [23:03, 20:45](1667 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:13, 22:21](1888 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:10, 10:19](993 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:37, 23:57](1622 MB) + +PASS -- COMPILE 's2swa_intel' [39:14, 38:48] +PASS -- TEST 'cpld_control_p8_intel' [09:24, 07:38](1825 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:45, 07:56](1826 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:46, 04:31](1714 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:23, 07:40](1853 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:47, 05:07](1728 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:26, 07:02](2274 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:17, 07:59](1822 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:41, 06:51](1781 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 07:34](1826 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:35, 07:12](1787 MB) + +PASS -- COMPILE 's2sw_intel' [36:13, 36:04] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:24, 05:52](1658 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:41, 05:39](1710 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:32] +PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:34](1846 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:40] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:27, 07:13](1676 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [32:13, 32:02] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 05:41](1719 MB) + +PASS -- COMPILE 's2s_intel' [33:13, 32:17] +PASS -- TEST 'cpld_control_c48_intel' [15:32, 13:21](2798 MB) + +PASS -- COMPILE 's2swa_faster_intel' [33:19, 32:56] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:57, 07:00](1818 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:18] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:40, 20:42](1678 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 10:25](1038 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:43, 23:57](1658 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:56] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:30, 32:11](1688 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:43] +PASS -- TEST 'control_flake_intel' [05:30, 04:34](643 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:12, 04:05](1545 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:17, 04:13](1551 MB) +PASS -- TEST 'control_latlon_intel' [05:08, 04:03](1546 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:16, 04:07](1548 MB) +PASS -- TEST 'control_c48_intel' [13:22, 11:53](1734 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:43, 10:12](843 MB) +PASS -- TEST 'control_c192_intel' [15:30, 14:01](1675 MB) +PASS -- TEST 'control_c384_intel' [21:20, 18:20](1827 MB) +PASS -- TEST 'control_c384gdas_intel' [17:47, 14:00](1013 MB) +PASS -- TEST 'control_stochy_intel' [03:32, 02:15](600 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:30, 01:22](434 MB) +PASS -- TEST 'control_lndp_intel' [03:31, 02:08](605 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 03:18](599 MB) +PASS -- TEST 'control_iovr5_intel' [06:32, 05:34](593 MB) +PASS -- TEST 'control_p8_intel' [06:32, 04:20](1574 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 04:02](1571 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 04:00](1575 MB) +PASS -- TEST 'control_restart_p8_intel' [04:10, 02:19](811 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:46, 04:05](1571 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:14, 02:15](837 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:32, 04:06](1564 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:48, 03:53](1663 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:14, 07:15](1569 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:21](1628 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:48, 04:21](1578 MB) +PASS -- TEST 'merra2_thompson_intel' [07:05, 04:33](1574 MB) +PASS -- TEST 'regional_control_intel' [09:06, 07:14](761 MB) +PASS -- TEST 'regional_restart_intel' [04:43, 03:44](934 MB) +PASS -- TEST 'regional_decomp_intel' [14:06, 12:46](762 MB) +PASS -- TEST 'regional_2threads_intel' [05:44, 04:37](758 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 06:54](759 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 07:00](765 MB) + +PASS -- COMPILE 'rrfs_intel' [33:13, 32:30] +PASS -- TEST 'rap_control_intel' [12:18, 10:10](993 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 05:47](1217 MB) +PASS -- TEST 'rap_decomp_intel' [11:56, 10:34](987 MB) +PASS -- TEST 'rap_2threads_intel' [14:00, 12:25](1088 MB) +PASS -- TEST 'rap_restart_intel' [07:16, 05:13](994 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:12, 10:12](993 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:02, 10:46](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 07:29](996 MB) +PASS -- TEST 'hrrr_control_intel' [06:14, 05:08](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 05:24](984 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:59, 04:53](1051 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:47](919 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:30, 10:00](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:27, 12:10](1949 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:27, 12:18](1941 MB) + +PASS -- COMPILE 'csawmg_intel' [31:13, 30:58] +PASS -- TEST 'control_csawmg_intel' [08:51, 08:01](695 MB) +PASS -- TEST 'control_ras_intel' [05:27, 04:26](665 MB) + +PASS -- COMPILE 'wam_intel' [30:12, 29:35] +PASS -- TEST 'control_wam_intel' [03:26, 02:44](503 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [32:12, 32:05] +PASS -- TEST 'control_p8_faster_intel' [05:37, 03:36](1581 MB) +PASS -- TEST 'regional_control_faster_intel' [07:47, 06:28](764 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:38] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 03:27](1558 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 03:27](1554 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:53](765 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:24, 03:26](766 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:46, 05:21](812 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 03:23](772 MB) +PASS -- TEST 'control_diag_debug_intel' [04:54, 03:29](1622 MB) +PASS -- TEST 'control_debug_p8_intel' [04:52, 03:35](1598 MB) +PASS -- TEST 'regional_debug_intel' [22:46, 21:38](774 MB) +PASS -- TEST 'rap_control_debug_intel' [06:29, 06:00](1158 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:52](1156 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 06:02](1145 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:59](1144 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 06:00](1148 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:41, 06:19](1234 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 06:09](1150 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 06:06](1154 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:27, 06:08](1150 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 06:00](1155 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 05:53](1149 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 06:01](1153 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 09:51](1146 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 06:02](1148 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 07:20](1153 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 06:00](1145 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:29, 10:27](1153 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:45] +PASS -- TEST 'control_wam_debug_intel' [07:27, 06:09](465 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:13, 29:43] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 05:07](1073 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:57, 08:09](901 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 04:20](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:21, 07:46](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:37, 04:00](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 04:35](853 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:11, 06:09](897 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:21](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 42:39] +PASS -- TEST 'conus13km_control_intel' [05:11, 03:26](1103 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:38](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:39](1022 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:14, 30:16] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:01, 05:29](905 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:06] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 06:03](1029 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 05:52](1025 MB) -PASS -- TEST 'conus13km_debug_intel' [21:00, 18:23](1126 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:58, 18:38](850 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:50, 10:44](1086 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:50, 18:37](1202 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:08] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:43, 06:08](1072 MB) - -PASS -- COMPILE 'hafsw_intel' [35:14, 34:45] -PASS -- TEST 'hafs_regional_atm_intel' [08:27, 06:56](711 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:37, 06:23](1087 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:53, 09:12](776 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:34, 16:19](802 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:57, 18:03](822 MB) -PASS -- TEST 'gnv1_nested_intel' [07:27, 05:40](774 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:13, 31:56] -PASS -- TEST 'hafs_regional_docn_intel' [11:22, 08:35](769 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:26, 08:38](748 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:54] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:35](1063 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:13](1031 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:31](917 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 03:34](919 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:35](923 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:37](1066 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:52](1065 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:32](916 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 07:57](890 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:19, 07:47](845 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1058 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:25, 05:02](2333 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:25, 05:05](2345 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:21] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 07:58](1006 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 07:55] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 03:32](1059 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:52] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:37](230 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:27, 01:20](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:50](256 MB) - -PASS -- COMPILE 'atml_intel' [34:12, 33:57] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:51, 07:54](1606 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:50, 07:58](1605 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:55, 04:18](858 MB) - -PASS -- COMPILE 'atmw_intel' [32:13, 31:45] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:29, 02:16](1605 MB) - -PASS -- COMPILE 'atmwm_intel' [31:13, 31:00] -PASS -- TEST 'control_atmwav_intel' [04:14, 02:14](611 MB) - -PASS -- COMPILE 'atmaero_intel' [31:13, 30:56] -PASS -- TEST 'atmaero_control_p8_intel' [08:27, 05:21](1677 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:31, 06:20](1725 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:14, 06:44](1736 MB) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 05:57](1033 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 05:49](1027 MB) +PASS -- TEST 'conus13km_debug_intel' [19:58, 18:28](1132 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:58, 18:36](852 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:42](1084 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:52, 18:14](1204 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:53] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 06:04](1073 MB) + +PASS -- COMPILE 'hafsw_intel' [35:13, 35:06] +PASS -- TEST 'hafs_regional_atm_intel' [08:25, 07:00](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:36, 06:59](1082 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:45, 09:21](777 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 16:23](802 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 18:16](823 MB) +PASS -- TEST 'gnv1_nested_intel' [09:24, 07:41](779 MB) + +PASS -- COMPILE 'hafs_all_intel' [32:13, 31:31] +PASS -- TEST 'hafs_regional_docn_intel' [10:26, 08:48](773 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:30, 09:00](758 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:02] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 03:35](1069 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:15](1029 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 03:31](924 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 03:36](928 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 03:35](929 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:23, 03:35](1081 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 03:38](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:22, 03:32](937 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:20, 07:57](884 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:20, 08:03](842 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:19, 03:35](1077 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 05:01](2399 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 05:03](2403 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:13] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 07:59](996 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:01] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 03:36](1054 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:51] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:35, 01:47](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:30, 04:53](266 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:53](251 MB) + +PASS -- COMPILE 'atml_intel' [39:14, 38:47] +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_p8_atmlnd_sbs_intel' [, ]( MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 07:29](1600 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:52, 03:51](870 MB) + +PASS -- COMPILE 'atmw_intel' [32:13, 31:19] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:17](1609 MB) + +PASS -- COMPILE 'atmaero_intel' [31:12, 30:48] +PASS -- TEST 'atmaero_control_p8_intel' [06:24, 05:09](1693 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:20, 06:25](1717 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) SYNOPSIS: -Starting Date/Time: 20240418 00:51:47 -Ending Date/Time: 20240418 04:31:24 -Total Time: 03h:40m:17s -Compiles Completed: 33/33 -Tests Completed: 161/161 +Starting Date/Time: 20240421 00:24:53 +Ending Date/Time: 20240421 04:39:18 +Total Time: 04h:14m:58s +Compiles Completed: 32/32 +Tests Completed: 156/158 +Failed Tests: +* TEST control_p8_atmlnd_sbs_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2173/ufs-weather-model/tests/logs/log_jet/run_control_p8_atmlnd_sbs_intel.log +* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2173/ufs-weather-model/tests/logs/log_jet/run_atmaero_control_p8_rad_micro_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d47726e50be21a6b878bfb05f03b0b9fbe725775 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3224491 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf.rerun +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atml_intel' [35:13, 34:29] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:54, 08:46](1611 MB) + +PASS -- COMPILE 'atmaero_intel' [31:13, 30:45] +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:26, 06:28](1735 MB) + +SYNOPSIS: +Starting Date/Time: 20240422 16:28:22 +Ending Date/Time: 20240422 17:15:58 +Total Time: 00h:47m:49s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 46908d3ba4..65abf9421d 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -d164b650b97d4c4a68ab86c55f2254f29767da2b +d47726e50be21a6b878bfb05f03b0b9fbe725775 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -35,278 +35,376 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240417 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_337338 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_400870 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:56] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:29, 05:28](3177 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:51] -PASS -- TEST 'cpld_control_gfsv17_intel' [18:52, 16:31](1742 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:03, 17:30](2025 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:55, 08:23](1111 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:54, 18:29](1645 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 04:53] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:00](1692 MB) - -PASS -- COMPILE 's2swa_intel' [15:11, 14:26] -PASS -- TEST 'cpld_control_p8_intel' [07:49, 05:37](3207 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:13, 05:37](3213 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:02, 03:24](3255 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:49, 05:38](3238 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:03, 03:28](3281 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:49, 06:06](3556 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:49, 05:39](3202 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:52, 04:42](3067 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:13, 05:42](3210 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 09:57](3331 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:26, 06:31](3620 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:53, 11:05](4121 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:08, 07:24](4363 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:59, 05:25](3178 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 14:15] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:28, 04:21](1736 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:53, 04:24](1778 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:27] -PASS -- TEST 'cpld_debug_p8_intel' [10:38, 08:33](3249 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:48] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:11, 06:00](1754 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:17] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:27, 04:24](1778 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 13:15] -PASS -- TEST 'cpld_control_c48_intel' [09:02, 08:05](2830 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:26] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:52, 05:20](3213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:23] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:21, 16:41](1762 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:31, 08:20](1172 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:23, 18:35](1686 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:49] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:04, 24:30](1714 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:28] -PASS -- TEST 'control_flake_intel' [04:27, 03:28](696 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:27](649 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:31, 02:37](658 MB) -PASS -- TEST 'control_latlon_intel' [03:24, 02:28](648 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:31](656 MB) -PASS -- TEST 'control_c48_intel' [06:29, 06:03](826 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:29, 05:56](859 MB) -PASS -- TEST 'control_c192_intel' [09:37, 09:04](846 MB) -PASS -- TEST 'control_c384_intel' [12:40, 10:09](1248 MB) -PASS -- TEST 'control_c384gdas_intel' [13:07, 09:06](1355 MB) -PASS -- TEST 'control_stochy_intel' [02:23, 01:42](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:05](498 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:34](653 MB) -PASS -- TEST 'control_iovr4_intel' [03:25, 02:28](656 MB) -PASS -- TEST 'control_iovr5_intel' [03:23, 02:30](650 MB) -PASS -- TEST 'control_p8_intel' [05:10, 03:09](1634 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 03:09](1627 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 03:02](1626 MB) -PASS -- TEST 'control_restart_p8_intel' [03:21, 01:41](889 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:36, 02:56](1623 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:13, 01:39](929 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:30, 03:03](1616 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:30, 03:11](1717 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:00, 05:22](1637 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:46, 03:58](1696 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:47, 03:03](1631 MB) -PASS -- TEST 'merra2_thompson_intel' [05:57, 03:31](1648 MB) -PASS -- TEST 'regional_control_intel' [06:54, 05:10](861 MB) -PASS -- TEST 'regional_restart_intel' [04:49, 02:46](1021 MB) -PASS -- TEST 'regional_decomp_intel' [06:50, 05:30](843 MB) -PASS -- TEST 'regional_2threads_intel' [04:41, 03:43](841 MB) -PASS -- TEST 'regional_noquilt_intel' [06:36, 05:10](1366 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:49, 05:17](855 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 05:08](850 MB) -PASS -- TEST 'regional_wofs_intel' [07:38, 06:40](1917 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:34] -PASS -- TEST 'rap_control_intel' [09:30, 07:48](1100 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 04:43](1307 MB) -PASS -- TEST 'rap_decomp_intel' [10:29, 08:07](1037 MB) -PASS -- TEST 'rap_2threads_intel' [08:58, 07:55](1175 MB) -PASS -- TEST 'rap_restart_intel' [05:26, 04:03](1091 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:28, 07:48](1098 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:26, 08:06](1027 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 05:47](1124 MB) -PASS -- TEST 'hrrr_control_intel' [06:07, 04:06](1030 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:12](1024 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 03:24](1111 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:10](987 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:25, 07:41](1093 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 09:12](1997 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 09:05](2074 MB) - -PASS -- COMPILE 'csawmg_intel' [11:10, 10:52] -PASS -- TEST 'control_csawmg_intel' [08:53, 06:09](746 MB) -PASS -- TEST 'control_csawmgt_intel' [07:50, 06:05](747 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:22](738 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 12:03] -PASS -- TEST 'control_wam_intel' [05:21, 02:05](654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 11:44] -PASS -- TEST 'control_p8_faster_intel' [05:38, 02:40](1621 MB) -PASS -- TEST 'regional_control_faster_intel' [05:46, 04:42](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:54] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:32, 02:53](812 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 02:43](818 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:23, 03:02](821 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:52](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:45, 04:10](863 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:42, 04:10](865 MB) -PASS -- TEST 'control_ras_debug_intel' [05:23, 02:46](827 MB) -PASS -- TEST 'control_diag_debug_intel' [05:30, 02:55](874 MB) -PASS -- TEST 'control_debug_p8_intel' [05:50, 03:21](1653 MB) -PASS -- TEST 'regional_debug_intel' [19:47, 17:40](844 MB) -PASS -- TEST 'rap_control_debug_intel' [06:28, 04:59](1211 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:24, 04:44](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:59](1194 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 04:44](1208 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:59](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:35, 05:25](1282 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:28, 05:14](1202 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 04:56](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:01](1198 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 05:03](1198 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:48](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 04:56](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:02](1199 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:59](1204 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:51](1210 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:27, 05:05](1206 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:30, 08:34](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:20] -PASS -- TEST 'control_wam_debug_intel' [05:23, 04:59](522 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:19] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:32](1168 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:18, 06:29](1053 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 03:27](983 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:54, 06:46](1094 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 03:06](957 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:39](930 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:20, 04:50](1044 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:55](928 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:23] -PASS -- TEST 'conus13km_control_intel' [05:01, 02:13](1201 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:09](1124 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:17](1056 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:01] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:19](994 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:02](1079 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:50](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [16:47, 14:33](1229 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:26](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:08](1154 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:28](1297 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:29] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:32, 05:05](1129 MB) - -PASS -- COMPILE 'hafsw_intel' [14:12, 13:06] -PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:39](743 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:04](1116 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:28, 06:59](831 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:15, 12:51](865 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:42](833 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 06:13](500 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 07:36](514 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 03:17](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:19, 08:02](469 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:13](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:00, 03:56](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 05:24](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:30](408 MB) -PASS -- TEST 'gnv1_nested_intel' [05:55, 04:34](803 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:47] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:50, 13:20](570 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:57, 09:43](728 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:08, 09:45](704 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:49] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:02, 07:01](695 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:11, 12:27] -PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:22](782 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:24](812 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:59, 15:58](1211 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:43] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:44](1131 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:40](1090 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:37](1001 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:44](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:39](1012 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:41](1137 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:48](1143 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:35](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 06:01](1050 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:18, 05:56](1043 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:19, 02:43](1119 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:39](2482 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:40](2491 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 04:15] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:18, 06:08](1056 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:23] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1127 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:09] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 00:51](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:52](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:31](319 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:21] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:13](1609 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:27, 04:12](1601 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:45, 02:25](900 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 12:17] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:20, 01:49](1668 MB) - -PASS -- COMPILE 'atmwm_intel' [14:11, 11:44] -PASS -- TEST 'control_atmwav_intel' [03:08, 01:44](671 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 11:26] -PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:04](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:16, 04:49](3091 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:04, 05:01](3113 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:18] -PASS -- TEST 'regional_atmaq_debug_intel' [22:43, 20:24](4577 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:56] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:22, 05:18](3112 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:24] +PASS -- TEST 'cpld_control_gfsv17_intel' [18:54, 16:34](1744 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:01, 17:20](2026 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:09, 08:05](1112 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:51, 18:36](1644 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:18] +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:56, 23:09](1683 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 15:26] +PASS -- TEST 'cpld_control_p8_intel' [08:02, 05:39](3210 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:22, 05:41](3211 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:07, 03:18](3253 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:02, 05:46](3237 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:07, 03:21](3272 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:06, 06:18](3556 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:02, 05:44](3199 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:50, 04:43](3072 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:26, 05:46](3212 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 10:01](3339 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:35, 06:13](3626 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:57, 11:05](4120 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:22, 07:03](4371 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:07, 05:19](3176 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 12:53] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:04, 04:23](1734 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:30, 04:18](1780 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:16] +PASS -- TEST 'cpld_debug_p8_intel' [10:47, 08:41](3251 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:18] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:12, 06:02](1756 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 13:00] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:28, 04:26](1775 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 14:07] +PASS -- TEST 'cpld_control_c48_intel' [10:07, 08:09](2835 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:10] +PASS -- TEST 'cpld_control_p8_faster_intel' [07:43, 05:21](3152 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:59] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:27, 16:40](1764 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:27, 08:14](1177 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:18, 18:45](1685 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:24] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:12, 24:12](1720 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:33] +PASS -- TEST 'control_flake_intel' [04:32, 03:30](698 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:31, 06:00](872 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB) +PASS -- TEST 'control_c384gdas_intel' [12:18, 08:58](1359 MB) +PASS -- TEST 'control_stochy_intel' [02:25, 01:42](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:22, 00:59](502 MB) +PASS -- TEST 'control_lndp_intel' [02:26, 01:34](653 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:32](650 MB) +PASS -- TEST 'control_iovr5_intel' [03:26, 02:27](654 MB) +PASS -- TEST 'control_p8_intel' [04:43, 03:04](1626 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:43, 02:59](1638 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:40, 02:51](1626 MB) +PASS -- TEST 'control_restart_p8_intel' [03:35, 01:37](899 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:36, 02:59](1619 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:17, 01:37](934 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:20, 03:00](1608 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:19, 03:03](1719 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:59, 05:10](1634 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:55](1691 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:34, 02:59](1633 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB) +PASS -- TEST 'regional_control_intel' [06:52, 05:13](817 MB) +PASS -- TEST 'regional_restart_intel' [03:42, 02:45](987 MB) +PASS -- TEST 'regional_decomp_intel' [06:36, 05:33](851 MB) +PASS -- TEST 'regional_2threads_intel' [04:33, 03:47](847 MB) +PASS -- TEST 'regional_noquilt_intel' [05:47, 05:03](1369 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:50, 05:10](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 05:11](858 MB) +PASS -- TEST 'regional_wofs_intel' [07:45, 06:43](1923 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:29] +PASS -- TEST 'rap_control_intel' [09:34, 07:43](1106 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:48](1297 MB) +PASS -- TEST 'rap_decomp_intel' [09:00, 08:06](1024 MB) +PASS -- TEST 'rap_2threads_intel' [08:57, 07:52](1183 MB) +PASS -- TEST 'rap_restart_intel' [05:21, 04:03](1102 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:33, 07:40](1106 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:29, 08:07](1025 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:21, 05:50](1129 MB) +PASS -- TEST 'hrrr_control_intel' [05:10, 04:00](1035 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:09, 04:08](1028 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:03, 03:26](1111 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:10](994 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:22, 07:33](1091 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:33, 09:09](1990 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 08:57](2071 MB) + +PASS -- COMPILE 'csawmg_intel' [11:10, 11:05] +PASS -- TEST 'control_csawmg_intel' [06:42, 05:59](750 MB) +PASS -- TEST 'control_ras_intel' [04:23, 03:21](735 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 11:04] +PASS -- TEST 'control_wam_intel' [02:22, 02:03](650 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 11:23] +PASS -- TEST 'control_p8_faster_intel' [04:29, 02:39](1623 MB) +PASS -- TEST 'regional_control_faster_intel' [05:47, 04:35](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:17] +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) +PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:01](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:50](819 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:13](863 MB) +PASS -- TEST 'control_ras_debug_intel' [03:23, 02:48](830 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB) +PASS -- TEST 'control_debug_p8_intel' [03:50, 02:45](1650 MB) +PASS -- TEST 'regional_debug_intel' [18:44, 17:17](810 MB) +PASS -- TEST 'rap_control_debug_intel' [05:24, 04:58](1198 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:51](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:52](1197 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:57](1205 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 05:03](1155 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:05](1280 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1210 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:55](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:52](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:59](1200 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:52](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 05:00](1206 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 08:04](1196 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:51](1194 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:04](1199 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:23, 05:02](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:24, 08:26](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:13] +PASS -- TEST 'control_wam_debug_intel' [05:23, 05:00](507 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:32] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:06, 04:25](1165 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:15, 06:25](1051 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 03:22](986 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:57, 06:39](1043 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:18, 03:47](959 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 03:36](920 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:18, 04:51](996 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:52](928 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 14:26] +PASS -- TEST 'conus13km_control_intel' [02:55, 02:07](1203 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:23](1122 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:19](1109 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:26] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:13](998 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:26] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:50](1084 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:56](1075 MB) +PASS -- TEST 'conus13km_debug_intel' [14:49, 14:08](1230 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 14:41](928 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:34, 08:20](1159 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 14:21](1297 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:04] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:05](1128 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 13:30] +PASS -- TEST 'hafs_regional_atm_intel' [07:16, 05:36](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 06:05](1121 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:57](831 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:17, 12:41](862 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:35, 14:37](882 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 06:21](499 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:33](517 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 03:12](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:31, 08:01](474 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:10](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 04:01](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 05:19](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:26](400 MB) +PASS -- TEST 'gnv1_nested_intel' [05:59, 04:35](805 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:36] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:58, 13:08](569 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:11, 14:08] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:02, 09:35](656 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:06, 09:41](741 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 14:00] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 07:03](731 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 12:43] +PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:19](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:25](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 15:51](1208 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:22, 02:44](1135 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:41](1092 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:36](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:40](1017 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:40](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:42](1117 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:45](1137 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:12, 05:54](1059 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:10, 05:51](1036 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:40](1126 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 03:37](2497 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:41](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:42] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:16](1063 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:30] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:40](1126 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:44] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:50](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:50](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:33](309 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 14:20] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:32, 04:14](1615 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:13](1601 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:44, 02:20](893 MB) + +PASS -- COMPILE 'atmw_intel' [13:10, 12:19] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:18, 01:46](1661 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:33] +PASS -- TEST 'atmaero_control_p8_intel' [05:11, 03:57](3019 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:21, 04:43](3092 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:33] +PASS -- TEST 'regional_atmaq_debug_intel' [22:54, 20:29](4572 MB) SYNOPSIS: -Starting Date/Time: 20240418 09:17:36 -Ending Date/Time: 20240418 10:38:54 -Total Time: 01h:21m:41s -Compiles Completed: 38/38 -Tests Completed: 182/182 +Starting Date/Time: 20240422 07:29:19 +Ending Date/Time: 20240422 08:52:50 +Total Time: 01h:23m:58s +Compiles Completed: 37/37 +Tests Completed: 167/179 +Failed Tests: +* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_intel.log +* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_parallel_intel.log +* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_latlon_intel.log +* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_wrtGauss_netcdf_parallel_intel.log +* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c48_intel.log +* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c192_intel.log +* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c384_intel.log +* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_merra2_thompson_intel.log +* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_debug_intel.log +* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_wrtGauss_netcdf_parallel_debug_intel.log +* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_diag_debug_intel.log +* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_atmaero_control_p8_rad_micro_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d47726e50be21a6b878bfb05f03b0b9fbe725775 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_141822 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:33] +PASS -- TEST 'control_CubedSphereGrid_intel' [03:49, 02:56](1598 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:51, 04:16](1604 MB) +PASS -- TEST 'control_latlon_intel' [03:46, 02:54](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:55, 03:00](1599 MB) +PASS -- TEST 'control_c48_intel' [08:50, 07:10](1774 MB) +PASS -- TEST 'control_c192_intel' [11:58, 10:27](1749 MB) +PASS -- TEST 'control_c384_intel' [13:55, 11:23](2001 MB) +PASS -- TEST 'merra2_thompson_intel' [05:39, 03:14](1640 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 05:06] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:50](1606 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:47](1612 MB) +PASS -- TEST 'control_diag_debug_intel' [03:52, 02:58](1664 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:46] +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:03, 04:48](3109 MB) + +SYNOPSIS: +Starting Date/Time: 20240422 10:08:06 +Ending Date/Time: 20240422 10:36:28 +Total Time: 00h:28m:37s +Compiles Completed: 3/3 +Tests Completed: 12/12 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 3b67c86e04..4493b88e42 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -d164b650b97d4c4a68ab86c55f2254f29767da2b +ac0c99fef9ec63df227e1ffff63088c8ec7ecbb1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -35,236 +35,234 @@ 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-20240417 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_53976 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107473 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:27, 10:54] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:12, 01:19](2974 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:28, 11:58] -PASS -- TEST 'cpld_control_gfsv17_intel' [10:11, 01:52](1592 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [52:15, 02:04](1708 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [52:05, 01:55](848 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [10:12, 02:35](1570 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:18] -PASS -- TEST 'cpld_debug_gfsv17_intel' [17:22, 01:57](1600 MB) - -PASS -- COMPILE 's2swa_intel' [16:31, 15:23] -PASS -- TEST 'cpld_control_p8_intel' [06:08, 01:43](3005 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:08, 02:18](3002 MB) -PASS -- TEST 'cpld_restart_p8_intel' [57:25, 01:58](3063 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:08, 01:41](3029 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [57:23, 01:54](3084 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:08, 01:13](3314 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:08, 01:38](3003 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:09, 01:33](2924 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:08, 02:08](3001 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [06:17, 05:37](3948 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:00, 04:12](4251 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:08, 02:12](2971 MB) - -PASS -- COMPILE 's2sw_intel' [22:36, 21:52] -PASS -- TEST 'cpld_control_noaero_p8_intel' [58:35, 01:38](1593 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:35, 01:56](1638 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:37, 21:17] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:02, 01:57](1635 MB) - -PASS -- COMPILE 's2s_intel' [10:25, 09:55] -PASS -- TEST 'cpld_control_c48_intel' [12:13, 00:40](2653 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:32, 16:07] -PASS -- TEST 'cpld_control_p8_faster_intel' [06:07, 02:22](3002 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [43:05, 42:21] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [39:27, 01:04](1606 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:55, 01:23](904 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:56, 01:38](1574 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [21:38, 20:33] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:02, 01:32](1611 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:31, 15:58] -PASS -- TEST 'control_flake_intel' [00:50, 00:31](573 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [00:50, 00:56](523 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [00:50, 01:04](530 MB) -PASS -- TEST 'control_latlon_intel' [00:50, 00:51](522 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [00:50, 00:54](521 MB) -PASS -- TEST 'control_c48_intel' [00:49, 00:53](715 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [00:49, 00:50](714 MB) -PASS -- TEST 'control_c192_intel' [00:50, 01:38](636 MB) -PASS -- TEST 'control_c384_intel' [00:54, 02:39](952 MB) -PASS -- TEST 'control_c384gdas_intel' [00:54, 03:46](1090 MB) -PASS -- TEST 'control_stochy_intel' [00:50, 00:31](532 MB) -PASS -- TEST 'control_stochy_restart_intel' [58:14, 01:00](346 MB) -PASS -- TEST 'control_lndp_intel' [00:50, 00:32](527 MB) -PASS -- TEST 'control_iovr4_intel' [00:50, 00:54](527 MB) -PASS -- TEST 'control_iovr5_intel' [00:50, 00:56](522 MB) -PASS -- TEST 'control_p8_intel' [00:50, 02:07](1501 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [58:17, 01:53](1497 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [57:35, 01:52](1513 MB) -PASS -- TEST 'control_restart_p8_intel' [55:05, 00:37](692 MB) -PASS -- TEST 'control_noqr_p8_intel' [57:18, 01:27](1494 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [51:56, 01:02](700 MB) -PASS -- TEST 'control_decomp_p8_intel' [57:12, 01:19](1503 MB) -PASS -- TEST 'control_2threads_p8_intel' [57:10, 00:50](1591 MB) -PASS -- TEST 'control_p8_lndp_intel' [57:10, 01:12](1499 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [57:08, 01:56](1571 MB) -PASS -- TEST 'control_p8_mynn_intel' [57:07, 01:37](1508 MB) -PASS -- TEST 'merra2_thompson_intel' [56:56, 01:25](1511 MB) -PASS -- TEST 'regional_control_intel' [56:55, 00:16](609 MB) -PASS -- TEST 'regional_restart_intel' [50:42, 00:27](777 MB) -PASS -- TEST 'regional_decomp_intel' [56:52, 00:59](606 MB) -PASS -- TEST 'regional_2threads_intel' [56:50, 00:50](664 MB) -PASS -- TEST 'regional_noquilt_intel' [56:06, 00:25](1147 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [55:23, 00:24](609 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [54:08, 00:26](608 MB) -PASS -- TEST 'regional_wofs_intel' [54:06, 00:57](1579 MB) - -PASS -- COMPILE 'rrfs_intel' [21:39, 21:13] -PASS -- TEST 'rap_control_intel' [50:27, 02:07](919 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [50:23, 01:13](1089 MB) -PASS -- TEST 'rap_decomp_intel' [50:05, 00:52](917 MB) -PASS -- TEST 'rap_2threads_intel' [49:48, 02:01](1006 MB) -PASS -- TEST 'rap_restart_intel' [40:56, 01:15](790 MB) -PASS -- TEST 'rap_sfcdiff_intel' [49:44, 01:39](916 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:40, 01:16](913 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [40:01, 01:43](784 MB) -PASS -- TEST 'hrrr_control_intel' [49:33, 01:08](910 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [49:32, 01:04](909 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [49:32, 01:14](995 MB) -PASS -- TEST 'hrrr_control_restart_intel' [43:13, 01:03](743 MB) -PASS -- TEST 'rrfs_v1beta_intel' [49:05, 01:45](909 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [48:30, 01:05](1875 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [48:16, 01:19](1861 MB) - -PASS -- COMPILE 'csawmg_intel' [17:33, 16:58] -PASS -- TEST 'control_csawmg_intel' [53:28, 01:57](598 MB) -PASS -- TEST 'control_csawmgt_intel' [52:39, 00:31](598 MB) -PASS -- TEST 'control_ras_intel' [51:58, 01:03](561 MB) - -PASS -- COMPILE 'wam_intel' [18:35, 18:10] -PASS -- TEST 'control_wam_intel' [51:34, 00:58](271 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:30, 13:16] -PASS -- TEST 'control_p8_faster_intel' [51:48, 02:06](1505 MB) -PASS -- TEST 'regional_control_faster_intel' [51:45, 00:24](610 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 08:46] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [51:30, 01:18](682 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [51:08, 01:23](692 MB) -PASS -- TEST 'control_stochy_debug_intel' [50:51, 00:52](690 MB) -PASS -- TEST 'control_lndp_debug_intel' [50:45, 01:11](692 MB) -PASS -- TEST 'control_csawmg_debug_intel' [48:03, 01:22](733 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [47:22, 00:43](731 MB) -PASS -- TEST 'control_ras_debug_intel' [47:17, 00:49](701 MB) -PASS -- TEST 'control_diag_debug_intel' [47:01, 01:08](748 MB) -PASS -- TEST 'control_debug_p8_intel' [46:52, 00:19](1527 MB) -PASS -- TEST 'regional_debug_intel' [46:50, 00:34](631 MB) -PASS -- TEST 'rap_control_debug_intel' [46:28, 00:39](1077 MB) -PASS -- TEST 'hrrr_control_debug_intel' [46:24, 00:44](1068 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [46:23, 00:41](1071 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [46:17, 00:38](1072 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [46:16, 00:37](1076 MB) -PASS -- TEST 'rap_diag_debug_intel' [46:02, 00:48](1158 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:20, 00:46](1074 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:46, 00:45](1074 MB) -PASS -- TEST 'rap_lndp_debug_intel' [43:13, 00:52](1077 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:13, 00:54](1076 MB) -PASS -- TEST 'rap_noah_debug_intel' [42:57, 00:53](1074 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [42:03, 00:54](1078 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:45, 00:48](1074 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [41:23, 00:56](1071 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [41:02, 01:07](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [40:56, 00:55](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:54, 02:16](1078 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:17, 02:55] -PASS -- TEST 'control_wam_debug_intel' [40:26, 00:58](299 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:16, 14:48] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [40:02, 01:21](961 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [39:43, 01:12](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:42, 02:26](786 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [38:48, 01:29](849 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:46, 01:44](839 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [38:44, 01:28](786 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:25, 01:30](688 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [33:50, 00:17](667 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 10:48] -PASS -- TEST 'conus13km_control_intel' [38:43, 01:02](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [34:50, 00:50](1007 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [34:28, 00:41](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:40, 22:40] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [36:22, 01:25](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [21:46, 20:59] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [35:58, 01:05](952 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [35:58, 01:12](953 MB) -PASS -- TEST 'conus13km_debug_intel' [35:58, 00:25](1036 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [35:37, 01:15](709 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [35:32, 00:34](1035 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [34:55, 01:16](1099 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:26, 06:27] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [38:43, 00:58](981 MB) - -PASS -- COMPILE 'hafsw_intel' [24:47, 24:16] -PASS -- TEST 'hafs_regional_atm_intel' [28:53, 01:52](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:53, 00:27](966 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:51, 01:42](661 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [28:51, 01:36](703 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [28:52, 01:20](712 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [28:51, 00:59](388 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [28:52, 02:05](405 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [28:52, 01:28](290 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [28:55, 02:56](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [28:51, 01:26](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [28:51, 00:50](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [28:53, 00:44](494 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [28:52, 01:15](313 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:28, 09:39] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [38:24, 01:33](504 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:33, 11:36] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:56, 01:39](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:42, 01:39](711 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:34, 11:52] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:28, 00:56](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [24:44, 24:18] -PASS -- TEST 'hafs_regional_docn_intel' [17:01, 01:22](664 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:36, 02:09](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:34, 00:26](880 MB) - -PASS -- COMPILE 'atml_intel' [16:37, 15:26] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [32:38, 01:15](1550 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [32:38, 01:15](1550 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:17, 01:16](741 MB) - -PASS -- COMPILE 'atmaero_intel' [11:32, 10:33] -PASS -- TEST 'atmaero_control_p8_intel' [32:58, 01:31](2854 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [32:58, 01:54](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:58, 01:40](2924 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:20, 08:02] -PASS -- TEST 'regional_atmaq_debug_intel' [33:47, 01:21](4437 MB) +PASS -- COMPILE 's2swa_32bit_intel' [28:50, 28:24] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:46, 01:30](2975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:12] +PASS -- TEST 'cpld_control_gfsv17_intel' [42:52, 01:51](1594 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:49, 02:21](1708 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [24:39, 01:59](847 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:59, 02:28](1573 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [29:50, 28:55] +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:58, 02:06](1604 MB) + +PASS -- COMPILE 's2swa_intel' [23:40, 22:52] +PASS -- TEST 'cpld_control_p8_intel' [35:42, 01:12](3004 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:42, 01:39](3002 MB) +PASS -- TEST 'cpld_restart_p8_intel' [27:20, 01:49](3062 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [35:42, 01:08](3027 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [27:21, 01:46](3081 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [35:42, 01:40](3317 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [35:42, 01:08](2996 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [35:43, 01:32](2927 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:42, 01:26](3001 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [35:51, 04:40](3952 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:25, 04:10](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [35:42, 01:47](2967 MB) + +PASS -- COMPILE 's2sw_intel' [15:31, 14:50] +PASS -- TEST 'cpld_control_noaero_p8_intel' [43:51, 00:58](1583 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:13, 01:54](1637 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:25] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:59, 02:04](1640 MB) + +PASS -- COMPILE 's2s_intel' [20:36, 19:49] +PASS -- TEST 'cpld_control_c48_intel' [38:46, 01:34](2657 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:54] +PASS -- TEST 'cpld_control_p8_faster_intel' [42:52, 01:41](3004 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 16:58] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:51, 00:59](1606 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:27, 01:31](903 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 01:37](1576 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:19, 04:14] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:04, 01:37](1615 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [22:40, 22:06] +PASS -- TEST 'control_flake_intel' [31:23, 00:22](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [31:23, 00:28](1475 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [31:23, 00:28](1486 MB) +PASS -- TEST 'control_latlon_intel' [31:23, 00:24](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [31:23, 01:29](1468 MB) +PASS -- TEST 'control_c48_intel' [31:22, 00:56](1597 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [31:22, 00:52](715 MB) +PASS -- TEST 'control_c192_intel' [20:26, 00:35](1587 MB) +PASS -- TEST 'control_c384_intel' [31:27, 01:54](1909 MB) +PASS -- TEST 'control_c384gdas_intel' [31:27, 02:34](1094 MB) +PASS -- TEST 'control_stochy_intel' [31:23, 00:26](527 MB) +PASS -- TEST 'control_stochy_restart_intel' [28:56, 01:01](331 MB) +PASS -- TEST 'control_lndp_intel' [31:23, 00:31](527 MB) +PASS -- TEST 'control_iovr4_intel' [30:43, 00:41](525 MB) +PASS -- TEST 'control_iovr5_intel' [28:05, 00:43](523 MB) +PASS -- TEST 'control_p8_intel' [27:54, 01:35](1507 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [27:39, 01:55](1498 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [27:36, 01:54](1502 MB) +PASS -- TEST 'control_restart_p8_intel' [22:48, 00:57](695 MB) +PASS -- TEST 'control_noqr_p8_intel' [27:32, 01:35](1491 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [22:23, 00:55](700 MB) +PASS -- TEST 'control_decomp_p8_intel' [27:31, 01:25](1496 MB) +PASS -- TEST 'control_2threads_p8_intel' [27:30, 01:12](1592 MB) +PASS -- TEST 'control_p8_lndp_intel' [27:29, 01:05](1505 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [27:11, 01:57](1566 MB) +PASS -- TEST 'control_p8_mynn_intel' [27:10, 01:50](1512 MB) +PASS -- TEST 'merra2_thompson_intel' [27:03, 01:40](1511 MB) +PASS -- TEST 'regional_control_intel' [26:56, 01:13](608 MB) +PASS -- TEST 'regional_restart_intel' [20:09, 00:24](782 MB) +PASS -- TEST 'regional_decomp_intel' [26:53, 00:57](608 MB) +PASS -- TEST 'regional_2threads_intel' [26:27, 00:56](662 MB) +PASS -- TEST 'regional_noquilt_intel' [26:22, 00:22](1142 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [26:04, 00:22](608 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [25:55, 00:12](609 MB) +PASS -- TEST 'regional_wofs_intel' [24:36, 00:47](1577 MB) + +PASS -- COMPILE 'rrfs_intel' [32:48, 31:37] +PASS -- TEST 'rap_control_intel' [14:57, 01:15](919 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:01, 01:05](1093 MB) +PASS -- TEST 'rap_decomp_intel' [13:51, 01:28](920 MB) +PASS -- TEST 'rap_2threads_intel' [13:44, 01:18](1008 MB) +PASS -- TEST 'rap_restart_intel' [06:25, 01:11](785 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:43, 02:12](914 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:37, 01:51](913 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:16, 01:45](787 MB) +PASS -- TEST 'hrrr_control_intel' [12:47, 01:23](912 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:30, 01:02](910 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:09, 01:19](997 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:24, 01:03](739 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:35, 01:19](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:15, 01:00](1878 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:54, 01:17](1861 MB) + +PASS -- COMPILE 'csawmg_intel' [13:27, 12:54] +PASS -- TEST 'control_csawmg_intel' [23:04, 00:35](600 MB) +PASS -- TEST 'control_ras_intel' [22:26, 00:52](559 MB) + +PASS -- COMPILE 'wam_intel' [22:39, 21:31] +PASS -- TEST 'control_wam_intel' [20:11, 00:52](270 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:48] +PASS -- TEST 'control_p8_faster_intel' [33:28, 02:04](1516 MB) +PASS -- TEST 'regional_control_faster_intel' [33:27, 00:23](613 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:29, 13:42] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:03, 01:18](1487 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:01, 00:29](1491 MB) +PASS -- TEST 'control_stochy_debug_intel' [21:40, 00:52](693 MB) +PASS -- TEST 'control_lndp_debug_intel' [21:39, 01:10](692 MB) +PASS -- TEST 'control_csawmg_debug_intel' [21:23, 00:40](735 MB) +PASS -- TEST 'control_ras_debug_intel' [20:40, 01:06](704 MB) +PASS -- TEST 'control_diag_debug_intel' [20:38, 01:17](1555 MB) +PASS -- TEST 'control_debug_p8_intel' [20:37, 01:05](1517 MB) +PASS -- TEST 'regional_debug_intel' [20:31, 00:41](631 MB) +PASS -- TEST 'rap_control_debug_intel' [20:32, 00:54](1075 MB) +PASS -- TEST 'hrrr_control_debug_intel' [20:17, 00:58](1072 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [20:16, 00:55](1075 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [19:26, 00:56](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:03, 00:59](1073 MB) +PASS -- TEST 'rap_diag_debug_intel' [18:48, 00:50](1158 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:10, 00:46](1076 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [17:54, 00:52](1079 MB) +PASS -- TEST 'rap_lndp_debug_intel' [17:24, 00:51](1077 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:13, 00:53](1075 MB) +PASS -- TEST 'rap_noah_debug_intel' [17:12, 00:59](1072 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [17:11, 00:54](1077 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:55, 00:47](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [16:42, 00:59](1072 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [16:26, 01:05](1076 MB) +PASS -- TEST 'rap_flake_debug_intel' [16:12, 00:50](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [06:12, 02:13](1079 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 05:55] +PASS -- TEST 'control_wam_debug_intel' [32:27, 00:58](299 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:29, 13:45] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:48, 01:21](953 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:43, 01:17](791 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:16, 02:15](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:44, 01:45](849 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:21, 02:17](841 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:42, 02:06](790 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 01:08](685 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:28, 00:16](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [26:43, 25:49] +PASS -- TEST 'conus13km_control_intel' [05:45, 00:59](1003 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:56, 00:53](1007 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 00:39](884 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:37, 21:40] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:40, 01:22](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:17, 03:26] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:13, 01:00](948 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:28, 01:09](952 MB) +PASS -- TEST 'conus13km_debug_intel' [09:16, 01:23](1033 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [08:56, 01:12](706 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:55, 00:26](1037 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [51:27, 01:15](1099 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:29, 13:59] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [03:22, 00:54](982 MB) + +PASS -- COMPILE 'hafsw_intel' [12:27, 12:07] +PASS -- TEST 'hafs_regional_atm_intel' [07:26, 01:55](617 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:18, 01:18](966 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:02, 01:37](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [05:02, 02:22](700 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:51, 01:49](711 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [04:31, 01:02](390 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [04:17, 02:06](408 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:54, 01:28](283 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [03:57, 02:06](532 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:46, 01:30](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:45, 00:46](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:00, 01:36](488 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:51, 01:17](314 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:24, 09:19] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:48, 01:31](499 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:28, 13:04] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:45, 01:45](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [02:17, 01:49](712 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:54] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [59:43, 01:59](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:31, 14:18] +PASS -- TEST 'hafs_regional_docn_intel' [01:41, 02:02](660 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:32, 01:59](650 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:18, 00:29](880 MB) + +PASS -- COMPILE 'atml_intel' [17:34, 16:41] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:02, 02:19](1551 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [59:19, 02:13](1545 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [51:33, 01:16](741 MB) + +PASS -- COMPILE 'atmaero_intel' [15:31, 14:58] +PASS -- TEST 'atmaero_control_p8_intel' [59:15, 01:23](2849 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [59:05, 01:49](2912 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:05, 01:49](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:21, 03:29] +PASS -- TEST 'regional_atmaq_debug_intel' [58:51, 02:09](4447 MB) SYNOPSIS: -Starting Date/Time: 20240418 12:37:01 -Ending Date/Time: 20240418 13:59:51 -Total Time: 01h:23m:22s +Starting Date/Time: 20240422 20:00:17 +Ending Date/Time: 20240422 21:30:47 +Total Time: 01h:31m:05s Compiles Completed: 30/30 -Tests Completed: 157/157 +Tests Completed: 155/155 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/control_ugwpv1.nml.IN b/tests/parm/control_ugwpv1.nml.IN deleted file mode 100644 index ea685cd24e..0000000000 --- a/tests/parm/control_ugwpv1.nml.IN +++ /dev/null @@ -1,319 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fms2_io_nml - netcdf_default_format = "netcdf4" -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.0 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = 1 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = .false. - res_latlon_dynamics = "" -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6 - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 24 - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = 5111 - icliq_sw = 2 - iovr = 3 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = .false. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = @[CDMBWD] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = 1 - iopt_dveg = 1 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - iopt_trs = 2 - iopt_diag = 2 - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = 2,0,0,0,0 - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - effr_in = .true. - ldiag_ugwp = .false. - do_ugwp = .false. - do_tofd = .false. - do_sppt = .false. - do_shum = .false. - do_skeb = .false. - ttendlim = 0.005 - bl_mynn_edmf = 1 - bl_mynn_tkeadvect = .true. - min_lakeice = 0.15 - min_seaice = 0.15 - gwd_opt = 1 - do_ugwp_v1 = @[DO_UGWP_V1] - do_ugwp_v1_w_gsldrag = .true. - do_ugwp_v1_orog_only = .false. - do_gsl_drag_ls_bl = .false. - do_gsl_drag_ss = .false. - do_gsl_drag_tofd = .false. - do_ugwp_v0 = .false. - do_ugwp_v0_orog_only = .false. - -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = @[FNALBC] - FNALBC2 = 'global_albedo4.1x1.grb' - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = 'global_tg3clim.2.6x1.5.grb' - FNVEGC = 'global_vegfrac.0.144.decpercent.grb' - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSOCC = @[FNSOCC] - FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' - FNMSKH = 'global_slmask.t1534.3072.1536.grb' - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = 'global_shdmin.0.144x0.144.grb' - FNVMXC = 'global_shdmax.0.144x0.144.grb' - FNSLPC = 'global_slope.1x1.grb' - FNABSC = @[FNABSC] - LDEBUG = .false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = .true. - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = 99999 - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_version = 1 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 2 - knob_ugwp_ndx4lh = 4 - knob_ugwp_palaunch = 275.0e2 - knob_ugwp_nslope = 0 - knob_ugwp_lzmax = 15.750e3 - knob_ugwp_lzmin = 0.75e3 - knob_ugwp_lzstar = 2.0e3 - knob_ugwp_taumin = 0.25e-3 - knob_ugwp_tauamp = 3.0e-3 - knob_ugwp_lhmet = 200.0e3 - knob_ugwp_orosolv = 'pss-1986' -/ diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/global_control.nml.IN similarity index 93% rename from tests/parm/cpld_control.nml.IN rename to tests/parm/global_control.nml.IN index 9f6703a167..c2e5ec8e43 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -17,7 +17,7 @@ / &fms2_io_nml - netcdf_default_format = "netcdf4" + netcdf_default_format = 'netcdf4' / &fv_core_nml @@ -80,7 +80,7 @@ hord_dp = -5 hord_tr = 8 adjust_dry_mass = .false. - dry_mass=98320.0 + dry_mass = 98320.0 consv_te = 1. do_sat_adj = @[DO_SAT_ADJ] consv_am = .false. @@ -113,7 +113,7 @@ use_ufo = .true. pre_rad = .false. imp_physics = @[IMP_PHYSICS] - iovr = 3 + iovr = @[IOVR] ltaerosol = .false. lradar = .false. ttendlim = -999 @@ -140,7 +140,7 @@ do_gsl_drag_ss = @[DO_GSL_DRAG_SS] do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - min_lakeice = 0.15 + min_lakeice = @[MIN_LAKEICE] min_seaice = @[MIN_SEAICE] use_cice_alb = @[USE_CICE_ALB] pdfcld = .false. @@ -149,7 +149,7 @@ ialb = @[IALB] iems = @[IEMS] iaer = @[IAER] - icliq_sw = 2 + icliq_sw = @[ICLIQ_SW] ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -298,12 +298,12 @@ tau_l2v = 225. tau_v2l = 150. tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water + rthresh = 10.e-6 ! This is a key parameter for cloud water dw_land = 0.16 dw_ocean = 0.10 ql_gen = 1.0e-3 ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 + qi0_crt = 8.0e-5 qs0_crt = 1.0e-3 tau_i2s = 1000. c_psaci = 0.05 @@ -332,14 +332,14 @@ / &namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' + FNGLAC = @[FNGLAC] + FNMXIC = @[FNMXIC] + FNTSFC = @[FNTSFC] + FNSNOC = @[FNSNOC] + FNZORC = @[FNZORC] FNALBC = @[FNALBC] FNALBC2 = @[FNALBC2] - FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb' + FNAISC = @[FNAISC] FNTG3C = @[FNTG3C] FNVEGC = @[FNVEGC] FNVETC = @[FNVETC] @@ -354,12 +354,12 @@ FNVMXC = @[FNVMXC] FNSLPC = @[FNSLPC] FNABSC = @[FNABSC] - LDEBUG =.false. + LDEBUG = .false. FSMCL(2) = 99999 FSMCL(3) = 99999 FSMCL(4) = 99999 LANDICE = @[LANDICE] - FTSFS = 90 + FTSFS = @[FTSFS] FAISL = 99999 FAISS = 99999 FSNOL = 99999 @@ -385,9 +385,9 @@ &nam_sfcperts lndp_type = @[LNDP_TYPE] lndp_model_type = @[LNDP_MODEL_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, + LNDP_TAU=@[LNDP_TAU] + LNDP_LSCALE=@[LNDP_LSCALE] + ISEED_LNDP=@[ISEED_LNDP] lndp_var_list = @[LNDP_VAR_LIST] lndp_prt_list = @[LNDP_PRT_LIST] / @@ -396,6 +396,6 @@ output_directory = '@[MOM6_OUTPUT_DIR]', input_filename = '@[MOM6_RESTART_SETTING]' restart_input_dir = 'INPUT/', - restart_output_dir = '@[MOM6_RESTART_DIR]', + restart_output_dir = '@[MOM6_RESTART_DIR]' parameter_filename = 'INPUT/MOM_input', 'INPUT/MOM_override'/ diff --git a/tests/parm/merra2_thompson.nml.IN b/tests/parm/merra2_thompson.nml.IN deleted file mode 100644 index 1b024bf635..0000000000 --- a/tests/parm/merra2_thompson.nml.IN +++ /dev/null @@ -1,371 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. - max_output_fields = @[MAX_OUTPUT_FIELDS] -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = @[DOMAINS_STACK_SIZE] - print_memory_usage = .false. -/ - -&fms2_io_nml - netcdf_default_format = "netcdf4" -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - dz_min = @[DZ_MIN] - psm_bc = @[PSM_BC] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .true. - reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. - tau = 10.0 - rf_cutoff = 7.5e2 - d2_bg_k1 = @[D2_BG_K1] - d2_bg_k2 = @[D2_BG_K2] - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = @[DNATS] - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = @[DDDMP] - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - dry_mass=98320.0 - consv_te = 1. - do_sat_adj = @[DO_SAT_ADJ] - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = @[RES_LATLON_DYNAMICS] -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = @[FHZERO] - h2o_phys = .true. - ldiag3d = @[LDIAG3D] - qdiag3d = @[QDIAG3D] - print_diff_pgr = @[PRINT_DIFF_PGR] - fhcyc = @[FHCYC] - use_ufo = .true. - pre_rad = .false. - imp_physics = @[IMP_PHYSICS] - iovr = 3 - ltaerosol = @[LTAEROSOL] - mraerosol = @[MRAEROSOL] - lradar = .false. - ttendlim = -999 - dt_inner = @[DT_INNER] - sedi_semi = @[SEDI_SEMI] - decfl = @[DECFL] - oz_phys = .false. - oz_phys_2015 = .true. - lsoil_lsm = 4 - do_mynnedmf = .false. - do_mynnsfclay = .false. - icloud_bl = 1 - bl_mynn_edmf = 1 - bl_mynn_tkeadvect = .true. - bl_mynn_edmf_mom = 1 - do_ugwp = .false. - do_tofd = .false. - gwd_opt = @[GWD_OPT] - do_ugwp_v0 = @[DO_UGWP_V0] - do_ugwp_v1 = @[DO_UGWP_V1] - do_ugwp_v0_orog_only = .false. - do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] - do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] - do_gsl_drag_ss = @[DO_GSL_DRAG_SS] - do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] - do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - min_lakeice = 0.15 - min_seaice = @[MIN_SEAICE] - use_cice_alb = @[USE_CICE_ALB] - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = @[IALB] - iems = @[IEMS] - iaer = @[IAER] - icliq_sw = 2 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = @[RANDOM_CLDS] - trans_trac = .true. - cnvcld = @[CNVCLD] - imfshalcnv = @[IMFSHALCNV] - imfdeepcnv = @[IMFDEEPCNV] - ras = @[RAS] - cdmbgwd = @[CDMBWD] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = @[LSM] - iopt_dveg = @[IOPT_DVEG] - iopt_crs = @[IOPT_CRS] - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = @[IOPT_SFC] - iopt_trs = @[IOPT_TRS] - iopt_diag = @[IOPT_DIAG] - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = @[IOPT_RAD] - iopt_alb = @[IOPT_ALB] - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = @[IOPT_STC] - debug = .false. - nstf_name = @[NSTF_NAME] - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = @[LGFDLMPRAD] - effr_in = .true. - ldiag_ugwp = @[LDIAG_UGWP] - fscav_aero = @[FSCAV_AERO] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - do_RRTMGP = @[DO_RRTMGP] - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] - doGP_lwscat = @[DOGP_LWSCAT] - use_med_flux = @[USE_MED_FLUX] - frac_grid = @[FRAC_GRID] - cplchm = @[CPLCHM] - cplflx = @[CPLFLX] - cplice = @[CPLICE] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - do_ca = @[DO_CA] - ca_global = @[CA_GLOBAL] - ca_sgs = @[CA_SGS] - nca = @[NCA] - ncells = @[NCELLS] - nlives = @[NLIVES] - nseed = @[NSEED] - nfracseed = @[NFRACSEED] - nthresh = @[NTHRESH] - ca_trigger = @[CA_TRIGGER] - nspinup = @[NSPINUP] - iseed_ca = @[ISEED_CA] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = @[KNOB_UGWP_VERSION] - launch_level = 54 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = @[FNALBC] - FNALBC2 = @[FNALBC2] - FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb' - FNTG3C = @[FNTG3C] - FNVEGC = @[FNVEGC] - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSOCC = @[FNSOCC] - FNSMCC = @[FNSMCC] - FNMSKH = @[FNMSKH] - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = @[FNVMNC] - FNVMXC = @[FNVMXC] - FNSLPC = @[FNSLPC] - FNABSC = @[FNABSC] - LDEBUG =.false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = @[LANDICE] - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = @[FSICL] - FSICS = @[FSICS] - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy -/ - -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - lndp_model_type = @[LNDP_MODEL_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, - lndp_var_list = @[LNDP_VAR_LIST] - lndp_prt_list = @[LNDP_PRT_LIST] -/ diff --git a/tests/rt.conf b/tests/rt.conf index 1dc257527b..626d29a6bc 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -145,12 +145,10 @@ RUN | rrfs_v1nssl_nohailnoccn | COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | RUN | control_csawmg | - noaacloud | baseline | -RUN | control_csawmgt | - noaacloud | baseline | RUN | control_ras | - noaacloud acorn | baseline | COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | + hera hercules | fv3 | RUN | control_csawmg | + hera hercules | baseline | -RUN | control_csawmgt | + hera hercules | baseline | # Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 | @@ -167,7 +165,6 @@ RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud RUN | control_stochy_debug | - noaacloud | baseline | RUN | control_lndp_debug | - noaacloud | baseline | RUN | control_csawmg_debug | - noaacloud | baseline | -RUN | control_csawmgt_debug | - noaacloud | baseline | RUN | control_ras_debug | - noaacloud | baseline | RUN | control_diag_debug | - noaacloud | baseline | RUN | control_debug_p8 | - noaacloud | baseline | @@ -192,8 +189,6 @@ RUN | gnv1_c96_no_nest_debug | - noaacloud ### DEBUG ATM tests ### COMPILE | atm_debug_dyn32 | gnu | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | + hera hercules | fv3 | RUN | control_csawmg_debug | + hera hercules | baseline | -RUN | control_csawmgt_debug | + hera hercules | baseline | - COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 | RUN | control_wam_debug | - noaacloud hercules | baseline | @@ -308,11 +303,6 @@ RUN | control_restart_p8_atmlnd | - noaacloud | COMPILE | atmw | intel | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 | RUN | atmwav_control_noaero_p8 | - wcoss2 | baseline | -#connectors (wmesmf) -COMPILE | atmwm | intel | -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | - wcoss2 | fv3 | -RUN | control_atmwav | - wcoss2 | baseline | -#RUN | control_c384gdas_wav | - jet derecho wcoss2 noaacloud | baseline | - ### ATM-GOCART tests ### COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 | RUN | atmaero_control_p8 | - noaacloud | baseline | diff --git a/tests/test_changes.list b/tests/test_changes.list index f822a534c3..bce4315fbb 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,13 +1,14 @@ -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_2dwrtdecomp intel -regional_wofs intel -regional_spp_sppt_shum_skeb intel -regional_control_faster intel -rap_clm_lake_debug intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -hafs_regional_atm intel -hafs_global_multiple_4nests_atm intel -hafs_regional_specified_moving_1nest_atm intel +control_c192 intel +control_c384 intel +control_c48 intel +control_CubedSphereGrid_debug intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_diag_debug intel +control_latlon intel +control_wrtGauss_netcdf_parallel_debug intel +control_wrtGauss_netcdf_parallel intel +merra2_thompson intel +atmaero_control_p8_rad_micro intel +control_c48 gnu +control_diag_debug gnu diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index f9e0a09b1e..6d4012d580 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -51,6 +51,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -79,7 +80,6 @@ export WRTTASK_PER_GROUP=${WPG_atmaero} # default resources export DOMAINS_STACK_SIZE=8000000 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -88,19 +88,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,0,0,0,0 @@ -108,7 +105,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -121,7 +118,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -135,7 +132,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'C96.snowfree_albedo.tileX.nc'" export FNALBC2="'C96.facsf.tileX.nc'" @@ -166,7 +162,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone) export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -175,8 +171,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -185,4 +180,3 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. - diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad index 05ac7156b7..4eac5a3303 100644 --- a/tests/tests/atmaero_control_p8_rad +++ b/tests/tests/atmaero_control_p8_rad @@ -51,6 +51,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -74,7 +75,6 @@ export coupling_interval_sec=${DT_ATMOS} # default resources export DOMAINS_STACK_SIZE=8000000 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -83,19 +83,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=2011 export NSTF_NAME=2,0,0,0,0 @@ -103,7 +100,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.true. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -116,7 +113,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -130,7 +127,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'C96.snowfree_albedo.tileX.nc'" export FNALBC2="'C96.facsf.tileX.nc'" @@ -161,7 +157,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -170,8 +166,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -180,4 +175,3 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. - diff --git a/tests/tests/atmaero_control_p8_rad_micro b/tests/tests/atmaero_control_p8_rad_micro index c2a4171008..1c4bbe4478 100644 --- a/tests/tests/atmaero_control_p8_rad_micro +++ b/tests/tests/atmaero_control_p8_rad_micro @@ -51,6 +51,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -74,7 +75,6 @@ export coupling_interval_sec=${DT_ATMOS} # default resources export DOMAINS_STACK_SIZE=8000000 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -83,19 +83,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.false. export LTAEROSOL=.false. export MRAEROSOL=.true. @@ -105,7 +102,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.true. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -118,7 +115,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -132,7 +129,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'C96.snowfree_albedo.tileX.nc'" export FNALBC2="'C96.facsf.tileX.nc'" @@ -161,7 +157,7 @@ export DZ_MIN=6 export MIN_SEAICE=0.15 export FRAC_GRID=.true. export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -170,8 +166,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_aero_tke_GOCART export DIAG_TABLE=diag_table_p8_gocart_micro -# use same namelist for standalone,coupled P7 -export INPUT_NML=merra2_thompson.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/atmwav_control_noaero_p8 b/tests/tests/atmwav_control_noaero_p8 index 9924a60ff9..19a8523c93 100644 --- a/tests/tests/atmwav_control_noaero_p8 +++ b/tests/tests/atmwav_control_noaero_p8 @@ -50,6 +50,7 @@ export LIST_FILES="sfcf000.nc \ ufs.atmw.ww3.r.2021-03-22-64800" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -90,7 +91,6 @@ export CMEPS_RESTART_DIR=./RESTART/ export cap_dbug_flag=0 export pio_rearranger=box -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -100,26 +100,23 @@ export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -132,7 +129,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -146,7 +143,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'C96.snowfree_albedo.tileX.nc'" export FNALBC2="'C96.facsf.tileX.nc'" @@ -183,7 +179,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -193,8 +189,7 @@ export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index 4099ddf3d1..00dfea7e15 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -50,6 +50,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -66,7 +67,6 @@ export JNPES=$JNPES_thrd export atm_omp_num_threads=2 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -75,19 +75,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -95,7 +92,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -108,7 +105,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -122,7 +119,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'C96.snowfree_albedo.tileX.nc'" export FNALBC2="'C96.facsf.tileX.nc'" @@ -153,7 +149,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -162,10 +158,9 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. diff --git a/tests/tests/control_CubedSphereGrid b/tests/tests/control_CubedSphereGrid index 74eb30485c..772432a196 100644 --- a/tests/tests/control_CubedSphereGrid +++ b/tests/tests/control_CubedSphereGrid @@ -33,6 +33,7 @@ export LIST_FILES="sfcf000.tile1.nc \ atmf024.tile5.nc \ atmf024.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -49,5 +50,5 @@ export IOVR=3 export WRITE_DOPOST=.false. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid_debug b/tests/tests/control_CubedSphereGrid_debug index 531b75d1d1..93681bb8a2 100644 --- a/tests/tests/control_CubedSphereGrid_debug +++ b/tests/tests/control_CubedSphereGrid_debug @@ -34,6 +34,7 @@ export LIST_FILES="sfcf000.tile1.nc \ atmf001.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -49,5 +50,5 @@ export IOVR=3 export OUTPUT_FH="0 1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid_parallel b/tests/tests/control_CubedSphereGrid_parallel index eec8725429..45963ad8f5 100644 --- a/tests/tests/control_CubedSphereGrid_parallel +++ b/tests/tests/control_CubedSphereGrid_parallel @@ -22,6 +22,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF24" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -40,6 +41,5 @@ export HISTORY_FILE_ON_NATIVE_GRID=.true. export WRITE_DOPOST=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN -export DIAG_TABLE=diag_table_gfsv16_3d_soil +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_atmwav b/tests/tests/control_atmwav deleted file mode 100644 index 25dbf67628..0000000000 --- a/tests/tests/control_atmwav +++ /dev/null @@ -1,90 +0,0 @@ -############################################################################### -# -# Global control with 2way atm-wav coupling test -# -############################################################################### - -export TEST_DESCR="Compare global control with 2way atm-wav coupling results with previous trunk version" - -export CNTL_DIR=control_atmwav - -export LIST_FILES="sfcf000.nc \ - sfcf012.nc \ - atmf000.nc \ - atmf012.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF12 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF12 \ - RESTART/20210322.180000.coupler.res \ - RESTART/20210322.180000.fv_core.res.nc \ - RESTART/20210322.180000.fv_core.res.tile1.nc \ - RESTART/20210322.180000.fv_core.res.tile2.nc \ - RESTART/20210322.180000.fv_core.res.tile3.nc \ - RESTART/20210322.180000.fv_core.res.tile4.nc \ - RESTART/20210322.180000.fv_core.res.tile5.nc \ - RESTART/20210322.180000.fv_core.res.tile6.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.180000.fv_tracer.res.tile1.nc \ - RESTART/20210322.180000.fv_tracer.res.tile2.nc \ - RESTART/20210322.180000.fv_tracer.res.tile3.nc \ - RESTART/20210322.180000.fv_tracer.res.tile4.nc \ - RESTART/20210322.180000.fv_tracer.res.tile5.nc \ - RESTART/20210322.180000.fv_tracer.res.tile6.nc \ - RESTART/20210322.180000.phy_data.tile1.nc \ - RESTART/20210322.180000.phy_data.tile2.nc \ - RESTART/20210322.180000.phy_data.tile3.nc \ - RESTART/20210322.180000.phy_data.tile4.nc \ - RESTART/20210322.180000.phy_data.tile5.nc \ - RESTART/20210322.180000.phy_data.tile6.nc \ - RESTART/20210322.180000.sfc_data.tile1.nc \ - RESTART/20210322.180000.sfc_data.tile2.nc \ - RESTART/20210322.180000.sfc_data.tile3.nc \ - RESTART/20210322.180000.sfc_data.tile4.nc \ - RESTART/20210322.180000.sfc_data.tile5.nc \ - RESTART/20210322.180000.sfc_data.tile6.nc \ - 20210322.180000.restart.glo_1deg" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=600 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export IOVR=3 - -export FHMAX=12 -#wave -export WW3_RSTDTHR=3 -export WW3_DT_2_RST="$(printf "%02d" $(( ${WW3_RSTDTHR}*3600 )))" - -export INPES=$INPES_cpl_atmw -export JNPES=$JNPES_cpl_atmw -export atm_omp_num_threads=$THRD_cpl_atmw -export WRTTASK_PER_GROUP=$WPG_cpl_atmw - -export WAV_tasks=$WAV_tasks_cpl_atmw - -export CPL=.true. -export CPLWAV=.true. -export CPLWAV2ATM=.true. -export atm_model='fv3' -export wav_model='ww3' -export coupling_interval_sec=600 -export UFS_CONFIGURE="ufs.configure.blocked_atm_wav_2way.IN" -export WW3_MODDEF=mod_def.glo_1deg - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN diff --git a/tests/tests/control_c192 b/tests/tests/control_c192 index 16af34ee94..9ca7c3ace7 100644 --- a/tests/tests/control_c192 +++ b/tests/tests/control_c192 @@ -17,7 +17,10 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24" +export ATMRES=C192 + export_fv3 +export_tiled export INPES=4 export WRTTASK_PER_GROUP=12 export NPZ=127 @@ -39,11 +42,6 @@ export IOVR=3 export IMO=768 export JMO=384 -export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," -export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," -export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," - export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_c384 b/tests/tests/control_c384 index 3488b81191..ed42237a87 100644 --- a/tests/tests/control_c384 +++ b/tests/tests/control_c384 @@ -17,7 +17,10 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF12" +export ATMRES=C384 + export_fv3 +export_tiled export atm_omp_num_threads=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} @@ -44,14 +47,9 @@ export IMO=1536 export JMO=768 export OUTPUT_FH="6 -1" -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN if [[ $MACHINE_ID = jet ]]; then TPN=18 diff --git a/tests/tests/control_c384gdas b/tests/tests/control_c384gdas index 4b6ac9fc26..77ff247551 100644 --- a/tests/tests/control_c384gdas +++ b/tests/tests/control_c384gdas @@ -49,7 +49,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.060000.sfc_data.tile5.nc \ RESTART/20210322.060000.sfc_data.tile6.nc" -export_fv3 +export_fv3_v16 export atm_omp_num_threads=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} diff --git a/tests/tests/control_c384gdas_wav b/tests/tests/control_c384gdas_wav deleted file mode 100644 index 3669edccb0..0000000000 --- a/tests/tests/control_c384gdas_wav +++ /dev/null @@ -1,126 +0,0 @@ -############################################################################### -# -# Global control test: GFSv16 gdas ensemble forecast case -# -############################################################################### - -export TEST_DESCR="Compare global c384gdas_wave results with previous trunk version" - -export CNTL_DIR=control_c384gdas_wav - -export LIST_FILES="sfcf000.nc \ - sfcf003.nc \ - atmf000.nc \ - atmf003.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF03 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF03 \ - RESTART/20210322.030000.coupler.res \ - RESTART/20210322.030000.fv_core.res.nc \ - RESTART/20210322.030000.fv_core.res.tile1.nc \ - RESTART/20210322.030000.fv_core.res.tile2.nc \ - RESTART/20210322.030000.fv_core.res.tile3.nc \ - RESTART/20210322.030000.fv_core.res.tile4.nc \ - RESTART/20210322.030000.fv_core.res.tile5.nc \ - RESTART/20210322.030000.fv_core.res.tile6.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.030000.fv_tracer.res.tile1.nc \ - RESTART/20210322.030000.fv_tracer.res.tile2.nc \ - RESTART/20210322.030000.fv_tracer.res.tile3.nc \ - RESTART/20210322.030000.fv_tracer.res.tile4.nc \ - RESTART/20210322.030000.fv_tracer.res.tile5.nc \ - RESTART/20210322.030000.fv_tracer.res.tile6.nc \ - RESTART/20210322.030000.phy_data.tile1.nc \ - RESTART/20210322.030000.phy_data.tile2.nc \ - RESTART/20210322.030000.phy_data.tile3.nc \ - RESTART/20210322.030000.phy_data.tile4.nc \ - RESTART/20210322.030000.phy_data.tile5.nc \ - RESTART/20210322.030000.phy_data.tile6.nc \ - RESTART/20210322.030000.sfc_data.tile1.nc \ - RESTART/20210322.030000.sfc_data.tile2.nc \ - RESTART/20210322.030000.sfc_data.tile3.nc \ - RESTART/20210322.030000.sfc_data.tile4.nc \ - RESTART/20210322.030000.sfc_data.tile5.nc \ - RESTART/20210322.030000.sfc_data.tile6.nc \ - 20210322.030000.restart.aoc_9km \ - 20210322.030000.restart.gnh_10m \ - 20210322.030000.restart.gsh_15m" - -export_fv3 - -export FHMAX=9 -export NPZ=127 -export NPZP=128 -export NPX=385 -export NPY=385 -export DT_ATMOS=225 - -export INPES=$INPES_cpl_atmw_gdas -export JNPES=$JNPES_cpl_atmw_gdas -export atm_omp_num_threads=$THRD_cpl_atmw_gdas -export WRTTASK_PER_GROUP=$WPG_cpl_atmw_gdas - -WAV_tasks=${WAV_tasks_atmw_gdas} - -export SYEAR=2021 -export SMONTH=03 -export SDAY=21 -export SHOUR=18 -export FHROT=3 -export OUTPUT_FH="3 -1" -export IAU_OFFSET=6 -export CDMBWD=${CDMBWD_c384} -export OUTPUT_GRID='gaussian_grid' -export WRITE_DOPOST=.true. -export IMO=1536 -export JMO=768 - -export WARM_START=.true. -export NGGPS_IC=.false. -export EXTERNAL_IC=.false. -export MAKE_NH=.false. -export MOUNTAIN=.true. -export NA_INIT=0 -export IAU_INC_FILES="'fv_increment3.nc','fv_increment6.nc','fv_increment9.nc'" -export MODEL_INITIALIZATION=true - -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - -export CPL=.true. -export CPLWAV=.true. -export UFS_CONFIGURE="ufs.configure.leapfrog_atm_wav_esmf.IN" -export atm_model='fv3' -export wav_model='ww3' -export WW3OUTPUTTYPE=' 1' -export coupling_interval_sec=1800.0 #coupling time step, want it to be multiple of 1800 and FV3 time step -#wave -export WW3_RSTDTHR=9 -export WW3_DT_2_RST="$(printf "%02d" $(( ${WW3_RSTDTHR}*3600 )))" -export NFGRIDS=1 -export NMGRIDS=3 -export CPLILINE="'glo_15mxt' F F T F F F F F F" -export WW3GRIDLINE="'gnh_10m' 'no' 'no' 'CPL:glo_15mxt' 'no' 'no' 'no' 'no' 'no' 'no' 1 10 0.00 1.00 F -'gsh_15m' 'no' 'no' 'CPL:glo_15mxt' 'no' 'no' 'no' 'no' 'no' 'no' 2 20 0.00 1.00 F -'aoc_9km' 'no' 'no' 'CPL:glo_15mxt' 'no' 'no' 'no' 'no' 'no' 'no' 3 30 0.00 1.00 F" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - -export MODEL_INITIALIZATION=true -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control_gdas.nml.IN diff --git a/tests/tests/control_c48 b/tests/tests/control_c48 index ab76dd503b..9ffa2ce490 100644 --- a/tests/tests/control_c48 +++ b/tests/tests/control_c48 @@ -46,6 +46,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export INPES=1 export JNPES=1 @@ -70,14 +71,11 @@ export IOVR=3 export IMO=192 export JMO=94 -export FNALBC="'global_snowfree_albedo.bosu.t62.192.94.rg.grb'," -export FNVETC="'global_vegtype.igbp.t62.192.94.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t62.192.94.rg.grb'," -export FNABSC="'global_mxsnoalb.uariz.t62.192.94.rg.grb'," -export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'," -export FNMSKH_control="'global_slmask.t62.192.94.grb'," - +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_c48.v2.sfc b/tests/tests/control_c48.v2.sfc index 9e435d8aaa..e2b16a3c25 100644 --- a/tests/tests/control_c48.v2.sfc +++ b/tests/tests/control_c48.v2.sfc @@ -45,7 +45,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 +export_fv3_v16 export INPES=1 export JNPES=1 diff --git a/tests/tests/control_c768 b/tests/tests/control_c768 index 59b32e456e..7794c7dfed 100644 --- a/tests/tests/control_c768 +++ b/tests/tests/control_c768 @@ -17,8 +17,10 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF03" -export_fv3 +export ATMRES=C768 +export_fv3 +export_tiled export INPES=${INPES_c768} export JNPES=${JNPES_c768} export atm_omp_num_threads=${THRD_c768} diff --git a/tests/tests/control_csawmg b/tests/tests/control_csawmg index a5428a2653..af42aac9f6 100644 --- a/tests/tests/control_csawmg +++ b/tests/tests/control_csawmg @@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export SYEAR=2021 diff --git a/tests/tests/control_csawmg_debug b/tests/tests/control_csawmg_debug index f2379211d2..26ece68145 100644 --- a/tests/tests/control_csawmg_debug +++ b/tests/tests/control_csawmg_debug @@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export SYEAR=2021 diff --git a/tests/tests/control_csawmgt b/tests/tests/control_csawmgt deleted file mode 100644 index 9ee2f25e90..0000000000 --- a/tests/tests/control_csawmgt +++ /dev/null @@ -1,40 +0,0 @@ -############################################################################### -# -# Global control csawmgt test -# -############################################################################### - -export TEST_DESCR="Compare global control csawmgt results with previous trunk version" - -export CNTL_DIR=control_csawmgt - -export LIST_FILES="sfcf000.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF24" - -export_fv3 -export NPZ=127 -export NPZP=128 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL=0 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. - -export DT_ATMOS=450 -export IAER=111 -export DIAG_TABLE='diag_table_aod' -export FIELD_TABLE='field_table_csawmgshoc' -export USE_MERRA2=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_csawmg -export INPUT_NML=control_csawmg.nml.IN diff --git a/tests/tests/control_csawmgt_debug b/tests/tests/control_csawmgt_debug deleted file mode 100644 index a1f867e000..0000000000 --- a/tests/tests/control_csawmgt_debug +++ /dev/null @@ -1,36 +0,0 @@ -############################################################################### -# -# Global control csawmgt debug test -# -############################################################################### - -export TEST_DESCR="Compare global control csawmgt debug results with previous trunk version" - -export CNTL_DIR=control_csawmgt_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export FHMAX=01 -export OUTPUT_FH="0 1" - -export DT_ATMOS=450 -export IAER=111 -export DIAG_TABLE='diag_table_aod' -export FIELD_TABLE='field_table_csawmgshoc' -export USE_MERRA2=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_csawmg -export INPUT_NML=control_csawmg.nml.IN diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index 777e566155..c5f823c4b2 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -14,6 +14,7 @@ export LIST_FILES="sfcf000.nc \ atmf001.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -25,9 +26,7 @@ export SHOUR=06 export OUTPUT_GRID='gaussian_grid' export FHMAX=1 export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -36,19 +35,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -56,7 +52,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -69,7 +65,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -83,25 +79,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -114,7 +91,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -123,10 +100,9 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index 3b5cbb9732..e9f22a92c0 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -50,6 +50,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -66,7 +67,6 @@ export OUTPUT_FH='0 21 24' export INPES=6 export JNPES=4 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -75,19 +75,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -95,7 +92,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -108,7 +105,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -122,22 +119,7 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." export FSICL=0 export FSICS=0 @@ -153,7 +135,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -162,10 +144,9 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. diff --git a/tests/tests/control_diag_debug b/tests/tests/control_diag_debug index 7d2004bece..13fe68ce35 100644 --- a/tests/tests/control_diag_debug +++ b/tests/tests/control_diag_debug @@ -14,6 +14,7 @@ export LIST_FILES="sfcf000.nc \ atmf001.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -29,8 +30,8 @@ export FHMAX=1 export OUTPUT_FH="0 1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN export FHZERO=1 export LDIAG3D=.true. diff --git a/tests/tests/control_flake b/tests/tests/control_flake index 20428c49a9..0cba0cedf1 100644 --- a/tests/tests/control_flake +++ b/tests/tests/control_flake @@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_flake_debug b/tests/tests/control_flake_debug index f9d0f551ca..f23f4207a0 100644 --- a/tests/tests/control_flake_debug +++ b/tests/tests/control_flake_debug @@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -23,7 +23,7 @@ export SDAY=22 export SHOUR=06 export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' -#export WRITE_DOPOST=.true. +export WRITE_DOPOST=.true. export IAER=5111 export FHMAX=1 export OUTPUT_FH="0 1" diff --git a/tests/tests/control_iovr4 b/tests/tests/control_iovr4 index 123579d3b7..4cd5b68e4a 100644 --- a/tests/tests/control_iovr4 +++ b/tests/tests/control_iovr4 @@ -21,7 +21,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF21 \ GFSPRS.GrbF24" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_iovr5 b/tests/tests/control_iovr5 index db10f3f451..7c288459a5 100644 --- a/tests/tests/control_iovr5 +++ b/tests/tests/control_iovr5 @@ -21,7 +21,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF21 \ GFSPRS.GrbF24" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_latlon b/tests/tests/control_latlon index d72143dc24..a46b819168 100644 --- a/tests/tests/control_latlon +++ b/tests/tests/control_latlon @@ -18,6 +18,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF24" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -36,5 +37,5 @@ export OUTPUT_FH='0 24' export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_lndp b/tests/tests/control_lndp index 51366f41ab..ab1ea0a8ca 100644 --- a/tests/tests/control_lndp +++ b/tests/tests/control_lndp @@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF12" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_lndp_debug b/tests/tests/control_lndp_debug index b47630da54..609050f57b 100644 --- a/tests/tests/control_lndp_debug +++ b/tests/tests/control_lndp_debug @@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_noqr_p8 b/tests/tests/control_noqr_p8 index 8ed8408308..dd3cd82113 100644 --- a/tests/tests/control_noqr_p8 +++ b/tests/tests/control_noqr_p8 @@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -68,7 +69,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -77,19 +77,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -97,7 +94,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -110,7 +107,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -124,25 +121,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -155,7 +133,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -164,8 +142,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 9fa9badfbd..26ab79b7fb 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -123,25 +120,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -154,7 +132,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -163,8 +141,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/control_p8.v2.sfc b/tests/tests/control_p8.v2.sfc index 3f0c360b53..d08987ae87 100644 --- a/tests/tests/control_p8.v2.sfc +++ b/tests/tests/control_p8.v2.sfc @@ -55,6 +55,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -68,7 +69,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -77,19 +77,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -97,7 +94,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -110,7 +107,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -124,25 +121,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -155,7 +133,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -164,8 +142,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN export V2_SFC_FILE=true # RRTMGP diff --git a/tests/tests/control_p8_atmlnd b/tests/tests/control_p8_atmlnd index 46d6745e30..aecdf87e6f 100644 --- a/tests/tests/control_p8_atmlnd +++ b/tests/tests/control_p8_atmlnd @@ -96,6 +96,7 @@ export LIST_FILES="sfcf000.tile1.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -109,7 +110,6 @@ export OUTPUT_GRID='cubed_sphere_grid' export WRITE_DOPOST=.false. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -118,19 +118,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -138,7 +135,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -151,7 +148,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -165,7 +162,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" export FNALBC2="'INPUT/C96.facsf.tileX.nc'" @@ -174,6 +170,8 @@ export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" export FNSOCC="'INPUT/C96.soil_color.tileX.nc'" +export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" +export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" @@ -196,7 +194,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -205,8 +203,7 @@ export FV3_RUN="control_run.IN noahmp_run.IN" export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs index 704f7936f4..33be5a8b0c 100644 --- a/tests/tests/control_p8_atmlnd_sbs +++ b/tests/tests/control_p8_atmlnd_sbs @@ -96,6 +96,7 @@ export LIST_FILES="sfcf000.tile1.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -109,7 +110,6 @@ export OUTPUT_GRID='cubed_sphere_grid' export WRITE_DOPOST=.false. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -118,19 +118,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -138,7 +135,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -151,7 +148,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -165,7 +162,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" export FNALBC2="'INPUT/C96.facsf.tileX.nc'" @@ -196,7 +192,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -205,8 +201,7 @@ export FV3_RUN="control_run.IN noahmp_run.IN" export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/control_p8_faster b/tests/tests/control_p8_faster index 21b3dda5db..fd02cbf4e0 100644 --- a/tests/tests/control_p8_faster +++ b/tests/tests/control_p8_faster @@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -123,25 +120,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -154,7 +132,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -163,8 +141,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/control_p8_lndp b/tests/tests/control_p8_lndp index 80c4be94be..4f5742b448 100644 --- a/tests/tests/control_p8_lndp +++ b/tests/tests/control_p8_lndp @@ -26,6 +26,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF48" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -40,7 +41,6 @@ export WRITE_DOPOST=.true. export FHMAX=48 export OUTPUT_FH='0 21 24 48' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -49,19 +49,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -69,7 +66,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -82,7 +79,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -96,25 +93,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -127,7 +105,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -136,8 +114,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN export LNDP_TYPE=2 export N_VAR_LNDP=1 export LNDP_VAR_LIST="'vgf'," diff --git a/tests/tests/control_p8_mynn b/tests/tests/control_p8_mynn index b61adef27d..593b283f63 100644 --- a/tests/tests/control_p8_mynn +++ b/tests/tests/control_p8_mynn @@ -53,7 +53,8 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 +export_fv3_v16 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -123,25 +120,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -154,7 +132,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -163,8 +141,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8_mynn export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -175,3 +152,24 @@ export DOGP_SGS_CNV=.true. export IMFSHALCNV=-1 export SHAL_CNV=.false. export DO_MYNNEDMF=.true. + +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IOVR=3 +export ICLIQ_SW=2 diff --git a/tests/tests/control_p8_rrtmgp b/tests/tests/control_p8_rrtmgp index b5a93a9580..01daa2ee7a 100644 --- a/tests/tests/control_p8_rrtmgp +++ b/tests/tests/control_p8_rrtmgp @@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -123,25 +120,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -154,7 +132,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -163,8 +141,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8_rrtmgp export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.true. diff --git a/tests/tests/control_p8_ugwpv1 b/tests/tests/control_p8_ugwpv1 index a8f550c2ec..a62a9c1049 100644 --- a/tests/tests/control_p8_ugwpv1 +++ b/tests/tests/control_p8_ugwpv1 @@ -55,6 +55,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -68,7 +69,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -77,19 +77,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -97,7 +94,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P8 UGWP1 +# UGWP1 export GWD_OPT=2 export CDMBWD=20.0,2.5,1.0,1.0 export DO_UGWP_V1=.true. @@ -113,7 +110,7 @@ export LDIAG_UGWP=.false. export KNOB_UGWP_DOKDIS=2 export KNOB_UGWP_NDX4LH=4 -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -127,25 +124,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -158,7 +136,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Follwoing not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -167,8 +145,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/control_ras b/tests/tests/control_ras index f762518af9..2d730bb52e 100644 --- a/tests/tests/control_ras +++ b/tests/tests/control_ras @@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_ras_debug b/tests/tests/control_ras_debug index d34b86b816..14b248269f 100644 --- a/tests/tests/control_ras_debug +++ b/tests/tests/control_ras_debug @@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_restart_noqr_p8 b/tests/tests/control_restart_noqr_p8 index 424f4d43ae..f3baca99f7 100644 --- a/tests/tests/control_restart_noqr_p8 +++ b/tests/tests/control_restart_noqr_p8 @@ -46,6 +46,7 @@ export LIST_FILES="sfcf024.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -67,7 +68,6 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,0,0,0,0 @@ -96,7 +93,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -123,25 +120,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -154,7 +132,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -163,10 +141,9 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index c10d7e7a93..50be1ec0dd 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -46,6 +46,7 @@ export LIST_FILES="sfcf024.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -66,7 +67,6 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -75,19 +75,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,0,0,0,0 @@ -95,7 +92,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -108,7 +105,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -122,25 +119,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -153,7 +131,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -162,10 +140,9 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. diff --git a/tests/tests/control_restart_p8_atmlnd b/tests/tests/control_restart_p8_atmlnd index e4e0f3ab2f..2eaa04f779 100644 --- a/tests/tests/control_restart_p8_atmlnd +++ b/tests/tests/control_restart_p8_atmlnd @@ -28,6 +28,7 @@ export LIST_FILES="sfcf024.tile1.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -49,7 +50,6 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -58,19 +58,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,0,0,0,0 @@ -78,7 +75,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -91,7 +88,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -105,7 +102,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" export FNALBC2="'INPUT/C96.facsf.tileX.nc'" @@ -136,7 +132,7 @@ export FRAC_GRID=.true. export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -145,8 +141,7 @@ export FV3_RUN="control_run.IN noahmp_run.IN" export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/control_stochy b/tests/tests/control_stochy index 1eefdaecff..2c1cbf1ddd 100644 --- a/tests/tests/control_stochy +++ b/tests/tests/control_stochy @@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF12" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=600 diff --git a/tests/tests/control_stochy_debug b/tests/tests/control_stochy_debug index 0aafc10685..82f9866232 100644 --- a/tests/tests/control_stochy_debug +++ b/tests/tests/control_stochy_debug @@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=600 diff --git a/tests/tests/control_stochy_restart b/tests/tests/control_stochy_restart index 7f8d532776..77be313478 100644 --- a/tests/tests/control_stochy_restart +++ b/tests/tests/control_stochy_restart @@ -13,7 +13,7 @@ export LIST_FILES="sfcf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12 " -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=600 diff --git a/tests/tests/control_wam b/tests/tests/control_wam index ce4499d7de..1b3b7d1543 100644 --- a/tests/tests/control_wam +++ b/tests/tests/control_wam @@ -11,7 +11,7 @@ export CNTL_DIR=control_wam export LIST_FILES="sfcf024.nc \ atmf024.nc" -export_fv3 +export_fv3_v16 export NPZ=149 export NPZP=150 export DT_ATMOS="225" diff --git a/tests/tests/control_wam_debug b/tests/tests/control_wam_debug index 6d000e0752..8743e90f83 100644 --- a/tests/tests/control_wam_debug +++ b/tests/tests/control_wam_debug @@ -11,7 +11,7 @@ export CNTL_DIR=control_wam_debug export LIST_FILES="sfcf019.nc \ atmf019.nc" -export_fv3 +export_fv3_v16 export NPZ=149 export NPZP=150 export DT_ATMOS="225" @@ -22,7 +22,6 @@ export SHOUR="06" export FHMAX=19 export OUTPUT_FH="0 19" -#export WRITE_DOPOST=.true. export WARM_START=.true. export NA_INIT=0 diff --git a/tests/tests/control_wrtGauss_netcdf_parallel b/tests/tests/control_wrtGauss_netcdf_parallel index de957a2eb8..d90184da4d 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel +++ b/tests/tests/control_wrtGauss_netcdf_parallel @@ -18,6 +18,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF24" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -35,5 +36,5 @@ export IDEFLATE=1 export QUANTIZE_NSD=14 export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_wrtGauss_netcdf_parallel_debug b/tests/tests/control_wrtGauss_netcdf_parallel_debug index b4a1902574..2988ec0782 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel_debug +++ b/tests/tests/control_wrtGauss_netcdf_parallel_debug @@ -14,6 +14,7 @@ export LIST_FILES="sfcf000.nc \ atmf001.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -32,5 +33,5 @@ export QUANTIZE_NSD=14 export OUTPUT_FH="0 1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 912c850466..890ff98596 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -90,7 +90,7 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# P8 UGWP1 +# UGWP1 export GWD_OPT=2 export CDMBWD=20.0,2.5,1.0,1.0 export DO_UGWP_V1=.true. @@ -118,7 +118,7 @@ export FV3_RUN=cpld_control_run.IN export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index 83e193208a..6ebbf0047a 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -97,7 +97,7 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# P8 UGWP1 +# UGWP1 export GWD_OPT=2 export CDMBWD=20.0,2.5,1.0,1.0 export DO_UGWP_V1=.true. @@ -121,7 +121,7 @@ export FV3_RUN=cpld_control_run.IN export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 1f5cbb086e..60e9de59ca 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -84,4 +84,4 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 -fi \ No newline at end of file +fi diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index e4ab5ccf82..6476e7540b 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -112,7 +112,7 @@ export FV3_RUN=cpld_control_run.IN export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN export UFS_CONFIGURE=ufs.configure.s2sw.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index e3590bbf59..19076b671e 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -99,7 +99,7 @@ export CICE_BLCKY=`expr $NY_GLB / 2` export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# P8 UGWP1 +# UGWP1 export GWD_OPT=2 export CDMBWD=20.0,2.5,1.0,1.0 export DO_UGWP_V1=.true. @@ -127,7 +127,7 @@ export FV3_RUN=cpld_control_run.IN export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index 35192c28d6..62a97d4fb3 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -98,7 +98,7 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# P8 UGWP1 +# UGWP1 export GWD_OPT=2 export CDMBWD=20.0,2.5,1.0,1.0 export DO_UGWP_V1=.true. @@ -127,7 +127,7 @@ export FV3_RUN=cpld_control_run.IN export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings diff --git a/tests/tests/gnv1_c96_no_nest_debug b/tests/tests/gnv1_c96_no_nest_debug index 935079652e..3de6194b95 100644 --- a/tests/tests/gnv1_c96_no_nest_debug +++ b/tests/tests/gnv1_c96_no_nest_debug @@ -47,7 +47,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.070000.sfc_data.tile5.nc \ RESTART/20210322.070000.sfc_data.tile6.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=300 diff --git a/tests/tests/merra2_thompson b/tests/tests/merra2_thompson index 7e217c27ff..ef206dab97 100644 --- a/tests/tests/merra2_thompson +++ b/tests/tests/merra2_thompson @@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=600 @@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export LTAEROSOL=.false. export MRAEROSOL=.true. @@ -98,7 +95,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -111,7 +108,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -125,25 +122,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -154,7 +132,7 @@ export DZ_MIN=6 export MIN_SEAICE=0.15 export FRAC_GRID=.true. export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -163,8 +141,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_mr2 export DIAG_TABLE=diag_table_mr2 -# use same namelist for standalone,coupled P7 -export INPUT_NML=merra2_thompson.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/regional_2dwrtdecomp b/tests/tests/regional_2dwrtdecomp index 7900e76b7b..f76c1b97b0 100644 --- a/tests/tests/regional_2dwrtdecomp +++ b/tests/tests/regional_2dwrtdecomp @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_2threads b/tests/tests/regional_2threads index e705ab6747..9d3e3d5ce3 100644 --- a/tests/tests/regional_2threads +++ b/tests/tests/regional_2threads @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index 54fb6f1514..df4603f299 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -22,7 +22,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20190801.180000.phy_data.nc \ RESTART/20190801.180000.sfc_data.nc" -export_fv3 +export_fv3_v16 export SYEAR=2019 export SMONTH=08 diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 17fcea688a..7cfe2f8489 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -20,7 +20,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20190801.130000.phy_data.nc \ RESTART/20190801.130000.sfc_data.nc" -export_fv3 +export_fv3_v16 export SYEAR=2019 export SMONTH=08 diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster index 75f85debf7..6ccb25375a 100644 --- a/tests/tests/regional_atmaq_faster +++ b/tests/tests/regional_atmaq_faster @@ -22,7 +22,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20190801.180000.phy_data.nc \ RESTART/20190801.180000.sfc_data.nc" -export_fv3 +export_fv3_v16 export SYEAR=2019 export SMONTH=08 diff --git a/tests/tests/regional_control b/tests/tests/regional_control index 98d50028e7..01cca0e714 100644 --- a/tests/tests/regional_control +++ b/tests/tests/regional_control @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_control_faster b/tests/tests/regional_control_faster index 350c2aecf8..17d31fdc0e 100644 --- a/tests/tests/regional_control_faster +++ b/tests/tests/regional_control_faster @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index 64e5921f76..46ff346b68 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -13,7 +13,7 @@ export LIST_FILES="dynf000.nc \ phyf000.nc \ phyf001.nc" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_decomp b/tests/tests/regional_decomp index 55566313b2..a3931e4f18 100644 --- a/tests/tests/regional_decomp +++ b/tests/tests/regional_decomp @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_ifi_2threads b/tests/tests/regional_ifi_2threads index 743707a55c..8e1db314cd 100644 --- a/tests/tests/regional_ifi_2threads +++ b/tests/tests/regional_ifi_2threads @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_ifi_control b/tests/tests/regional_ifi_control index 85ab5ae6a9..089d372a78 100644 --- a/tests/tests/regional_ifi_control +++ b/tests/tests/regional_ifi_control @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_ifi_decomp b/tests/tests/regional_ifi_decomp index 4513f4618c..815587548a 100644 --- a/tests/tests/regional_ifi_decomp +++ b/tests/tests/regional_ifi_decomp @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_netcdf_parallel b/tests/tests/regional_netcdf_parallel index 0f20b07d94..13065d2da8 100644 --- a/tests/tests/regional_netcdf_parallel +++ b/tests/tests/regional_netcdf_parallel @@ -13,7 +13,7 @@ export LIST_FILES="dynf000.nc \ phyf000.nc \ phyf006.nc" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_noquilt b/tests/tests/regional_noquilt index a87447702b..2498db9d91 100644 --- a/tests/tests/regional_noquilt +++ b/tests/tests/regional_noquilt @@ -14,7 +14,7 @@ export LIST_FILES=" atmos_4xdaily.nc \ RESTART/fv_core.res.tile1_new.nc \ RESTART/fv_tracer.res.tile1_new.nc" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_restart b/tests/tests/regional_restart index 6ce9242440..c09332019e 100644 --- a/tests/tests/regional_restart +++ b/tests/tests/regional_restart @@ -13,7 +13,7 @@ export LIST_FILES="dynf006.nc \ PRSLEV.GrbF06 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_rrfs_a b/tests/tests/regional_rrfs_a index f1b6d09d93..4aace3f9e2 100644 --- a/tests/tests/regional_rrfs_a +++ b/tests/tests/regional_rrfs_a @@ -13,7 +13,7 @@ export LIST_FILES="dynf000.nc \ phyf000.nc \ phyf001.nc" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_rrfs_a_run.IN diff --git a/tests/tests/regional_spp_sppt_shum_skeb b/tests/tests/regional_spp_sppt_shum_skeb index 830886bc27..7b79586105 100644 --- a/tests/tests/regional_spp_sppt_shum_skeb +++ b/tests/tests/regional_spp_sppt_shum_skeb @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF01" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run_stoch.IN diff --git a/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 b/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 index 9431e9b26a..eeb01afe60 100644 --- a/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 +++ b/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF01" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run_stoch.IN diff --git a/tests/tests/regional_wofs b/tests/tests/regional_wofs index d1ee23a786..3b5a62bf8e 100644 --- a/tests/tests/regional_wofs +++ b/tests/tests/regional_wofs @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN From 04bbc15f9abfb25a8864cdeaebdbd439c4332c95 Mon Sep 17 00:00:00 2001 From: jiandewang Date: Thu, 25 Apr 2024 14:52:00 -0400 Subject: [PATCH 04/16] update MOM6 to its main repo. 20240401 commit (#2241) * UFSWM - * MOM6 - update MOM6 to its main repo. 20240401 commit (NCAR-candidate-20240319) --- MOM6-interface/MOM6 | 2 +- build.sh | 2 +- tests/ci/Jenkinsfile.combined | 93 +- tests/fv3_conf/fv3_slurm.IN_hera | 10 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 156 ++-- .../OpnReqTests_regional_control_hera.log | 61 +- tests/logs/RT-run-Derecho.log | 415 +++++++++ tests/logs/RT-run-Hercules.log | 16 + tests/logs/RegressionTests_acorn.log | 563 ++++++------ tests/logs/RegressionTests_derecho.log | 629 ++++++-------- tests/logs/RegressionTests_gaea.log | 584 ++++++------- tests/logs/RegressionTests_hera.log | 761 ++++++++--------- tests/logs/RegressionTests_hercules.log | 805 ++++++++---------- tests/logs/RegressionTests_jet.log | 499 +++++------ tests/logs/RegressionTests_wcoss2.log | 510 ++++++----- tests/rt.sh | 16 +- 17 files changed, 2756 insertions(+), 2414 deletions(-) create mode 100644 tests/logs/RT-run-Derecho.log create mode 100644 tests/logs/RT-run-Hercules.log diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index ab7bd14d20..0730606b80 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit ab7bd14d209592d55490e75dbfaa61cb4a62df97 +Subproject commit 0730606b808f2979241d850e763955f5526a980c diff --git a/build.sh b/build.sh index a92ee521f2..c1cfe43d8d 100755 --- a/build.sh +++ b/build.sh @@ -26,4 +26,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:-1}" \ No newline at end of file +OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-}" \ No newline at end of file diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined index 47fb97ec73..5b3d072320 100644 --- a/tests/ci/Jenkinsfile.combined +++ b/tests/ci/Jenkinsfile.combined @@ -11,7 +11,6 @@ for (label in pullRequest.labels) { if ((label.matches(node.getLabelString()+"(.*)-BL"))) { generateBaselineNode += node.getLabelString() } - } } @@ -60,6 +59,14 @@ def generateStage(nodeLabel) { chgrp noaa-hpc develop-${BL_DATE} cd $WORKSPACE/tests ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_hercules.log /work/noaa/epic/role-epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_hercules.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ elif [[ $machine =~ "Orion" ]] then echo "Creating baselines on $machine" @@ -77,24 +84,40 @@ def generateStage(nodeLabel) { chgrp noaa-hpc develop-${BL_DATE} cd $WORKSPACE/tests ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_orion.log /work/noaa/epic/role-epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_orion.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ elif [[ $machine =~ "Gaea" ]] then echo "Creating baselines on $machine" ./rt.sh -a ${ACCNR} -c -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log unset LD_LIBRARY_PATH - export DISKNM=/lustre/f2/pdata/ncep/role.epic/C5/RT + export DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT cd ${DISKNM}/NEMSfv3gfs/ mkdir develop-${BL_DATE} - cd /lustre/f2/scratch/role.epic/FV3_RT + cd /gpfs/f5/epic/scratch/role.epic/FV3_RT rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE} cd ${DISKNM}/NEMSfv3gfs/ chgrp ncep develop-${BL_DATE} cd $WORKSPACE/tests ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_gaea.log /gpfs/f5/epic/scratch/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_gaea.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ elif [[ $machine =~ "Hera" ]] then echo "Creating baselines on $machine" - export ACCNR=nems + export ACCNR=epic ./rt.sh -a ${ACCNR} -c -r -l rt.conf export DISKNM=/scratch2/NAGAPE/epic/UFS-WM_RT cd ${DISKNM}/NEMSfv3gfs/ @@ -103,6 +126,14 @@ def generateStage(nodeLabel) { rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE} cd $WORKSPACE/tests ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_hera.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ elif [[ $machine =~ "Derecho" ]] then echo "Creating baselines on $machine" @@ -115,6 +146,14 @@ def generateStage(nodeLabel) { rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE} cd $WORKSPACE/tests ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_derecho.log /glade/derecho/scratch/epicufsrt/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_derecho.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ else echo "Creating baselines on $machine" ./rt.sh -a ${ACCNR} -c -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log @@ -159,32 +198,72 @@ def generateStage(nodeLabel) { ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log elif [[ $machine =~ "Hercules" ]] then - echo "Running regression tests on $machine" + echo "Running regression tests on $machine" export dprefix=/work2/noaa/$ACCNR/$USER sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh export ACCNR=epic ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_hercules.log /work/noaa/epic/role-epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_hercules.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ elif [[ $machine =~ "Orion" ]] then echo "Running regression tests on $machine" export dprefix=/work2/noaa/$ACCNR/$USER sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_orion.log /work/noaa/epic/role-epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_orion.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ elif [[ $machine =~ "Gaea" ]] then echo "Running regression tests on $machine" ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log unset LD_LIBRARY_PATH + cd logs/ + cp RegressionTests_gaea.log /gpfs/f5/epic/scratch/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_gaea.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ elif [[ $machine =~ "Hera" ]] then echo "Running regression tests on $machine" - export ACCNR=nems - ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + export ACCNR=epic + ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_hera.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ elif [[ $machine =~ "Derecho" ]] then echo "Running regression tests on $machine" export ACCNR=nral0032 ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_derecho.log /glade/derecho/scratch/epicufsrt/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_derecho.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ else echo "Running regression tests on $machine" ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index 94c3827525..288b0ec78b 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -15,9 +15,9 @@ date_s_start=$(date +%s) echo -n "${date_s_start}," > job_timestamp.txt set +x -#MACHINE_ID=hera +export MACHINE_ID=hera source ./module-setup.sh -module use "@[PWD]/modulefiles" +module use "${PWD}/modulefiles" module load modules.fv3 module list set -x @@ -27,7 +27,8 @@ echo "Model started: ${date_start}" export MPI_TYPE_DEPTH=20 export OMP_STACKSIZE=512M -export OMP_NUM_THREADS="@[THRD]" +# shellcheck disable=SC2125 +export OMP_NUM_THREADS=@[THRD] export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" @@ -37,7 +38,8 @@ export PSM_SHAREDCONTEXTS=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 -srun --label -n "@[TASKS]" ./fv3.exe +# shellcheck disable=SC2102 +srun --label -n @[TASKS] ./fv3.exe date_end=$(date) echo "Model ended: ${date_end}" diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 29b8a01b8a..1c5bcbbd00 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Apr 19 19:57:57 UTC 2024 +Wed Apr 24 12:38:17 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/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 = 272.557598 - 0: The maximum resident set size (KB) = 1254932 + 0: The total amount of wall time = 276.967845 + 0: The maximum resident set size (KB) = 1253216 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 959.903328 - 0: The maximum resident set size (KB) = 1232448 + 0: The total amount of wall time = 960.176678 + 0: The maximum resident set size (KB) = 1233464 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/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 = 241.225092 - 0: The maximum resident set size (KB) = 1230688 + 0: The total amount of wall time = 238.109868 + 0: The maximum resident set size (KB) = 1235600 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/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 = 236.258585 - 0: The maximum resident set size (KB) = 1236816 + 0: The total amount of wall time = 239.999110 + 0: The maximum resident set size (KB) = 1231020 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/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 = 235.269569 - 0: The maximum resident set size (KB) = 1231588 + 0: The total amount of wall time = 241.494846 + 0: The maximum resident set size (KB) = 1230996 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/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 = 240.429501 - 0: The maximum resident set size (KB) = 1232412 + 0: The total amount of wall time = 240.187367 + 0: The maximum resident set size (KB) = 1237016 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/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 = 237.774632 - 0: The maximum resident set size (KB) = 1232820 + 0: The total amount of wall time = 239.880609 + 0: The maximum resident set size (KB) = 1228084 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Apr 19 20:59:04 UTC 2024 -Elapsed time: 01h:01m:08s. Have a nice day! +Wed Apr 24 13:54:57 UTC 2024 +Elapsed time: 01h:16m:40s. 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 1cbca13a85..29f8955f5e 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Apr 22 14:31:53 UTC 2024 +Wed Apr 24 14:04:01 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2291890/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,83 @@ 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 = 1572.129737 - 0: The maximum resident set size (KB) = 1368184 + 0: The total amount of wall time = 1311.811572 + 0: The maximum resident set size (KB) = 1340536 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2291890/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/rst_rst +Checking test rst results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK + 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 = 389.794167 + 0: The maximum resident set size (KB) = 1341484 + +Test rst PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -136,80 +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 = 386.377672 - 0: The maximum resident set size (KB) = 1358644 + 0: The total amount of wall time = 394.333320 + 0: The maximum resident set size (KB) = 1339512 Test std_base PASS - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3301844/rst_rst -Checking test rst results .... - Comparing sfcf021.tile1.nc .....USING NCCMP......OK - Comparing sfcf021.tile2.nc .....USING NCCMP......OK - Comparing sfcf021.tile3.nc .....USING NCCMP......OK - Comparing sfcf021.tile4.nc .....USING NCCMP......OK - Comparing sfcf021.tile5.nc .....USING NCCMP......OK - Comparing sfcf021.tile6.nc .....USING NCCMP......OK - Comparing atmf021.tile1.nc .....USING NCCMP......OK - Comparing atmf021.tile2.nc .....USING NCCMP......OK - Comparing atmf021.tile3.nc .....USING NCCMP......OK - Comparing atmf021.tile4.nc .....USING NCCMP......OK - Comparing atmf021.tile5.nc .....USING NCCMP......OK - Comparing atmf021.tile6.nc .....USING NCCMP......OK - Comparing sfcf024.tile1.nc .....USING NCCMP......OK - Comparing sfcf024.tile2.nc .....USING NCCMP......OK - Comparing sfcf024.tile3.nc .....USING NCCMP......OK - Comparing sfcf024.tile4.nc .....USING NCCMP......OK - Comparing sfcf024.tile5.nc .....USING NCCMP......OK - Comparing sfcf024.tile6.nc .....USING NCCMP......OK - Comparing atmf024.tile1.nc .....USING NCCMP......OK - Comparing atmf024.tile2.nc .....USING NCCMP......OK - Comparing atmf024.tile3.nc .....USING NCCMP......OK - Comparing atmf024.tile4.nc .....USING NCCMP......OK - Comparing atmf024.tile5.nc .....USING NCCMP......OK - Comparing atmf024.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK - 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 = 389.040798 - 0: The maximum resident set size (KB) = 1360268 - -Test rst PASS - OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Apr 22 19:14:09 UTC 2024 -Elapsed time: 00h:31m:32s. Have a nice day! +Wed Apr 24 15:05:09 UTC 2024 +Elapsed time: 01h:01m:09s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index c7200df608..c62b1ed7b4 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,28 @@ -Mon Apr 22 12:33:48 UTC 2024 +Wed Apr 24 19:38:47 UTC 2024 Start Operation Requirement Test +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 1236.978294 + 0: The maximum resident set size (KB) = 577672 + +Test bit_base PASS + + baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -14,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 = 2123.028031 - 0: The maximum resident set size (KB) = 556456 + 0: The total amount of wall time = 2229.582684 + 0: The maximum resident set size (KB) = 541864 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -33,14 +52,32 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2146.624346 - 0: The maximum resident set size (KB) = 561996 + 0: The total amount of wall time = 2186.237690 + 0: The maximum resident set size (KB) = 539180 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/std_std +Checking test std results .... + Comparing dynf000.nc .....USING NCCMP......OK + Comparing dynf006.nc .....USING NCCMP......OK + Comparing phyf000.nc .....USING NCCMP......OK + Comparing phyf006.nc .....USING NCCMP......OK + Comparing PRSLEV.GrbF00 .....USING CMP......OK + Comparing PRSLEV.GrbF06 .....USING CMP......OK + Comparing NATLEV.GrbF00 .....USING CMP......OK + Comparing NATLEV.GrbF06 .....USING CMP......OK + + 0: The total amount of wall time = 2172.179940 + 0: The maximum resident set size (KB) = 541092 + +Test std PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -51,11 +88,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2265.288036 - 0: The maximum resident set size (KB) = 556412 + 0: The total amount of wall time = 2094.600637 + 0: The maximum resident set size (KB) = 541332 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Apr 22 14:30:55 UTC 2024 -Elapsed time: 01h:57m:08s. Have a nice day! +Wed Apr 24 23:19:25 UTC 2024 +Elapsed time: 03h:40m:38s. Have a nice day! diff --git a/tests/logs/RT-run-Derecho.log b/tests/logs/RT-run-Derecho.log new file mode 100644 index 0000000000..9dae8589b0 --- /dev/null +++ b/tests/logs/RT-run-Derecho.log @@ -0,0 +1,415 @@ +******Regression Testing Script Started****** +derecho6 +Machine: derecho +Account: nral0032 +rt.sh: Setting up derecho... +Linking /glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018 to /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2241/tests/run_dir +Run regression test in: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018 +rt.sh: Checking & Updating test configuration... +No update needed to rt.conf +Verifying ECFLOW support... +rt_utils.sh: s2swa_32bit_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_control_p8_mixedmode_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_p8_mixedmode_intel: Creating ECFLOW run task +rt_utils.sh: s2swa_32bit_pdlib_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_control_gfsv17_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_gfsv17_intel: Creating ECFLOW run task +rt_utils.sh: cpld_control_gfsv17_iau_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_gfsv17_iau_intel: Creating ECFLOW run task +rt_utils.sh: cpld_restart_gfsv17_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_restart_gfsv17_intel: Creating ECFLOW run task +rt_utils.sh: cpld_mpi_gfsv17_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_mpi_gfsv17_intel: Creating ECFLOW run task +rt_utils.sh: s2swa_32bit_pdlib_debug_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_debug_gfsv17_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_debug_gfsv17_intel: Creating ECFLOW run task +rt_utils.sh: s2swa_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_control_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_control_p8.v2.sfc_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_p8.v2.sfc_intel: Creating ECFLOW run task +rt_utils.sh: cpld_restart_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_restart_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_control_qr_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_qr_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_restart_qr_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_restart_qr_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_decomp_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_decomp_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_mpi_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_mpi_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_control_ciceC_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_ciceC_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_control_c192_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_c192_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_restart_c192_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_restart_c192_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_bmark_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_bmark_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_restart_bmark_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_restart_bmark_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_s2sa_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_s2sa_p8_intel: Creating ECFLOW run task +rt_utils.sh: s2sw_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_control_noaero_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_noaero_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_control_nowave_noaero_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_nowave_noaero_p8_intel: Creating ECFLOW run task +rt_utils.sh: s2swa_debug_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_debug_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_debug_p8_intel: Creating ECFLOW run task +rt_utils.sh: s2sw_debug_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_debug_noaero_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_debug_noaero_p8_intel: Creating ECFLOW run task +rt_utils.sh: s2s_aoflux_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_control_noaero_p8_agrid_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_noaero_p8_agrid_intel: Creating ECFLOW run task +rt_utils.sh: s2s_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_control_c48_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_c48_intel: Creating ECFLOW run task +rt_utils.sh: s2swa_faster_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_control_p8_faster_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_p8_faster_intel: Creating ECFLOW run task +rt_utils.sh: s2sw_pdlib_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_control_pdlib_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_control_pdlib_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_restart_pdlib_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_restart_pdlib_p8_intel: Creating ECFLOW run task +rt_utils.sh: cpld_mpi_pdlib_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_mpi_pdlib_p8_intel: Creating ECFLOW run task +rt_utils.sh: s2sw_pdlib_debug_intel: Creating ECFLOW compile task +rt_utils.sh: cpld_debug_pdlib_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: cpld_debug_pdlib_p8_intel: Creating ECFLOW run task +rt_utils.sh: atm_dyn32_intel: Creating ECFLOW compile task +rt_utils.sh: control_flake_intel: Computing PET bounds and tasks. +rt_utils.sh: control_flake_intel: Creating ECFLOW run task +rt_utils.sh: control_CubedSphereGrid_intel: Computing PET bounds and tasks. +rt_utils.sh: control_CubedSphereGrid_intel: Creating ECFLOW run task +rt_utils.sh: control_CubedSphereGrid_parallel_intel: Computing PET bounds and tasks. +rt_utils.sh: control_CubedSphereGrid_parallel_intel: Creating ECFLOW run task +rt_utils.sh: control_latlon_intel: Computing PET bounds and tasks. +rt_utils.sh: control_latlon_intel: Creating ECFLOW run task +rt_utils.sh: control_wrtGauss_netcdf_parallel_intel: Computing PET bounds and tasks. +rt_utils.sh: control_wrtGauss_netcdf_parallel_intel: Creating ECFLOW run task +rt_utils.sh: control_c48_intel: Computing PET bounds and tasks. +rt_utils.sh: control_c48_intel: Creating ECFLOW run task +rt_utils.sh: control_c48.v2.sfc_intel: Computing PET bounds and tasks. +rt_utils.sh: control_c48.v2.sfc_intel: Creating ECFLOW run task +rt_utils.sh: control_c192_intel: Computing PET bounds and tasks. +rt_utils.sh: control_c192_intel: Creating ECFLOW run task +rt_utils.sh: control_c384_intel: Computing PET bounds and tasks. +rt_utils.sh: control_c384_intel: Creating ECFLOW run task +rt_utils.sh: control_c384gdas_intel: Computing PET bounds and tasks. +rt_utils.sh: control_c384gdas_intel: Creating ECFLOW run task +rt_utils.sh: control_stochy_intel: Computing PET bounds and tasks. +rt_utils.sh: control_stochy_intel: Creating ECFLOW run task +rt_utils.sh: control_stochy_restart_intel: Computing PET bounds and tasks. +rt_utils.sh: control_stochy_restart_intel: Creating ECFLOW run task +rt_utils.sh: control_lndp_intel: Computing PET bounds and tasks. +rt_utils.sh: control_lndp_intel: Creating ECFLOW run task +rt_utils.sh: control_iovr4_intel: Computing PET bounds and tasks. +rt_utils.sh: control_iovr4_intel: Creating ECFLOW run task +rt_utils.sh: control_iovr5_intel: Computing PET bounds and tasks. +rt_utils.sh: control_iovr5_intel: Creating ECFLOW run task +rt_utils.sh: control_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: control_p8_intel: Creating ECFLOW run task +rt_utils.sh: control_p8.v2.sfc_intel: Computing PET bounds and tasks. +rt_utils.sh: control_p8.v2.sfc_intel: Creating ECFLOW run task +rt_utils.sh: control_p8_ugwpv1_intel: Computing PET bounds and tasks. +rt_utils.sh: control_p8_ugwpv1_intel: Creating ECFLOW run task +rt_utils.sh: control_restart_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: control_restart_p8_intel: Creating ECFLOW run task +rt_utils.sh: control_noqr_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: control_noqr_p8_intel: Creating ECFLOW run task +rt_utils.sh: control_restart_noqr_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: control_restart_noqr_p8_intel: Creating ECFLOW run task +rt_utils.sh: control_decomp_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: control_decomp_p8_intel: Creating ECFLOW run task +rt_utils.sh: control_p8_lndp_intel: Computing PET bounds and tasks. +rt_utils.sh: control_p8_lndp_intel: Creating ECFLOW run task +rt_utils.sh: control_p8_rrtmgp_intel: Computing PET bounds and tasks. +rt_utils.sh: control_p8_rrtmgp_intel: Creating ECFLOW run task +rt_utils.sh: control_p8_mynn_intel: Computing PET bounds and tasks. +rt_utils.sh: control_p8_mynn_intel: Creating ECFLOW run task +rt_utils.sh: merra2_thompson_intel: Computing PET bounds and tasks. +rt_utils.sh: merra2_thompson_intel: Creating ECFLOW run task +rt_utils.sh: regional_control_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_control_intel: Creating ECFLOW run task +rt_utils.sh: regional_restart_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_restart_intel: Creating ECFLOW run task +rt_utils.sh: regional_decomp_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_decomp_intel: Creating ECFLOW run task +rt_utils.sh: regional_noquilt_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_noquilt_intel: Creating ECFLOW run task +rt_utils.sh: regional_netcdf_parallel_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_netcdf_parallel_intel: Creating ECFLOW run task +rt_utils.sh: regional_2dwrtdecomp_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_2dwrtdecomp_intel: Creating ECFLOW run task +rt_utils.sh: regional_wofs_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_wofs_intel: Creating ECFLOW run task +rt_utils.sh: rrfs_intel: Creating ECFLOW compile task +rt_utils.sh: rap_control_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_control_intel: Creating ECFLOW run task +rt_utils.sh: regional_spp_sppt_shum_skeb_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_spp_sppt_shum_skeb_intel: Creating ECFLOW run task +rt_utils.sh: rap_decomp_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_decomp_intel: Creating ECFLOW run task +rt_utils.sh: rap_restart_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_restart_intel: Creating ECFLOW run task +rt_utils.sh: rap_sfcdiff_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_sfcdiff_intel: Creating ECFLOW run task +rt_utils.sh: rap_sfcdiff_decomp_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_sfcdiff_decomp_intel: Creating ECFLOW run task +rt_utils.sh: rap_sfcdiff_restart_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_sfcdiff_restart_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_control_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_control_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_control_decomp_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_control_decomp_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_control_2threads_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_control_2threads_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_control_restart_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_control_restart_intel: Creating ECFLOW run task +rt_utils.sh: rrfs_v1beta_intel: Computing PET bounds and tasks. +rt_utils.sh: rrfs_v1beta_intel: Creating ECFLOW run task +rt_utils.sh: rrfs_v1nssl_intel: Computing PET bounds and tasks. +rt_utils.sh: rrfs_v1nssl_intel: Creating ECFLOW run task +rt_utils.sh: rrfs_v1nssl_nohailnoccn_intel: Computing PET bounds and tasks. +rt_utils.sh: rrfs_v1nssl_nohailnoccn_intel: Creating ECFLOW run task +rt_utils.sh: csawmg_intel: Creating ECFLOW compile task +rt_utils.sh: control_csawmg_intel: Computing PET bounds and tasks. +rt_utils.sh: control_csawmg_intel: Creating ECFLOW run task +rt_utils.sh: control_ras_intel: Computing PET bounds and tasks. +rt_utils.sh: control_ras_intel: Creating ECFLOW run task +rt_utils.sh: wam_intel: Creating ECFLOW compile task +rt_utils.sh: control_wam_intel: Computing PET bounds and tasks. +rt_utils.sh: control_wam_intel: Creating ECFLOW run task +rt_utils.sh: atm_faster_dyn32_intel: Creating ECFLOW compile task +rt_utils.sh: control_p8_faster_intel: Computing PET bounds and tasks. +rt_utils.sh: control_p8_faster_intel: Creating ECFLOW run task +rt_utils.sh: regional_control_faster_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_control_faster_intel: Creating ECFLOW run task +rt_utils.sh: atm_debug_dyn32_intel: Creating ECFLOW compile task +rt_utils.sh: control_CubedSphereGrid_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: control_CubedSphereGrid_debug_intel: Creating ECFLOW run task +rt_utils.sh: control_wrtGauss_netcdf_parallel_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: control_wrtGauss_netcdf_parallel_debug_intel: Creating ECFLOW run task +rt_utils.sh: control_stochy_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: control_stochy_debug_intel: Creating ECFLOW run task +rt_utils.sh: control_lndp_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: control_lndp_debug_intel: Creating ECFLOW run task +rt_utils.sh: control_csawmg_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: control_csawmg_debug_intel: Creating ECFLOW run task +rt_utils.sh: control_ras_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: control_ras_debug_intel: Creating ECFLOW run task +rt_utils.sh: control_diag_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: control_diag_debug_intel: Creating ECFLOW run task +rt_utils.sh: control_debug_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: control_debug_p8_intel: Creating ECFLOW run task +rt_utils.sh: regional_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_control_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_control_debug_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_control_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_control_debug_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_gf_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_gf_debug_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_c3_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_c3_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_unified_drag_suite_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_unified_drag_suite_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_diag_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_diag_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_cires_ugwp_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_cires_ugwp_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_unified_ugwp_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_unified_ugwp_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_lndp_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_lndp_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_progcld_thompson_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_progcld_thompson_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_noah_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_noah_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_sfcdiff_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_sfcdiff_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_noah_sfcdiff_cires_ugwp_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_noah_sfcdiff_cires_ugwp_debug_intel: Creating ECFLOW run task +rt_utils.sh: rrfs_v1beta_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rrfs_v1beta_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_clm_lake_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_clm_lake_debug_intel: Creating ECFLOW run task +rt_utils.sh: rap_flake_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_flake_debug_intel: Creating ECFLOW run task +rt_utils.sh: gnv1_c96_no_nest_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: gnv1_c96_no_nest_debug_intel: Creating ECFLOW run task +rt_utils.sh: wam_debug_intel: Creating ECFLOW compile task +rt_utils.sh: control_wam_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: control_wam_debug_intel: Creating ECFLOW run task +rt_utils.sh: rrfs_dyn32_phy32_intel: Creating ECFLOW compile task +rt_utils.sh: regional_spp_sppt_shum_skeb_dyn32_phy32_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_spp_sppt_shum_skeb_dyn32_phy32_intel: Creating ECFLOW run task +rt_utils.sh: rap_control_dyn32_phy32_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_control_dyn32_phy32_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_control_dyn32_phy32_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_control_dyn32_phy32_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_control_decomp_dyn32_phy32_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_control_decomp_dyn32_phy32_intel: Creating ECFLOW run task +rt_utils.sh: rap_restart_dyn32_phy32_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_restart_dyn32_phy32_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_control_restart_dyn32_phy32_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_control_restart_dyn32_phy32_intel: Creating ECFLOW run task +rt_utils.sh: rrfs_dyn32_phy32_faster_intel: Creating ECFLOW compile task +rt_utils.sh: conus13km_control_intel: Computing PET bounds and tasks. +rt_utils.sh: conus13km_control_intel: Creating ECFLOW run task +rt_utils.sh: conus13km_2threads_intel: Computing PET bounds and tasks. +rt_utils.sh: conus13km_2threads_intel: Creating ECFLOW run task +rt_utils.sh: conus13km_restart_mismatch_intel: Computing PET bounds and tasks. +rt_utils.sh: conus13km_restart_mismatch_intel: Creating ECFLOW run task +rt_utils.sh: rrfs_dyn64_phy32_intel: Creating ECFLOW compile task +rt_utils.sh: rap_control_dyn64_phy32_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_control_dyn64_phy32_intel: Creating ECFLOW run task +rt_utils.sh: rrfs_dyn32_phy32_debug_intel: Creating ECFLOW compile task +rt_utils.sh: rap_control_debug_dyn32_phy32_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_control_debug_dyn32_phy32_intel: Creating ECFLOW run task +rt_utils.sh: hrrr_control_debug_dyn32_phy32_intel: Computing PET bounds and tasks. +rt_utils.sh: hrrr_control_debug_dyn32_phy32_intel: Creating ECFLOW run task +rt_utils.sh: conus13km_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: conus13km_debug_intel: Creating ECFLOW run task +rt_utils.sh: conus13km_debug_qr_intel: Computing PET bounds and tasks. +rt_utils.sh: conus13km_debug_qr_intel: Creating ECFLOW run task +rt_utils.sh: conus13km_radar_tten_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: conus13km_radar_tten_debug_intel: Creating ECFLOW run task +rt_utils.sh: rrfs_dyn64_phy32_debug_intel: Creating ECFLOW compile task +rt_utils.sh: rap_control_dyn64_phy32_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: rap_control_dyn64_phy32_debug_intel: Creating ECFLOW run task +rt_utils.sh: hafsw_intel: Creating ECFLOW compile task +rt_utils.sh: hafs_regional_atm_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_atm_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_atm_thompson_gfdlsf_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_atm_thompson_gfdlsf_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_atm_ocn_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_atm_ocn_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_atm_wav_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_atm_wav_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_atm_ocn_wav_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_atm_ocn_wav_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_1nest_atm_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_1nest_atm_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_telescopic_2nests_atm_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_telescopic_2nests_atm_intel: Creating ECFLOW run task +rt_utils.sh: hafs_global_1nest_atm_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_global_1nest_atm_intel: Creating ECFLOW run task +rt_utils.sh: hafs_global_multiple_4nests_atm_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_global_multiple_4nests_atm_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_specified_moving_1nest_atm_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_specified_moving_1nest_atm_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_storm_following_1nest_atm_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_storm_following_1nest_atm_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_intel: Creating ECFLOW run task +rt_utils.sh: hafs_global_storm_following_1nest_atm_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_global_storm_following_1nest_atm_intel: Creating ECFLOW run task +rt_utils.sh: gnv1_nested_intel: Computing PET bounds and tasks. +rt_utils.sh: gnv1_nested_intel: Creating ECFLOW run task +rt_utils.sh: hafsw_debug_intel: Creating ECFLOW compile task +rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_debug_intel: Creating ECFLOW run task +rt_utils.sh: hafsw_faster_intel: Creating ECFLOW compile task +rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: Creating ECFLOW run task +rt_utils.sh: hafs_mom6w_intel: Creating ECFLOW compile task +rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: Creating ECFLOW run task +rt_utils.sh: hafs_all_intel: Creating ECFLOW compile task +rt_utils.sh: hafs_regional_docn_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_docn_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_docn_oisst_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_docn_oisst_intel: Creating ECFLOW run task +rt_utils.sh: hafs_regional_datm_cdeps_intel: Computing PET bounds and tasks. +rt_utils.sh: hafs_regional_datm_cdeps_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_intel: Creating ECFLOW compile task +rt_utils.sh: datm_cdeps_control_cfsr_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_control_cfsr_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_restart_cfsr_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_restart_cfsr_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_control_gefs_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_control_gefs_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_iau_gefs_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_iau_gefs_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_stochy_gefs_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_stochy_gefs_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_ciceC_cfsr_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_ciceC_cfsr_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_bulk_cfsr_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_bulk_cfsr_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_bulk_gefs_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_bulk_gefs_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_mx025_cfsr_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_mx025_cfsr_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_mx025_gefs_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_mx025_gefs_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_multiple_files_cfsr_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_multiple_files_cfsr_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_3072x1536_cfsr_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_3072x1536_cfsr_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_gfs_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_gfs_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_debug_intel: Creating ECFLOW compile task +rt_utils.sh: datm_cdeps_debug_cfsr_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_debug_cfsr_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_faster_intel: Creating ECFLOW compile task +rt_utils.sh: datm_cdeps_control_cfsr_faster_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_control_cfsr_faster_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_land_intel: Creating ECFLOW compile task +rt_utils.sh: datm_cdeps_lnd_gswp3_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_lnd_gswp3_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_lnd_era5_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_lnd_era5_intel: Creating ECFLOW run task +rt_utils.sh: datm_cdeps_lnd_era5_rst_intel: Computing PET bounds and tasks. +rt_utils.sh: datm_cdeps_lnd_era5_rst_intel: Creating ECFLOW run task +rt_utils.sh: atml_intel: Creating ECFLOW compile task +rt_utils.sh: control_p8_atmlnd_sbs_intel: Computing PET bounds and tasks. +rt_utils.sh: control_p8_atmlnd_sbs_intel: Creating ECFLOW run task +rt_utils.sh: control_p8_atmlnd_intel: Computing PET bounds and tasks. +rt_utils.sh: control_p8_atmlnd_intel: Creating ECFLOW run task +rt_utils.sh: control_restart_p8_atmlnd_intel: Computing PET bounds and tasks. +rt_utils.sh: control_restart_p8_atmlnd_intel: Creating ECFLOW run task +rt_utils.sh: atmw_intel: Creating ECFLOW compile task +rt_utils.sh: atmwav_control_noaero_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: atmwav_control_noaero_p8_intel: Creating ECFLOW run task +rt_utils.sh: atmaero_intel: Creating ECFLOW compile task +rt_utils.sh: atmaero_control_p8_intel: Computing PET bounds and tasks. +rt_utils.sh: atmaero_control_p8_intel: Creating ECFLOW run task +rt_utils.sh: atmaero_control_p8_rad_intel: Computing PET bounds and tasks. +rt_utils.sh: atmaero_control_p8_rad_intel: Creating ECFLOW run task +rt_utils.sh: atmaero_control_p8_rad_micro_intel: Computing PET bounds and tasks. +rt_utils.sh: atmaero_control_p8_rad_micro_intel: Creating ECFLOW run task +rt_utils.sh: atmaq_debug_intel: Creating ECFLOW compile task +rt_utils.sh: regional_atmaq_debug_intel: Computing PET bounds and tasks. +rt_utils.sh: regional_atmaq_debug_intel: Creating ECFLOW run task +rt_utils.sh: Starting ECFLOW run +ECF_HOST: derecho6, ECF_PORT: 39982 +ecflow_server is NOT running on derecho6:39982 +Wed 24 Apr 2024 12:50:01 PM UTC + +User "38482" attempting to start ecf server on "derecho6" using ECF_PORT "39982" and with: +ECF_HOME : "/glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018/ecflow_server" +ECF_LOG : "derecho6.39982.ecf.log" +ECF_CHECK : "derecho6.39982.check" +ECF_CHECKOLD : "derecho6.39982.check.b" +ECF_OUT : "/dev/null" + +client version is Ecflow version(5.8.4) boost(1.78.0) compiler(gcc 12.2.0) protocol(JSON cereal 1.3.0) openssl(enabled) Compiled on Sep 20 2023 09:36:19 +Checking if the server is already running on derecho6 and port 39982 + +Backing up check point and log files + +OK starting ecFlow server... + +Placing server into RESTART mode... +restart of server failed +rt.sh finished +rt.sh: Cleaning up... +rt_utils.sh: Stopping ECFLOW Workflow... diff --git a/tests/logs/RT-run-Hercules.log b/tests/logs/RT-run-Hercules.log new file mode 100644 index 0000000000..393c54d52a --- /dev/null +++ b/tests/logs/RT-run-Hercules.log @@ -0,0 +1,16 @@ +******Regression Testing Script Started****** +hercules-login-1.hpc.msstate.edu +Machine: hercules +Account: epic +rt.sh: Setting up hercules... +Linking /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3789786 to /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2241/tests/run_dir +Run regression test in: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3789786 +rt.sh: Checking & Updating test configuration... +No update needed to rt.conf +rt.sh: Getting error information... +Exited at line 1062 having code 1 +rt.sh: Exited abnormally, killing workflow and cleaning up +rt_utils.sh: Killing ECFLOW Workflow... +rt.sh finished +rt.sh: Cleaning up... +rt_utils.sh: Stopping ECFLOW Workflow... diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 25a1acb339..19ed992c48 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -ac0c99fef9ec63df227e1ffff63088c8ec7ecbb1 +64df90f39f00b9682ca74b29f783bd0a37994a4a Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) @@ -36,261 +36,326 @@ 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-20240419 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22222 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44890 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:24, 10:54] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 02:14](3039 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:31] -PASS -- TEST 'cpld_control_gfsv17_intel' [03:54, 03:05](1652 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:17, 03:12](1802 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [41:43, 03:14](926 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [03:55, 01:49](1626 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:18, 04:32] -PASS -- TEST 'cpld_debug_gfsv17_intel' [16:07, 02:55](1678 MB) - -PASS -- COMPILE 's2swa_intel' [13:26, 10:38] -PASS -- TEST 'cpld_control_p8_intel' [08:58, 01:47](3068 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 02:32](3067 MB) -PASS -- TEST 'cpld_restart_p8_intel' [54:51, 01:57](3124 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 01:49](3095 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [53:20, 01:02](3145 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:58, 02:17](3384 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:58, 01:47](3066 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:59, 02:13](2997 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 01:51](3068 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 01:44](3034 MB) - -PASS -- COMPILE 's2sw_intel' [12:25, 10:13] -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:59, 01:56](1644 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:59, 02:22](1696 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 09:54] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:59, 02:22](1697 MB) - -PASS -- COMPILE 's2s_intel' [12:25, 09:44] -PASS -- TEST 'cpld_control_c48_intel' [09:58, 00:53](2673 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:09] -PASS -- TEST 'cpld_control_p8_faster_intel' [04:54, 02:26](3065 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:32, 15:35] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [03:52, 01:18](1668 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:45, 01:30](973 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:16, 01:45](1643 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:24, 04:24] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:01, 01:48](1687 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:30, 10:11] -PASS -- TEST 'control_flake_intel' [59:36, 00:46](634 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [59:36, 01:17](1532 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [59:36, 01:18](1536 MB) -PASS -- TEST 'control_latlon_intel' [59:36, 00:21](1532 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [59:36, 00:32](1537 MB) -PASS -- TEST 'control_c48_intel' [59:35, 01:35](1613 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [59:35, 00:58](736 MB) -PASS -- TEST 'control_c192_intel' [59:36, 01:24](1650 MB) -PASS -- TEST 'control_c384_intel' [59:40, 02:05](1969 MB) -PASS -- TEST 'control_c384gdas_intel' [59:40, 03:24](1150 MB) -PASS -- TEST 'control_stochy_intel' [59:36, 00:29](590 MB) -PASS -- TEST 'control_stochy_restart_intel' [54:00, 00:53](393 MB) -PASS -- TEST 'control_lndp_intel' [59:31, 00:42](591 MB) -PASS -- TEST 'control_iovr4_intel' [58:33, 00:22](584 MB) -PASS -- TEST 'control_iovr5_intel' [58:24, 01:10](585 MB) -PASS -- TEST 'control_p8_intel' [56:39, 02:34](1563 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [56:39, 02:27](1563 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [55:35, 02:25](1572 MB) -PASS -- TEST 'control_restart_p8_intel' [28:30, 02:18](751 MB) -PASS -- TEST 'control_noqr_p8_intel' [55:21, 02:33](1558 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [28:30, 02:19](754 MB) -PASS -- TEST 'control_decomp_p8_intel' [53:33, 02:27](1563 MB) -PASS -- TEST 'control_2threads_p8_intel' [53:20, 01:06](1653 MB) -PASS -- TEST 'control_p8_lndp_intel' [52:32, 00:43](1563 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [52:31, 02:24](1619 MB) -PASS -- TEST 'control_p8_mynn_intel' [51:54, 02:38](1572 MB) -PASS -- TEST 'merra2_thompson_intel' [49:55, 02:52](1579 MB) -PASS -- TEST 'regional_control_intel' [48:13, 00:48](629 MB) -PASS -- TEST 'regional_restart_intel' [39:09, 01:08](801 MB) -PASS -- TEST 'regional_decomp_intel' [47:02, 00:14](628 MB) -PASS -- TEST 'regional_2threads_intel' [46:57, 00:17](723 MB) -PASS -- TEST 'regional_noquilt_intel' [45:04, 00:29](1168 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [44:10, 01:06](633 MB) -PASS -- TEST 'regional_wofs_intel' [43:21, 01:01](1607 MB) - -PASS -- COMPILE 'ifi_intel' [09:23, 08:35] -PASS -- TEST 'regional_ifi_control_intel' [01:36, 00:34](630 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [01:36, 00:51](628 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [01:37, 00:45](718 MB) - -PASS -- COMPILE 'rrfs_intel' [31:46, 09:12] -PASS -- TEST 'rap_control_intel' [38:13, 02:12](970 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [38:14, 00:49](1146 MB) -PASS -- TEST 'rap_decomp_intel' [37:03, 01:42](970 MB) -PASS -- TEST 'rap_2threads_intel' [34:44, 02:34](1058 MB) -PASS -- TEST 'rap_restart_intel' [19:09, 02:24](845 MB) -PASS -- TEST 'rap_sfcdiff_intel' [32:06, 02:37](972 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:08, 02:07](971 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [18:32, 02:54](847 MB) -PASS -- TEST 'hrrr_control_intel' [30:25, 02:25](963 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [29:22, 01:52](966 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [28:49, 01:31](1048 MB) -PASS -- TEST 'hrrr_control_restart_intel' [21:51, 00:32](796 MB) -PASS -- TEST 'rrfs_v1beta_intel' [28:42, 03:06](965 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [28:38, 00:40](1929 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [27:59, 00:36](1918 MB) - -PASS -- COMPILE 'csawmg_intel' [53:14, 08:43] -PASS -- TEST 'control_csawmg_intel' [16:45, 00:48](656 MB) - -PASS -- COMPILE 'wam_intel' [58:20, 08:29] -PASS -- TEST 'control_wam_intel' [11:07, 00:48](329 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [58:20, 09:05] -PASS -- TEST 'control_p8_faster_intel' [10:17, 02:47](1559 MB) -PASS -- TEST 'regional_control_faster_intel' [10:02, 00:32](626 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [53:13, 04:41] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:44, 00:42](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:44, 00:43](1559 MB) -PASS -- TEST 'control_stochy_debug_intel' [15:44, 00:52](760 MB) -PASS -- TEST 'control_lndp_debug_intel' [15:44, 01:10](761 MB) -PASS -- TEST 'control_csawmg_debug_intel' [15:44, 00:58](798 MB) -PASS -- TEST 'control_ras_debug_intel' [15:44, 00:34](767 MB) -PASS -- TEST 'control_diag_debug_intel' [15:44, 01:07](1619 MB) -PASS -- TEST 'control_debug_p8_intel' [15:44, 01:13](1589 MB) -PASS -- TEST 'regional_debug_intel' [15:43, 00:48](687 MB) -PASS -- TEST 'rap_control_debug_intel' [15:44, 01:06](1146 MB) -PASS -- TEST 'hrrr_control_debug_intel' [15:44, 00:53](1139 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [15:44, 00:47](1141 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [15:01, 01:10](1141 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:58, 00:19](1151 MB) -PASS -- TEST 'rap_diag_debug_intel' [12:37, 00:47](1231 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:15, 01:04](1145 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:13, 00:50](1146 MB) -PASS -- TEST 'rap_lndp_debug_intel' [11:53, 01:13](1149 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:03, 00:47](1146 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:03, 00:44](1144 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:57, 00:28](1143 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:47, 00:35](1141 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:06, 00:43](1139 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:05, 00:40](1147 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:05, 00:31](1145 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:17, 02:53](1148 MB) - -PASS -- COMPILE 'wam_debug_intel' [48:05, 03:18] -PASS -- TEST 'control_wam_debug_intel' [16:48, 00:59](370 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [52:09, 08:29] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:29, 01:16](1015 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:25, 03:07](850 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:21, 03:54](846 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:18, 02:58](914 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:32](897 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 03:20](849 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [37:41, 01:48](744 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [33:27, 01:10](729 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [54:14, 10:43] -PASS -- TEST 'conus13km_control_intel' [04:59, 00:46](1056 MB) -PASS -- TEST 'conus13km_2threads_intel' [30:06, 00:36](1036 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [30:05, 00:37](935 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [50:04, 08:47] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 00:58](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [42:57, 03:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:38, 01:09](1019 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:38, 01:17](1023 MB) -PASS -- TEST 'conus13km_debug_intel' [16:38, 01:25](1111 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:38, 01:18](811 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:39, 00:36](1100 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:38, 00:21](1177 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:35, 03:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:37, 01:03](1044 MB) - -PASS -- COMPILE 'hafsw_intel' [10:24, 09:50] -PASS -- TEST 'hafs_regional_atm_intel' [04:20, 02:14](673 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:05, 00:29](1019 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [02:36, 02:17](713 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [01:20, 01:41](755 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [01:16, 01:57](767 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:12, 01:35](439 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [59:49, 01:50](460 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [59:38, 01:07](332 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:41, 02:35](397 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:27, 01:19](474 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:25, 00:59](470 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:22, 00:51](531 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:16, 00:50](365 MB) -PASS -- TEST 'gnv1_nested_intel' [57:33, 01:46](732 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:16, 03:46] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:13, 01:32](626 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:24, 10:23] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [56:22, 01:24](579 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:03, 01:31](746 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:24, 10:12] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [56:03, 01:10](749 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:34, 09:32] -PASS -- TEST 'hafs_regional_docn_intel' [55:10, 01:50](709 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:23, 01:48](696 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:03, 01:05](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [20:34, 07:49] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:32, 00:24](762 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [48:09, 00:50](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:15, 00:32](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [48:57, 00:14](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [46:52, 00:34](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [46:13, 00:54](762 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [45:47, 00:48](762 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [45:34, 00:54](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:24, 01:04](646 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [42:28, 01:11](629 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:48, 00:53](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [41:30, 00:43](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [41:08, 00:31](2019 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [20:34, 08:27] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [32:27, 01:02](759 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [20:35, 01:04] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [39:22, 00:18](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [39:21, 01:11](413 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [32:44, 00:57](413 MB) - -PASS -- COMPILE 'atml_intel' [22:37, 09:51] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:09, 02:56](1599 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [38:02, 02:35](1603 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [26:21, 01:10](802 MB) - -PASS -- COMPILE 'atmw_intel' [38:53, 09:03] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [32:38, 02:33](1603 MB) - -PASS -- COMPILE 'atmaero_intel' [36:53, 08:52] -PASS -- TEST 'atmaero_control_p8_intel' [32:43, 01:53](2915 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [32:43, 02:17](2970 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:43, 01:58](2985 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [35:49, 03:27] -PASS -- TEST 'regional_atmaq_debug_intel' [30:34, 02:09](4495 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:44] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [58:24, 01:49](3039 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:52] +PASS -- TEST 'cpld_control_gfsv17_intel' [52:45, 02:03](1649 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:56, 03:20](1773 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:30, 02:29](900 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 02:51](1622 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:19] +PASS -- TEST 'cpld_debug_gfsv17_intel' [04:31, 03:10](1683 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 10:44] +PASS -- TEST 'cpld_control_p8_intel' [58:24, 01:33](3065 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [58:24, 02:02](3066 MB) +PASS -- TEST 'cpld_restart_p8_intel' [49:22, 01:39](3121 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [58:24, 01:32](3089 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [49:22, 02:16](3142 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [58:24, 01:25](3379 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [58:24, 02:01](3064 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [58:25, 01:50](2994 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:24, 01:57](3065 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [58:24, 02:16](3031 MB) + +PASS -- COMPILE 's2sw_intel' [10:23, 10:10] +PASS -- TEST 'cpld_control_noaero_p8_intel' [59:25, 01:06](1644 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:25, 01:29](1696 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:33] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [59:25, 01:30](1697 MB) + +PASS -- COMPILE 's2s_intel' [10:24, 09:33] +PASS -- TEST 'cpld_control_c48_intel' [59:23, 01:03](2672 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:39] +PASS -- TEST 'cpld_control_p8_faster_intel' [52:15, 02:16](3068 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 16:00] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:41, 01:36](1667 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:38, 01:33](972 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:13, 01:17](1638 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:03] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:31, 01:23](1687 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:51] +PASS -- TEST 'control_flake_intel' [55:07, 01:02](634 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [55:07, 00:41](1528 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [55:07, 00:47](1542 MB) +PASS -- TEST 'control_latlon_intel' [55:07, 00:44](1538 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [55:07, 00:54](1530 MB) +PASS -- TEST 'control_c48_intel' [55:06, 01:09](1611 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [55:06, 00:46](736 MB) +PASS -- TEST 'control_c192_intel' [55:07, 00:54](1649 MB) +PASS -- TEST 'control_c384_intel' [55:11, 01:52](1966 MB) +PASS -- TEST 'control_c384gdas_intel' [55:11, 02:44](1150 MB) +PASS -- TEST 'control_stochy_intel' [55:07, 00:55](590 MB) +PASS -- TEST 'control_stochy_restart_intel' [36:18, 00:21](392 MB) +PASS -- TEST 'control_lndp_intel' [55:07, 01:00](589 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_iovr4_intel' [, ]( MB) +PASS -- TEST 'control_iovr5_intel' [50:07, 00:25](583 MB) +PASS -- TEST 'control_p8_intel' [49:02, 01:38](1561 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [48:54, 02:13](1563 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [47:54, 02:26](1573 MB) +PASS -- TEST 'control_restart_p8_intel' [26:21, 01:57](751 MB) +PASS -- TEST 'control_noqr_p8_intel' [47:54, 02:13](1557 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [22:31, 01:59](754 MB) +PASS -- TEST 'control_decomp_p8_intel' [44:08, 02:04](1556 MB) +PASS -- TEST 'control_2threads_p8_intel' [42:21, 01:52](1657 MB) +PASS -- TEST 'control_p8_lndp_intel' [38:25, 01:06](1563 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [37:06, 02:25](1621 MB) +PASS -- TEST 'control_p8_mynn_intel' [36:18, 02:00](1572 MB) +PASS -- TEST 'merra2_thompson_intel' [33:31, 02:54](1578 MB) +PASS -- TEST 'regional_control_intel' [33:25, 00:25](630 MB) +PASS -- TEST 'regional_restart_intel' [27:21, 00:56](798 MB) +PASS -- TEST 'regional_decomp_intel' [33:14, 00:58](628 MB) +PASS -- TEST 'regional_2threads_intel' [31:23, 00:46](718 MB) +PASS -- TEST 'regional_noquilt_intel' [30:34, 01:00](1164 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [30:30, 00:52](630 MB) +PASS -- TEST 'regional_wofs_intel' [30:29, 00:27](1602 MB) + +PASS -- COMPILE 'ifi_intel' [09:22, 08:20] +PASS -- TEST 'regional_ifi_control_intel' [55:07, 00:28](630 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [55:07, 00:25](628 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [55:08, 01:12](725 MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 09:05] +PASS -- TEST 'rap_control_intel' [30:28, 02:41](970 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [30:17, 00:51](1146 MB) +PASS -- TEST 'rap_decomp_intel' [29:14, 02:07](974 MB) +PASS -- TEST 'rap_2threads_intel' [26:59, 02:10](1056 MB) +PASS -- TEST 'rap_restart_intel' [04:40, 02:17](843 MB) +PASS -- TEST 'rap_sfcdiff_intel' [25:53, 02:22](972 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:57, 02:06](971 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [48:53, 02:29](843 MB) +PASS -- TEST 'hrrr_control_intel' [23:55, 02:58](963 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [23:40, 02:52](966 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [23:35, 02:59](1045 MB) +PASS -- TEST 'hrrr_control_restart_intel' [51:39, 00:21](795 MB) +PASS -- TEST 'rrfs_v1beta_intel' [23:34, 02:41](965 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [23:24, 00:36](1929 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:06, 01:10](1919 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:43] +PASS -- TEST 'control_csawmg_intel' [22:59, 01:11](656 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 08:23] +PASS -- TEST 'control_wam_intel' [22:31, 00:26](331 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 08:58] +PASS -- TEST 'control_p8_faster_intel' [22:16, 02:06](1561 MB) +PASS -- TEST 'regional_control_faster_intel' [21:28, 00:33](626 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:21, 04:24] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [55:05, 01:01](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:10, 00:28](1559 MB) +PASS -- TEST 'control_stochy_debug_intel' [20:26, 00:34](757 MB) +PASS -- TEST 'control_lndp_debug_intel' [53:10, 00:16](757 MB) +PASS -- TEST 'control_csawmg_debug_intel' [18:07, 00:35](798 MB) +PASS -- TEST 'control_ras_debug_intel' [17:37, 00:25](768 MB) +PASS -- TEST 'control_diag_debug_intel' [17:29, 01:04](1619 MB) +PASS -- TEST 'control_debug_p8_intel' [15:28, 01:15](1588 MB) +PASS -- TEST 'regional_debug_intel' [15:14, 00:45](687 MB) +PASS -- TEST 'rap_control_debug_intel' [04:26, 00:54](1145 MB) +PASS -- TEST 'hrrr_control_debug_intel' [03:36, 00:54](1140 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [55:40, 00:35](1140 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [54:58, 01:18](1145 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [54:39, 00:33](1145 MB) +PASS -- TEST 'rap_diag_debug_intel' [42:00, 00:42](1230 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [53:33, 00:32](1145 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [53:19, 00:44](1145 MB) +PASS -- TEST 'rap_lndp_debug_intel' [52:30, 00:32](1149 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:44, 01:16](1145 MB) +PASS -- TEST 'rap_noah_debug_intel' [51:39, 00:40](1148 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [50:59, 00:48](1143 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:46, 00:47](1142 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [36:51, 00:29](1136 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [50:03, 00:28](1144 MB) +PASS -- TEST 'rap_flake_debug_intel' [49:21, 01:16](1145 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [49:04, 03:00](1151 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:20, 03:11] +PASS -- TEST 'control_wam_debug_intel' [48:53, 00:40](369 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:27, 08:24] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [48:41, 01:20](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [47:15, 02:26](851 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [44:36, 04:11](846 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [43:56, 02:12](908 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [42:24, 03:12](900 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:58, 02:28](847 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:46, 01:53](743 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:16, 01:07](730 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:29, 10:37] +PASS -- TEST 'conus13km_control_intel' [41:58, 01:16](1055 MB) +PASS -- TEST 'conus13km_2threads_intel' [28:24, 00:47](1036 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [26:27, 01:02](935 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:28, 08:32] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [41:54, 01:16](875 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:25, 03:17] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [41:50, 00:41](1020 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [41:45, 00:52](1023 MB) +PASS -- TEST 'conus13km_debug_intel' [41:42, 00:32](1106 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [41:36, 00:32](783 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [41:15, 00:52](1088 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:56, 01:07](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:23, 03:13] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [38:49, 00:33](1043 MB) + +PASS -- COMPILE 'hafsw_intel' [19:34, 09:48] +PASS -- TEST 'hafs_regional_atm_intel' [38:15, 01:39](673 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [38:06, 01:14](1025 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:59, 01:50](714 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [37:39, 02:01](753 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:19, 02:07](910 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:16, 01:35](432 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:41, 01:28](456 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [35:22, 01:32](330 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [34:18, 02:29](400 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [33:54, 00:57](472 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:01, 01:06](470 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [32:38, 01:37](532 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:11, 00:57](365 MB) +PASS -- TEST 'gnv1_nested_intel' [30:08, 01:11](730 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:26, 03:51] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:31, 01:00](632 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:35, 10:01] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:23, 01:05](577 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:55, 01:35](747 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [31:46, 09:53] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:18, 01:20](748 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:44, 09:31] +PASS -- TEST 'hafs_regional_docn_intel' [21:30, 01:49](710 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:15, 01:54](695 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [10:42, 00:39](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [17:36, 08:42] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:38, 01:09](758 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:14, 01:04](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:13, 00:44](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [53:11, 00:55](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [51:52, 00:13](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [51:28, 01:09](759 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [50:31, 01:05](759 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [49:18, 00:24](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [49:18, 00:54](645 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [49:13, 00:52](623 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [48:32, 00:59](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [47:59, 01:02](2011 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [41:34, 01:00](2015 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [24:44, 08:42] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [37:14, 01:08](760 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [16:33, 01:04] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [31:53, 00:20](265 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [29:15, 01:05](413 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:42, 00:59](412 MB) + +PASS -- COMPILE 'atml_intel' [25:45, 10:08] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [28:46, 02:10](1602 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [26:17, 02:33](1602 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [17:32, 00:50](803 MB) + +PASS -- COMPILE 'atmw_intel' [30:51, 09:03] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [26:08, 02:14](1603 MB) + +PASS -- COMPILE 'atmaero_intel' [22:44, 08:58] +PASS -- TEST 'atmaero_control_p8_intel' [14:04, 02:13](2915 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:04, 01:46](2974 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:04, 02:33](2984 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:31, 03:27] +PASS -- TEST 'regional_atmaq_debug_intel' [18:55, 01:58](4511 MB) SYNOPSIS: -Starting Date/Time: 20240422 19:37:15 -Ending Date/Time: 20240422 21:57:39 -Total Time: 02h:20m:51s +Starting Date/Time: 20240425 13:49:52 +Ending Date/Time: 20240425 17:25:30 +Total Time: 03h:36m:04s Compiles Completed: 35/35 -Tests Completed: 173/173 +Tests Completed: 172/173 +Failed Tests: +* TEST control_iovr4_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_acorn/run_control_iovr4_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: +64df90f39f00b9682ca74b29f783bd0a37994a4a + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +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-20240419 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28522 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-b) - NEW BASELINES FROM FILE: test_changes.list + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:44] +PASS -- TEST 'control_iovr4_intel' [21:34, 00:52](583 MB) + +SYNOPSIS: +Starting Date/Time: 20240425 17:28:05 +Ending Date/Time: 20240425 17:42:03 +Total Time: 00h:14m:07s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index b0d8347b23..614b7b6b15 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 +fe4bb76565de0a5f3261b276fa392d65cb046e96 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) @@ -36,292 +36,268 @@ 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-20240419 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_41899 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_68317 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:19, 19:10] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:34, 04:53](3075 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:16, 20:22] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:22, 13:41](1691 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:51, 15:04](1828 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:57, 07:12](958 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:25, 15:44](1667 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:14, 08:48] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:14, 22:14](1701 MB) - -PASS -- COMPILE 's2swa_intel' [20:15, 19:07] -PASS -- TEST 'cpld_control_p8_intel' [08:58, 05:35](3093 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:47, 05:35](3090 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:45, 03:18](3150 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 05:37](3130 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:45, 03:18](3178 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:46, 05:32](3099 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:00, 04:38](3397 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:02, 05:36](3102 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:18, 08:45](3639 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:05, 05:58](3615 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:45, 09:46](4343 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:58, 07:00](4649 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:31, 05:13](3065 MB) - -PASS -- COMPILE 's2sw_intel' [19:19, 18:27] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:45, 04:11](1682 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:14](1729 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:13, 08:48] -PASS -- TEST 'cpld_debug_p8_intel' [11:06, 07:50](3154 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:13, 08:15] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:40, 05:18](1712 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:07] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:11, 04:17](1735 MB) - -PASS -- COMPILE 's2s_intel' [15:15, 14:04] -PASS -- TEST 'cpld_control_c48_intel' [08:20, 06:40](2665 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:27, 24:03] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:15, 05:29](3104 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:14, 19:21] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:47, 13:58](1702 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:14](1013 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:46, 15:56](1673 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:12, 08:50] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:42, 22:56](1720 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:13, 12:35] -PASS -- TEST 'control_flake_intel' [04:35, 03:24](671 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:39, 05:15](740 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB) -PASS -- TEST 'control_c384gdas_intel' [16:00, 07:16](1203 MB) -PASS -- TEST 'control_stochy_intel' [02:32, 01:27](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:51](438 MB) -PASS -- TEST 'control_lndp_intel' [02:34, 01:23](629 MB) -PASS -- TEST 'control_iovr4_intel' [03:38, 02:07](624 MB) -PASS -- TEST 'control_iovr5_intel' [03:45, 02:06](620 MB) -PASS -- TEST 'control_p8_intel' [04:26, 02:30](1596 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:25, 02:27](1596 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:25, 02:28](1607 MB) -PASS -- TEST 'control_restart_p8_intel' [03:31, 01:24](800 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:31, 02:28](1597 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:24](806 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:24, 02:32](1594 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:55, 04:21](1595 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:36, 03:16](1652 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:20, 02:31](1611 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB) -PASS -- TEST 'regional_control_intel' [06:26, 04:28](631 MB) -PASS -- TEST 'regional_restart_intel' [04:11, 02:32](803 MB) -PASS -- TEST 'regional_decomp_intel' [06:25, 04:43](630 MB) -PASS -- TEST 'regional_noquilt_intel' [06:20, 04:24](1162 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 04:29](630 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:21, 04:29](632 MB) -PASS -- TEST 'regional_wofs_intel' [07:33, 05:41](1604 MB) - -PASS -- COMPILE 'rrfs_intel' [12:20, 11:17] -PASS -- TEST 'rap_control_intel' [08:33, 06:13](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 03:41](1191 MB) -PASS -- TEST 'rap_decomp_intel' [08:54, 06:23](1006 MB) -PASS -- TEST 'rap_restart_intel' [05:26, 03:12](885 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:40, 06:06](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:31, 06:41](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:15, 04:34](881 MB) -PASS -- TEST 'hrrr_control_intel' [06:02, 03:49](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:18](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:21, 03:05](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:43, 01:43](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:22](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:31, 07:26](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:42, 07:10](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [11:19, 10:21] -PASS -- TEST 'control_csawmg_intel' [08:26, 05:48](692 MB) -PASS -- TEST 'control_ras_intel' [04:09, 02:52](656 MB) - -PASS -- COMPILE 'wam_intel' [10:17, 09:22] -PASS -- TEST 'control_wam_intel' [03:38, 01:55](382 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:19, 12:35] -PASS -- TEST 'control_p8_faster_intel' [05:07, 02:23](1604 MB) -PASS -- TEST 'regional_control_faster_intel' [06:01, 04:20](625 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:22] -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) -PASS -- TEST 'control_stochy_debug_intel' [04:36, 02:54](800 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:34](798 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:16](840 MB) -PASS -- TEST 'control_ras_debug_intel' [03:34, 02:41](807 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB) -PASS -- TEST 'control_debug_p8_intel' [04:14, 02:36](1629 MB) -PASS -- TEST 'regional_debug_intel' [18:09, 16:20](667 MB) -PASS -- TEST 'rap_control_debug_intel' [06:36, 04:53](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:08, 04:55](1180 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:43, 04:37](1182 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:43, 04:37](1183 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:51, 04:49](1180 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:18, 04:56](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 04:46](1182 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:36, 04:48](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:43, 04:43](1182 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB) -PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:32](1178 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:44, 04:37](1184 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:38, 07:28](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:41, 04:32](1179 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 05:23](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:34, 04:40](1181 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:20, 07:58](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:17, 05:23] -PASS -- TEST 'control_wam_debug_intel' [05:24, 04:37](421 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:20, 09:37] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:24, 03:29](1059 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:19, 19:02] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:58, 04:58](3073 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:16, 20:24] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 13:47](1689 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 15:04](1824 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:33, 07:07](959 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:06, 15:46](1665 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:16, 08:59] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:47, 21:22](1706 MB) + +PASS -- COMPILE 's2swa_intel' [20:17, 19:06] +PASS -- TEST 'cpld_control_p8_intel' [09:05, 05:38](3091 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:14, 05:33](3095 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:50, 03:17](3150 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:05, 05:33](3125 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:54, 03:20](3180 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 05:35](3090 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:27, 04:37](3385 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:11, 05:38](3101 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:09, 08:43](3634 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:48, 05:50](3616 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:34, 09:39](4341 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:41, 07:03](4648 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:35, 05:12](3064 MB) + +PASS -- COMPILE 's2sw_intel' [19:18, 18:31] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:46, 04:09](1685 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:59, 04:12](1727 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:15, 09:01] +PASS -- TEST 'cpld_debug_p8_intel' [09:56, 07:36](3151 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:15, 08:28] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:21, 05:10](1710 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:17, 14:05] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:53, 04:12](1728 MB) + +PASS -- COMPILE 's2s_intel' [15:17, 14:02] +PASS -- TEST 'cpld_control_c48_intel' [08:14, 06:35](2670 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:20, 22:47] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:27, 05:28](3102 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:19, 19:28] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:55, 14:03](1708 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 07:16](1019 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:56, 16:00](1666 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:32] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:46, 22:54](1718 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:20] +PASS -- TEST 'control_flake_intel' [04:52, 03:23](667 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:25](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:54, 02:27](1572 MB) +PASS -- TEST 'control_latlon_intel' [04:31, 02:22](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:24](1568 MB) +PASS -- TEST 'control_c48_intel' [08:28, 06:13](1616 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:39, 05:17](734 MB) +PASS -- TEST 'control_c192_intel' [11:09, 08:39](1690 MB) +PASS -- TEST 'control_c384_intel' [16:38, 08:56](2011 MB) +PASS -- TEST 'control_c384gdas_intel' [17:05, 07:23](1199 MB) +PASS -- TEST 'control_stochy_intel' [02:43, 01:25](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:45, 00:52](443 MB) +PASS -- TEST 'control_lndp_intel' [02:42, 01:22](626 MB) +PASS -- TEST 'control_iovr4_intel' [03:42, 02:05](625 MB) +PASS -- TEST 'control_iovr5_intel' [03:42, 02:06](624 MB) +PASS -- TEST 'control_p8_intel' [04:27, 02:30](1601 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:28, 02:30](1598 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:29, 02:28](1602 MB) +PASS -- TEST 'control_restart_p8_intel' [03:24, 01:24](804 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:26, 02:30](1585 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:29, 01:23](805 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:40, 02:32](1591 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:28, 04:21](1605 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:17](1659 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:46, 02:30](1607 MB) +PASS -- TEST 'merra2_thompson_intel' [04:44, 02:48](1603 MB) +PASS -- TEST 'regional_control_intel' [06:07, 04:31](632 MB) +PASS -- TEST 'regional_restart_intel' [04:16, 02:33](800 MB) +PASS -- TEST 'regional_decomp_intel' [06:12, 04:43](629 MB) +PASS -- TEST 'regional_noquilt_intel' [06:03, 04:25](1159 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:04, 04:27](629 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:30](627 MB) +PASS -- TEST 'regional_wofs_intel' [07:07, 05:35](1606 MB) + +PASS -- COMPILE 'rrfs_intel' [12:14, 10:56] +PASS -- TEST 'rap_control_intel' [08:21, 06:06](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 03:41](1191 MB) +PASS -- TEST 'rap_decomp_intel' [08:22, 06:23](1006 MB) +PASS -- TEST 'rap_restart_intel' [05:16, 03:11](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:21, 06:04](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:15, 06:23](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:12, 04:35](881 MB) +PASS -- TEST 'hrrr_control_intel' [05:14, 03:13](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:18](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 02:49](1088 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:53, 01:44](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:05, 05:57](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:39, 07:21](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:10](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [11:13, 10:02] +PASS -- TEST 'control_csawmg_intel' [08:12, 05:48](695 MB) +PASS -- TEST 'control_ras_intel' [04:36, 02:51](660 MB) + +PASS -- COMPILE 'wam_intel' [10:13, 09:21] +PASS -- TEST 'control_wam_intel' [03:34, 01:53](382 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:20, 12:20] +PASS -- TEST 'control_p8_faster_intel' [04:52, 02:26](1606 MB) +PASS -- TEST 'regional_control_faster_intel' [06:16, 04:17](629 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:17, 08:31] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:09, 02:29](1595 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:28](1600 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:50](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:46, 02:33](798 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:06, 03:57](840 MB) +PASS -- TEST 'control_ras_debug_intel' [03:33, 02:40](806 MB) +PASS -- TEST 'control_diag_debug_intel' [04:38, 02:32](1666 MB) +PASS -- TEST 'control_debug_p8_intel' [04:10, 02:35](1628 MB) +PASS -- TEST 'regional_debug_intel' [17:13, 15:49](665 MB) +PASS -- TEST 'rap_control_debug_intel' [05:38, 04:39](1180 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:36, 04:33](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:32, 04:35](1182 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:39](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:43](1181 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:30, 04:51](1266 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:28, 04:44](1182 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:37, 04:42](1182 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:35, 04:48](1184 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:34, 04:30](1184 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:37, 04:48](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:27](1182 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:41, 04:34](1178 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:44, 05:30](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:37, 04:37](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 07:53](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:12, 05:11] +PASS -- TEST 'control_wam_debug_intel' [05:24, 04:36](418 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:17, 09:30] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:45, 03:30](1059 MB) PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:02, 05:07](884 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:12, 02:45](884 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 02:53](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:05, 03:53](795 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 01:30](776 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:54] -PASS -- TEST 'conus13km_control_intel' [05:05, 01:50](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:53, 00:58](1088 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:07](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:47, 09:52] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:07, 03:35](914 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:45] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:33, 04:28](1058 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:31, 04:29](1055 MB) -PASS -- TEST 'conus13km_debug_intel' [15:43, 13:23](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 13:27](821 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:57, 13:27](1204 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:42, 06:05] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 04:30](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [18:20, 17:40] -PASS -- TEST 'hafs_regional_atm_intel' [07:01, 04:31](722 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:06, 05:09](1062 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 06:22](780 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:33, 11:01](798 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 11:55](815 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:31, 04:40](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:30, 05:42](496 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:09, 02:18](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 06:19](457 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:16](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:09, 03:05](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:17, 03:47](590 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:34, 01:14](430 MB) -PASS -- TEST 'gnv1_nested_intel' [05:24, 03:21](786 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:13, 08:07] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:16, 12:14](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:11] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:21, 07:04](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:19, 07:05](691 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:03, 18:52] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 05:19](679 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:53, 16:02] -PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:32](756 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:45, 05:31](739 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:21, 16:08](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:48, 09:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:30, 02:29](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:31](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:36, 02:20](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:33, 02:24](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:27, 02:24](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:23, 02:29](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:30](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:24, 02:20](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:44, 05:40](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 05:40](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:27](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:33, 03:52](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:35, 03:53](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:49, 06:33] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:31, 05:02](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:17, 07:50] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:31](762 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:58] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:11](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:06](453 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:42](451 MB) - -PASS -- COMPILE 'atml_intel' [14:18, 13:15] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:34, 07:03](1641 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:26, 06:34](1641 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:20, 03:39](855 MB) - -PASS -- COMPILE 'atmw_intel' [13:18, 12:49] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:32](1630 MB) - -PASS -- COMPILE 'atmaero_intel' [12:18, 11:00] -PASS -- TEST 'atmaero_control_p8_intel' [06:10, 03:37](2950 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 04:15](2998 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:12, 06:25] -PASS -- TEST 'regional_atmaq_debug_intel' [26:05, 22:02](4537 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:15, 02:45](881 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 02:53](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:06, 03:52](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:47, 01:32](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:44] +PASS -- TEST 'conus13km_control_intel' [04:41, 01:52](1086 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:31, 00:58](1086 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:07](972 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 09:48] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:07, 03:36](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 06:04] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:29](1058 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:30, 04:24](1058 MB) +PASS -- TEST 'conus13km_debug_intel' [16:03, 13:24](1134 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:02, 13:34](818 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 13:26](1203 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:19, 05:58] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:34, 04:38](1081 MB) + +PASS -- COMPILE 'hafsw_intel' [17:21, 16:01] +PASS -- TEST 'hafs_regional_atm_intel' [06:57, 04:34](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:02, 05:02](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:24](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:48, 10:49](798 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:01](819 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:26, 04:40](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:47, 05:46](493 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:08, 02:21](393 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:59, 06:13](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:08, 03:15](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 03:02](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:37, 03:45](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:37, 01:16](427 MB) +PASS -- TEST 'gnv1_nested_intel' [05:13, 03:22](787 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:08] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:15, 11:58](612 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:20, 19:52] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 07:10](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:25, 07:09](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:19, 16:44] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:46, 05:17](679 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:19, 14:27] +PASS -- TEST 'hafs_regional_docn_intel' [07:49, 05:33](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:34, 05:33](737 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:21, 16:09](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:17, 07:52] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:29](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:29, 01:32](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:20](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:24, 02:24](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:24](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:28](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:31, 02:29](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:25, 02:23](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:17, 05:39](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:56, 05:39](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:28](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:35, 03:54](2016 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 03:54](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:11] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:29, 05:03](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:22, 07:48] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:32](759 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:20] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:11](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:05](458 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:37, 00:41](450 MB) + +PASS -- COMPILE 'atml_intel' [14:14, 13:00] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:35, 06:59](1628 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 06:22](1636 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 03:31](855 MB) + +PASS -- COMPILE 'atmw_intel' [13:20, 12:36] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:32](1641 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 11:05] +PASS -- TEST 'atmaero_control_p8_intel' [05:38, 03:38](2951 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:38, 04:15](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:19](3012 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:20, 06:30] +PASS -- TEST 'regional_atmaq_debug_intel' [25:29, 22:05](4531 MB) SYNOPSIS: -Starting Date/Time: 20240422 06:31:47 -Ending Date/Time: 20240422 08:01:07 -Total Time: 01h:30m:07s +Starting Date/Time: 20240424 06:22:13 +Ending Date/Time: 20240424 07:49:24 +Total Time: 01h:27m:53s Compiles Completed: 37/37 -Tests Completed: 159/172 +Tests Completed: 171/172 Failed Tests: -* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_intel.log -* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_parallel_intel.log -* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_latlon_intel.log -* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_wrtGauss_netcdf_parallel_intel.log -* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c48_intel.log -* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c192_intel.log -* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c384_intel.log -* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_merra2_thompson_intel.log -* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_debug_intel.log -* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_wrtGauss_netcdf_parallel_debug_intel.log -* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_diag_debug_intel.log -* TEST rap_progcld_thompson_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_rap_progcld_thompson_debug_intel.log -* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_atmaero_control_p8_rad_micro_intel.log +* TEST rap_cires_ugwp_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/work/zshrader/rt-2241/tests/logs/log_derecho/run_rap_cires_ugwp_debug_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -334,7 +310,7 @@ Result: FAILURE ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 +fe4bb76565de0a5f3261b276fa392d65cb046e96 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -354,7 +330,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) @@ -369,102 +345,19 @@ 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-20240419 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_84317 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_96038 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:43] -PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:25](1563 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:27](1574 MB) -PASS -- TEST 'control_latlon_intel' [04:15, 02:25](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:26](1565 MB) -PASS -- TEST 'control_c48_intel' [08:20, 06:14](1618 MB) -PASS -- TEST 'control_c192_intel' [10:38, 08:42](1682 MB) -PASS -- TEST 'control_c384_intel' [12:47, 08:54](2006 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'merra2_thompson_intel' [, ]( MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:44] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:11, 02:31](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:11, 02:29](1601 MB) -PASS -- TEST 'control_diag_debug_intel' [04:42, 02:33](1663 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:34, 04:44](1184 MB) - -PASS -- COMPILE 'atmaero_intel' [12:19, 11:14] -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 04:19](3013 MB) - -SYNOPSIS: -Starting Date/Time: 20240422 09:08:46 -Ending Date/Time: 20240422 09:36:22 -Total Time: 00h:27m:48s -Compiles Completed: 3/3 -Tests Completed: 12/13 -Failed Tests: -* TEST merra2_thompson_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_merra2_thompson_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_63459 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW -PASS -- COMPILE 'atm_dyn32_intel' [13:17, 12:33] -PASS -- TEST 'merra2_thompson_intel' [05:25, 02:47](1611 MB) +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 08:38] +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:42](1183 MB) SYNOPSIS: -Starting Date/Time: 20240422 10:29:36 -Ending Date/Time: 20240422 10:49:44 -Total Time: 00h:20m:17s +Starting Date/Time: 20240424 08:20:30 +Ending Date/Time: 20240424 08:35:15 +Total Time: 00h:14m:49s Compiles Completed: 1/1 Tests Completed: 1/1 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 09a3a5fd63..fd4adb3416 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 +7639d7a8818635cfa1836d63c56d424d895adb6d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) @@ -36,338 +36,272 @@ 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-20240419 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_187503 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_155270 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 18:05] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:36, 07:13](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 23:27] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:11, 13:54](1688 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:19, 14:54](1810 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:14, 07:26](946 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:10, 14:58](1671 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:34] -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:11, 24:23](1708 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 18:17] -PASS -- TEST 'cpld_control_p8_intel' [11:56, 08:22](3100 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:15, 08:09](3100 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:32, 05:10](3155 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:56, 08:17](3124 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 05:12](3177 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 06:42](3412 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:49, 07:54](3099 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:49, 07:16](3021 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:15, 08:16](3100 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:19, 10:22](3271 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:25, 07:27](3603 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:11, 13:05](4041 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:51, 09:19](4345 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:00, 08:04](3067 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 17:46] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:14, 05:10](1685 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:32, 05:23](1730 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:37] -PASS -- TEST 'cpld_debug_p8_intel' [13:32, 10:12](3132 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:11, 12:04] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:08, 06:01](1701 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:44] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:29, 05:27](1732 MB) - -PASS -- COMPILE 's2s_intel' [16:13, 15:56] -PASS -- TEST 'cpld_control_c48_intel' [08:38, 06:53](2664 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:14, 21:28] -PASS -- TEST 'cpld_control_p8_faster_intel' [10:42, 08:06](3098 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 22:30] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:22, 14:58](1700 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:09, 07:54](1000 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:06, 17:40](1681 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:12, 12:12] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:02, 26:53](1717 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:48] -PASS -- TEST 'control_flake_intel' [04:36, 03:38](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:14, 03:24](1568 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:14, 03:26](1580 MB) -PASS -- TEST 'control_latlon_intel' [04:03, 03:02](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 03:17](1569 MB) -PASS -- TEST 'control_c48_intel' [08:37, 06:42](1604 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:02, 05:39](723 MB) -PASS -- TEST 'control_c192_intel' [11:28, 10:03](1685 MB) -PASS -- TEST 'control_c384_intel' [20:53, 18:00](1984 MB) -PASS -- TEST 'control_c384gdas_intel' [19:51, 14:07](1188 MB) -PASS -- TEST 'control_stochy_intel' [02:38, 02:05](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:17](430 MB) -PASS -- TEST 'control_lndp_intel' [03:37, 02:08](628 MB) -PASS -- TEST 'control_iovr4_intel' [03:38, 02:37](623 MB) -PASS -- TEST 'control_iovr5_intel' [03:37, 02:37](623 MB) -PASS -- TEST 'control_p8_intel' [05:46, 03:18](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:28](1607 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 03:44](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [03:44, 01:52](790 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:43, 03:33](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:57](792 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:37, 03:21](1594 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:46](1686 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:10, 05:44](1606 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:57, 04:08](1657 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:06, 03:29](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [05:52, 03:40](1604 MB) -PASS -- TEST 'regional_control_intel' [06:20, 04:59](615 MB) -PASS -- TEST 'regional_restart_intel' [03:59, 02:59](789 MB) -PASS -- TEST 'regional_decomp_intel' [06:56, 05:15](615 MB) -PASS -- TEST 'regional_2threads_intel' [03:57, 02:54](759 MB) -PASS -- TEST 'regional_noquilt_intel' [05:57, 04:40](1154 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 05:01](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:53, 04:50](615 MB) -PASS -- TEST 'regional_wofs_intel' [07:55, 06:21](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:51] -PASS -- TEST 'rap_control_intel' [09:53, 07:17](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:32, 04:00](1187 MB) -PASS -- TEST 'rap_decomp_intel' [09:53, 07:22](1013 MB) -PASS -- TEST 'rap_2threads_intel' [09:02, 06:09](1099 MB) -PASS -- TEST 'rap_restart_intel' [05:40, 03:47](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:02, 06:52](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 07:09](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:37, 04:59](879 MB) -PASS -- TEST 'hrrr_control_intel' [05:44, 03:49](1004 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 03:56](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:44, 03:08](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:46, 01:59](837 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:59, 06:46](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:55, 08:12](1967 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:52, 08:00](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [13:10, 12:53] -PASS -- TEST 'control_csawmg_intel' [08:06, 06:41](696 MB) -PASS -- TEST 'control_ras_intel' [04:35, 03:26](657 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 12:08] -PASS -- TEST 'control_wam_intel' [03:36, 02:09](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:34] -PASS -- TEST 'control_p8_faster_intel' [05:53, 03:34](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [06:00, 04:41](614 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:13, 11:54] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:06, 03:03](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:14, 03:01](1589 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:34, 03:20](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:37, 03:03](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:06, 04:22](823 MB) -PASS -- TEST 'control_ras_debug_intel' [04:31, 03:12](794 MB) -PASS -- TEST 'control_diag_debug_intel' [04:14, 03:03](1641 MB) -PASS -- TEST 'control_debug_p8_intel' [05:06, 03:25](1618 MB) -PASS -- TEST 'regional_debug_intel' [18:03, 16:52](633 MB) -PASS -- TEST 'rap_control_debug_intel' [06:41, 05:08](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:35, 04:57](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:39, 05:05](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 05:03](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:40, 05:13](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:53, 05:18](1251 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:38, 05:06](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 05:13](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:21](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:13](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:41, 05:17](1166 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:40, 05:09](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:42, 08:25](1166 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 05:16](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:58](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:38, 05:04](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:51, 08:28](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 08:38] -PASS -- TEST 'control_wam_debug_intel' [05:29, 04:54](396 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 12:07] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:50, 03:54](1053 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:30, 06:13](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:24, 03:20](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:22, 05:22](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:48](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:31](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:28, 04:30](784 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 02:08](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:14, 14:32] -PASS -- TEST 'conus13km_control_intel' [05:41, 02:29](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:02, 01:17](1074 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:03, 01:28](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 12:04] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:52, 04:29](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 09:01] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:52](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:03](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [16:28, 14:16](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:13, 14:06](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:05, 08:22](1111 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:02, 14:42](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:13, 08:47] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:41, 04:59](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [17:11, 16:18] -PASS -- TEST 'hafs_regional_atm_intel' [07:55, 05:26](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:53, 04:42](1059 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:08, 07:42](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:31, 11:39](789 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:16, 13:02](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:28, 05:19](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:48, 06:46](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:56](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:38, 08:17](444 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:16, 03:48](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:23, 03:45](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:03, 04:49](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:47, 01:45](401 MB) -PASS -- TEST 'gnv1_nested_intel' [05:44, 04:05](773 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:52] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:24, 12:49](584 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:15, 18:29] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:24, 07:50](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:54](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 16:36] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:22, 06:09](787 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 15:10] -PASS -- TEST 'hafs_regional_docn_intel' [08:46, 06:08](747 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 06:08](731 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:59, 20:06](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 11:39] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:42](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:37](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:34, 02:34](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:30, 02:39](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:35](637 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:32, 02:41](745 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:42](759 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:34](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:18, 07:21](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:58, 07:21](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:43](758 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:35, 04:45](2013 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:45](2011 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 07:50] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:29, 05:21](741 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:52] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:41](758 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 03:48] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:32, 01:53](319 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:30, 01:29](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:50, 01:06](456 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 15:14] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 07:02](1633 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:21, 07:16](1633 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:14, 03:32](837 MB) - -PASS -- COMPILE 'atmw_intel' [15:12, 14:43] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:44, 02:29](1648 MB) - -PASS -- COMPILE 'atmaero_intel' [13:13, 12:52] -PASS -- TEST 'atmaero_control_p8_intel' [08:02, 06:02](2946 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:07, 06:31](3012 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:10, 09:49] -PASS -- TEST 'regional_atmaq_debug_intel' [24:32, 18:24](4484 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:12, 20:57] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:01, 07:26](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:16, 25:05] +PASS -- TEST 'cpld_control_gfsv17_intel' [17:43, 13:45](1687 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 14:45](1808 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:11](944 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:22, 15:22](1669 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:49] +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:10, 24:28](1706 MB) + +PASS -- COMPILE 's2swa_intel' [08:20, 07:49] +PASS -- TEST 'cpld_control_p8_intel' [14:09, 08:24](3097 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:48, 08:27](3097 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:18, 05:14](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:56, 08:45](3121 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:18, 05:44](3174 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:44, 07:07](3410 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [33:57, 08:19](3095 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:47, 07:27](3019 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:00, 08:19](3098 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [24:12, 10:42](3264 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [22:41, 07:26](3601 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [45:00, 13:46](4038 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:40, 09:26](4346 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:24, 07:52](3065 MB) + +PASS -- COMPILE 's2sw_intel' [20:16, 19:28] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 05:01](1686 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:28, 05:29](1729 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:24] +PASS -- TEST 'cpld_debug_p8_intel' [17:56, 10:09](3129 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:28] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:29, 05:58](1699 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:13, 17:17] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:14, 05:34](1727 MB) + +PASS -- COMPILE 's2s_intel' [18:13, 17:15] +PASS -- TEST 'cpld_control_c48_intel' [09:11, 06:56](2664 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:12, 23:04] +PASS -- TEST 'cpld_control_p8_faster_intel' [14:58, 08:16](3100 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:14, 25:21] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:57, 15:36](1700 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:21, 08:10](999 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:56, 17:34](1681 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 13:59] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:51, 26:32](1718 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:14, 15:00] +PASS -- TEST 'control_flake_intel' [05:20, 03:48](675 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:14, 03:11](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:25, 03:07](1580 MB) +PASS -- TEST 'control_latlon_intel' [05:03, 03:03](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:06, 03:08](1568 MB) +PASS -- TEST 'control_c48_intel' [09:35, 06:40](1604 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:45, 05:40](724 MB) +PASS -- TEST 'control_c192_intel' [13:00, 10:02](1682 MB) +PASS -- TEST 'control_c384_intel' [23:55, 18:02](1984 MB) +PASS -- TEST 'control_c384gdas_intel' [28:28, 14:13](1185 MB) +PASS -- TEST 'control_stochy_intel' [03:20, 01:57](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:48, 01:40](431 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:52](628 MB) +PASS -- TEST 'control_iovr4_intel' [04:33, 02:38](623 MB) +PASS -- TEST 'control_iovr5_intel' [04:33, 02:38](622 MB) +PASS -- TEST 'control_p8_intel' [06:51, 03:24](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:31, 03:34](1607 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:04, 03:25](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [04:31, 01:52](789 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:34](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:31, 01:47](792 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:51, 03:29](1594 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:39, 02:49](1687 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:25, 05:27](1606 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:07, 04:19](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:19, 03:41](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [08:01, 04:01](1604 MB) +PASS -- TEST 'regional_control_intel' [07:40, 05:02](615 MB) +PASS -- TEST 'regional_restart_intel' [04:26, 02:40](789 MB) +PASS -- TEST 'regional_decomp_intel' [07:14, 05:06](615 MB) +PASS -- TEST 'regional_2threads_intel' [05:27, 02:55](756 MB) +PASS -- TEST 'regional_noquilt_intel' [07:09, 04:41](1155 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:02, 04:45](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:44](615 MB) +PASS -- TEST 'regional_wofs_intel' [09:36, 06:23](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [14:17, 14:07] +PASS -- TEST 'rap_control_intel' [09:22, 06:57](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:25, 04:25](1187 MB) +PASS -- TEST 'rap_decomp_intel' [09:39, 07:08](1009 MB) +PASS -- TEST 'rap_2threads_intel' [08:56, 06:13](1097 MB) +PASS -- TEST 'rap_restart_intel' [06:15, 03:59](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:14, 06:49](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:41, 07:11](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:08, 04:52](880 MB) +PASS -- TEST 'hrrr_control_intel' [06:34, 03:53](1005 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:48, 04:20](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:54, 03:13](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:45, 01:58](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:06, 07:05](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:04, 08:02](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:57, 08:18](1952 MB) + +PASS -- COMPILE 'csawmg_intel' [14:17, 13:44] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:51](695 MB) +PASS -- TEST 'control_ras_intel' [04:50, 03:31](657 MB) + +PASS -- COMPILE 'wam_intel' [14:13, 13:56] +PASS -- TEST 'control_wam_intel' [03:39, 02:19](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:12, 17:00] +PASS -- TEST 'control_p8_faster_intel' [06:45, 03:19](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [06:22, 04:38](614 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:12, 17:04] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:29, 03:07](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:56](1589 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:54, 03:11](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:55](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:22, 04:32](824 MB) +PASS -- TEST 'control_ras_debug_intel' [03:51, 02:53](793 MB) +PASS -- TEST 'control_diag_debug_intel' [04:49, 03:05](1640 MB) +PASS -- TEST 'control_debug_p8_intel' [05:19, 03:18](1618 MB) +PASS -- TEST 'regional_debug_intel' [18:22, 16:20](632 MB) +PASS -- TEST 'rap_control_debug_intel' [06:46, 05:09](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:42, 05:03](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:53, 05:00](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:52, 05:17](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:35, 05:19](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:58, 05:11](1251 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:44, 05:06](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 05:13](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:50, 05:14](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:43, 05:09](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:47, 05:00](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:54, 05:20](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:55, 08:08](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:49, 05:14](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:53, 05:56](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:59, 05:04](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:42, 08:28](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [15:17, 14:40] +PASS -- TEST 'control_wam_debug_intel' [09:47, 05:16](396 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 13:22] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [21:06, 03:47](1053 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:34, 05:56](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:52, 03:24](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:29, 05:21](950 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:10, 02:48](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [12:53, 03:40](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:33, 04:21](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:56, 02:07](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:13, 20:51] +PASS -- TEST 'conus13km_control_intel' [16:09, 02:09](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:02, 01:13](1074 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:21, 01:49](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:37] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:30, 04:40](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 10:41] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:53, 05:11](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:57, 05:00](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [25:53, 14:08](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:43, 14:19](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [19:40, 08:24](1108 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:35, 14:27](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:18, 34:50] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:59, 05:07](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [18:15, 17:13] +PASS -- TEST 'hafs_regional_atm_intel' [15:40, 05:21](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:44, 04:48](1059 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:58, 07:39](751 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:06, 11:30](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:16, 12:51](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:00, 05:21](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:37, 06:49](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [12:40, 03:02](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:39, 08:15](444 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:59, 03:44](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:06, 03:47](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:39, 04:51](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:07, 01:46](402 MB) +PASS -- TEST 'gnv1_nested_intel' [09:11, 04:19](766 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:16, 11:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:32, 13:03](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:12, 19:57] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:12, 07:51](618 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:15, 07:59](788 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [55:18, 54:16] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:48, 06:01](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:12, 16:22] +PASS -- TEST 'hafs_regional_docn_intel' [08:47, 06:08](745 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:33, 06:14](730 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:12, 20:07](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:11, 12:29] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:50, 02:37](758 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:38, 01:39](734 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:36, 02:38](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:53, 02:37](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:39, 02:28](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:47, 02:39](757 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:34](758 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:42, 02:26](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:46, 08:18](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:35, 08:17](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:44](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:44, 04:46](2012 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:55, 04:46](2011 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 08:26] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:50, 05:40](729 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:14, 12:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:46](758 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 04:59] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:27, 02:59](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:26, 02:24](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:22, 01:23](456 MB) + +PASS -- COMPILE 'atml_intel' [38:14, 37:39] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:44, 07:32](1633 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:44, 07:37](1633 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:44, 04:24](837 MB) + +PASS -- COMPILE 'atmw_intel' [16:13, 15:59] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:21, 02:21](1648 MB) + +PASS -- COMPILE 'atmaero_intel' [16:16, 15:16] +PASS -- TEST 'atmaero_control_p8_intel' [11:03, 06:33](2946 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:03, 06:50](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:55, 06:49](3019 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:11, 11:13] +PASS -- TEST 'regional_atmaq_debug_intel' [29:03, 18:39](4495 MB) SYNOPSIS: -Starting Date/Time: 20240421 01:23:25 -Ending Date/Time: 20240421 02:55:53 -Total Time: 01h:33m:32s +Starting Date/Time: 20240423 15:27:48 +Ending Date/Time: 20240423 18:09:15 +Total Time: 02h:42m:47s Compiles Completed: 37/37 -Tests Completed: 178/179 -Failed Tests: -* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2173/ufs-weather-model/tests/logs/log_gaea/run_atmaero_control_p8_rad_micro_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_229035 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: atmaero_control_p8_rad_micro -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atmaero_intel' [13:11, 12:52] -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:46](3019 MB) - -SYNOPSIS: -Starting Date/Time: 20240422 12:23:00 -Ending Date/Time: 20240422 12:46:49 -Total Time: 00h:24m:06s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 179/179 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 59eef863a6..fac7b77819 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 +bcc92327e9e244c4ca9db1707f4df177799426b2 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -12,7 +12,7 @@ Submodule hashes used in testing: da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -25,419 +25,364 @@ 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-20240419 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_686177 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_3337654 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:00] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:21, 05:33](3188 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:28] -PASS -- TEST 'cpld_control_gfsv17_intel' [22:09, 17:09](1750 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:18, 17:47](2042 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 08:03](1119 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:04, 20:01](1652 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 04:40] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:07, 23:32](1686 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 13:01] -PASS -- TEST 'cpld_control_p8_intel' [07:13, 05:46](3235 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:25, 05:44](3220 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:25, 04:50](3272 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:13, 05:47](3256 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:25, 04:50](3287 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:12, 05:26](3557 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:16, 05:43](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:15, 04:44](3076 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:24, 06:10](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:21, 10:14](3351 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:41, 06:05](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:39, 09:39](4075 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:37, 05:54](4370 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:16, 05:22](3195 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 12:34] -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:56, 04:43](1743 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:01, 04:19](1800 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:12, 04:40] -PASS -- TEST 'cpld_debug_p8_intel' [11:10, 08:30](3236 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:14] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:05, 05:41](1747 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:12, 11:22] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:06, 04:20](1782 MB) - -PASS -- COMPILE 's2s_intel' [12:12, 11:44] -PASS -- TEST 'cpld_control_c48_intel' [10:44, 09:24](2828 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:27] -PASS -- TEST 'cpld_control_p8_faster_intel' [13:19, 06:39](3232 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:59] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:05, 17:22](1771 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 08:23](1178 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:00, 19:40](1692 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:10] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:59, 25:13](1721 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:40] -PASS -- TEST 'control_flake_intel' [04:25, 03:17](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:52, 02:51](1606 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:54, 02:57](1614 MB) -PASS -- TEST 'control_latlon_intel' [08:48, 02:52](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:55, 02:54](1607 MB) -PASS -- TEST 'control_c48_intel' [08:50, 07:38](1764 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:25, 06:24](863 MB) -PASS -- TEST 'control_c192_intel' [15:09, 10:32](1754 MB) -PASS -- TEST 'control_c384_intel' [15:59, 10:29](2009 MB) -PASS -- TEST 'control_c384gdas_intel' [13:45, 07:57](1408 MB) -PASS -- TEST 'control_stochy_intel' [06:22, 01:36](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:24, 00:57](512 MB) -PASS -- TEST 'control_lndp_intel' [06:21, 01:32](662 MB) -PASS -- TEST 'control_iovr4_intel' [07:23, 02:26](655 MB) -PASS -- TEST 'control_iovr5_intel' [06:23, 02:28](657 MB) -PASS -- TEST 'control_p8_intel' [07:45, 02:57](1629 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 02:58](1631 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:02, 02:50](1635 MB) -PASS -- TEST 'control_restart_p8_intel' [02:51, 01:36](897 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:57, 02:55](1623 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:35](941 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:54, 03:02](1620 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:44](1718 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:42, 05:11](1632 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:59, 03:56](1697 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:59, 02:57](1640 MB) -PASS -- TEST 'merra2_thompson_intel' [04:56, 03:13](1646 MB) -PASS -- TEST 'regional_control_intel' [06:43, 05:08](854 MB) -PASS -- TEST 'regional_restart_intel' [03:41, 02:43](1019 MB) -PASS -- TEST 'regional_decomp_intel' [07:42, 05:30](851 MB) -PASS -- TEST 'regional_2threads_intel' [04:43, 03:13](847 MB) -PASS -- TEST 'regional_noquilt_intel' [08:44, 06:35](1368 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 06:36](852 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:16, 05:11](856 MB) -PASS -- TEST 'regional_wofs_intel' [08:41, 06:43](1909 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 10:38] -PASS -- TEST 'rap_control_intel' [08:41, 07:41](1113 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:03](1299 MB) -PASS -- TEST 'rap_decomp_intel' [09:37, 08:06](1042 MB) -PASS -- TEST 'rap_2threads_intel' [08:34, 07:15](1152 MB) -PASS -- TEST 'rap_restart_intel' [04:43, 04:02](1104 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:40](1112 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:38, 08:10](1045 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:47](1132 MB) -PASS -- TEST 'hrrr_control_intel' [05:39, 03:55](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:04](1039 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 03:41](1113 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:28](1016 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:44, 07:33](1104 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:11](1997 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:06](2063 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:14] -PASS -- TEST 'control_csawmg_intel' [06:44, 05:59](755 MB) -PASS -- TEST 'control_ras_intel' [04:24, 03:14](755 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:11, 03:41] -PASS -- TEST 'control_csawmg_gnu' [09:44, 08:18](550 MB) - -PASS -- COMPILE 'wam_intel' [10:12, 09:50] -PASS -- TEST 'control_wam_intel' [02:23, 02:04](650 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:32] -PASS -- TEST 'control_p8_faster_intel' [03:54, 02:37](1636 MB) -PASS -- TEST 'regional_control_faster_intel' [05:40, 04:42](847 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 04:54] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 02:35](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:29](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:23, 02:59](829 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:39](823 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:39, 04:03](867 MB) -PASS -- TEST 'control_ras_debug_intel' [03:22, 02:42](830 MB) -PASS -- TEST 'control_diag_debug_intel' [03:50, 02:44](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [03:47, 02:47](1651 MB) -PASS -- TEST 'regional_debug_intel' [17:43, 16:48](836 MB) -PASS -- TEST 'rap_control_debug_intel' [05:23, 04:50](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:23, 04:46](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:44](1210 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:53](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:56](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:10](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 05:00](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 04:53](1208 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:56](1209 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:59](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:45](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:51](1213 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 07:51](1203 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:42](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 05:58](1209 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:43](1208 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:33](1211 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:34] -PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:08](533 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:11, 03:06] -PASS -- TEST 'control_wam_debug_intel' [06:22, 05:01](520 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:50] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:00, 03:50](1166 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 06:22](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:31, 03:21](984 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:05](1090 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 03:07](963 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:30, 03:34](937 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:38, 04:49](1048 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:49](950 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:46] -PASS -- TEST 'conus13km_control_intel' [02:52, 02:03](1203 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:39, 00:52](1126 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:12](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 11:35] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:08](989 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:45](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:43](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [15:45, 14:24](1234 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 14:42](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:15](1160 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:29](1307 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:21] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:59](1126 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 13:09] -PASS -- TEST 'hafs_regional_atm_intel' [06:19, 04:52](755 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:44](1113 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:49](837 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 13:15](864 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:56](894 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:55, 05:25](504 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:21, 06:34](519 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:45, 02:37](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:00, 07:05](480 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:43, 03:37](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:47, 03:24](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:55, 04:00](597 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:38, 01:12](410 MB) -PASS -- TEST 'gnv1_nested_intel' [05:42, 04:00](806 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:42, 03:48] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:59](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:12, 13:34] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:00, 08:42](677 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:15, 08:45](747 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:15] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:07, 06:21](737 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:12, 12:50] -PASS -- TEST 'hafs_regional_docn_intel' [08:12, 06:21](835 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:26](818 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 16:00](1215 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:12, 06:00] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:43](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:36](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:36](1037 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:36](1024 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:35](1016 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:38](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:39](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:33](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:22, 06:06](1052 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:22, 06:05](1051 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:39](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:48](2494 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:51](2445 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:28] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:15](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:28] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:36](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 00:57] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:44](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:45](329 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:28](330 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 11:33] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:03, 04:06](1629 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 04:04](1616 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:10](918 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 10:39] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:40](1682 MB) - -PASS -- COMPILE 'atmaero_intel' [11:12, 10:41] -PASS -- TEST 'atmaero_control_p8_intel' [05:57, 03:57](3019 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:53](3092 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:28] -PASS -- TEST 'regional_atmaq_debug_intel' [26:54, 24:27](4453 MB) - -PASS -- COMPILE 'atm_gnu' [04:12, 03:40] -PASS -- TEST 'control_c48_gnu' [12:43, 11:09](1544 MB) -PASS -- TEST 'control_stochy_gnu' [04:21, 03:22](507 MB) -PASS -- TEST 'control_ras_gnu' [05:21, 04:45](515 MB) -PASS -- TEST 'control_p8_gnu' [05:57, 04:41](1268 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 04:32](1270 MB) -PASS -- TEST 'control_flake_gnu' [11:23, 10:38](550 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:12, 03:44] -PASS -- TEST 'rap_control_gnu' [12:32, 11:04](858 MB) -PASS -- TEST 'rap_decomp_gnu' [11:34, 11:03](859 MB) -PASS -- TEST 'rap_2threads_gnu' [10:35, 09:50](947 MB) -PASS -- TEST 'rap_restart_gnu' [06:36, 05:20](584 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:37, 10:50](857 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:37, 10:47](859 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:36, 08:00](589 MB) -PASS -- TEST 'hrrr_control_gnu' [06:31, 05:35](855 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:28, 05:36](845 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:35, 05:02](932 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:33](859 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 02:53](574 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:49](666 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:43, 10:24](858 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:38] -PASS -- TEST 'control_diag_debug_gnu' [02:47, 01:37](1289 MB) -PASS -- TEST 'regional_debug_gnu' [11:40, 10:41](562 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:33](873 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:21, 02:30](874 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:30](877 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:20, 02:32](877 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:32, 02:49](961 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 04:03](871 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:34](876 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:33](873 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:32](506 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:40](500 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:38](1260 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:35](872 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:45](880 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:11](884 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:12, 01:58] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:12, 03:41] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:19](720 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:34, 04:59](714 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:42](764 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:27, 04:29](757 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 05:09](715 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:32, 06:54](564 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:31](550 MB) -PASS -- TEST 'conus13km_control_gnu' [03:55, 03:07](887 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:44, 05:31](888 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:45, 01:45](561 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:12, 05:21] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:36](742 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:12, 03:37] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:29](723 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:27](721 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:48, 06:47](899 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:42, 06:52](590 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:39, 07:31](903 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:40, 06:54](969 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:12, 03:43] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:37](745 MB) - -PASS -- COMPILE 's2swa_gnu' [15:12, 14:35] - -PASS -- COMPILE 's2s_gnu' [15:12, 14:27] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:14, 09:59](1360 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:34] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:12] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:56, 22:02](1327 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:21] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:55, 16:34](1334 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:04] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:01](699 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [12:43, 12:43] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:23, 05:34](3166 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:58, 15:58] +PASS -- TEST 'cpld_control_gfsv17_intel' [17:56, 17:09](1739 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:47, 17:50](2011 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:56, 08:04](1097 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:58, 19:17](1630 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 04:18] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:43, 22:57](1691 MB) + +PASS -- COMPILE 's2swa_intel' [12:44, 12:44] +PASS -- TEST 'cpld_control_p8_intel' [06:45, 05:51](3196 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:40, 05:48](3208 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:29, 03:29](3257 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [06:51, 05:58](3241 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:44, 03:35](3243 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:16, 05:31](3560 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:40, 05:53](3192 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 04:46](3053 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:37, 05:46](3189 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [11:56, 10:20](3317 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:56, 06:33](3550 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:13, 09:51](4144 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:44, 05:56](4342 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:27, 05:38](3150 MB) + +PASS -- COMPILE 's2sw_intel' [12:19, 12:19] +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:51, 05:05](1735 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:30, 04:42](1767 MB) + +PASS -- COMPILE 's2swa_debug_intel' [04:19, 04:19] +PASS -- TEST 'cpld_debug_p8_intel' [09:49, 08:47](3218 MB) + +PASS -- COMPILE 's2sw_debug_intel' [03:59, 03:59] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:38, 05:48](1765 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:36, 11:36] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:27, 04:38](1755 MB) + +PASS -- COMPILE 's2s_intel' [11:15, 11:15] +PASS -- TEST 'cpld_control_c48_intel' [10:11, 09:40](2832 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:27, 16:27] +PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:33](3193 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:20, 15:20] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:00, 17:11](1757 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:58, 08:01](1149 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:37, 19:49](1666 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:18] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:05](1678 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:13, 11:13] +PASS -- TEST 'control_flake_intel' [03:33, 03:21](686 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:35, 02:53](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:34, 02:58](1580 MB) +PASS -- TEST 'control_latlon_intel' [03:24, 02:56](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:31, 02:57](1576 MB) +PASS -- TEST 'control_c48_intel' [08:16, 07:38](1744 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:44, 06:22](850 MB) +PASS -- TEST 'control_c192_intel' [11:19, 10:35](1712 MB) +PASS -- TEST 'control_c384_intel' [11:52, 10:30](1992 MB) +PASS -- TEST 'control_c384gdas_intel' [10:40, 08:11](1353 MB) +PASS -- TEST 'control_stochy_intel' [01:52, 01:37](643 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:58](483 MB) +PASS -- TEST 'control_lndp_intel' [01:47, 01:32](641 MB) +PASS -- TEST 'control_iovr4_intel' [02:42, 02:30](639 MB) +PASS -- TEST 'control_iovr5_intel' [02:38, 02:25](638 MB) +PASS -- TEST 'control_p8_intel' [03:40, 02:58](1609 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:41, 02:59](1603 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 02:52](1611 MB) +PASS -- TEST 'control_restart_p8_intel' [02:11, 01:36](875 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:34, 02:57](1584 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:15, 01:37](923 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:39, 03:05](1578 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:18, 02:44](1698 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:46, 05:16](1595 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:36, 03:55](1678 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:41, 02:58](1617 MB) +PASS -- TEST 'merra2_thompson_intel' [03:59, 03:17](1619 MB) +PASS -- TEST 'regional_control_intel' [05:39, 05:09](834 MB) +PASS -- TEST 'regional_restart_intel' [03:10, 02:45](1005 MB) +PASS -- TEST 'regional_decomp_intel' [05:58, 05:30](827 MB) +PASS -- TEST 'regional_2threads_intel' [03:44, 03:15](825 MB) +PASS -- TEST 'regional_noquilt_intel' [05:34, 05:09](1349 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 05:13](837 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 05:11](836 MB) +PASS -- TEST 'regional_wofs_intel' [07:07, 06:41](1897 MB) + +PASS -- COMPILE 'rrfs_intel' [10:35, 10:35] +PASS -- TEST 'rap_control_intel' [08:09, 07:41](1097 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 04:05](1287 MB) +PASS -- TEST 'rap_decomp_intel' [08:29, 08:07](1023 MB) +PASS -- TEST 'rap_2threads_intel' [07:49, 07:26](1160 MB) +PASS -- TEST 'rap_restart_intel' [04:33, 04:01](1082 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:09, 07:43](1094 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:27, 08:06](1025 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:25, 05:56](1122 MB) +PASS -- TEST 'hrrr_control_intel' [04:18, 03:57](1039 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:26, 04:05](1031 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:04, 03:38](1103 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:29, 02:10](990 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:03, 07:35](1088 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:33, 09:19](1965 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 09:02](2046 MB) + +PASS -- COMPILE 'csawmg_intel' [10:16, 10:16] +PASS -- TEST 'control_csawmg_intel' [06:31, 06:02](740 MB) +PASS -- TEST 'control_ras_intel' [03:25, 03:15](739 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:34, 03:33] +PASS -- TEST 'control_csawmg_gnu' [08:53, 08:24](540 MB) + +PASS -- COMPILE 'wam_intel' [09:55, 09:55] +PASS -- TEST 'control_wam_intel' [02:12, 02:02](638 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:41, 10:41] +PASS -- TEST 'control_p8_faster_intel' [03:21, 02:39](1610 MB) +PASS -- TEST 'regional_control_faster_intel' [05:18, 04:47](829 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:47, 04:47] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:20, 02:45](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:15, 02:43](1577 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:23, 03:13](780 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:54, 02:43](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:38, 04:08](832 MB) +PASS -- TEST 'control_ras_debug_intel' [03:09, 02:57](790 MB) +PASS -- TEST 'control_diag_debug_intel' [03:23, 02:46](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [03:32, 02:59](1605 MB) +PASS -- TEST 'regional_debug_intel' [17:47, 17:20](810 MB) +PASS -- TEST 'rap_control_debug_intel' [05:12, 04:58](1169 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:08, 04:54](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 04:59](1170 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:13, 04:59](1171 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 05:01](1170 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:44, 05:10](1253 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 05:04](1174 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 05:17](1182 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:37, 05:21](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 04:59](1186 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:10, 04:56](1185 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 05:08](1167 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:26, 08:11](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 05:00](1181 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:36, 06:25](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:18, 05:06](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:46, 08:22](1171 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:43, 02:43] +PASS -- TEST 'control_csawmg_debug_gnu' [02:36, 02:10](508 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:16, 03:15] +PASS -- TEST 'control_wam_debug_intel' [05:11, 04:59](468 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 10:11] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:36, 03:53](1140 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:44, 06:24](1032 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 03:25](985 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:28, 06:06](1067 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:38, 03:14](946 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:00, 03:40](916 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:25, 04:50](1009 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:13, 01:52](916 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:24, 12:24] +PASS -- TEST 'conus13km_control_intel' [02:54, 02:06](1187 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:24, 00:53](1099 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:49, 01:15](1090 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 10:18] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:49, 04:14](969 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:42, 03:42] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:03, 04:51](1093 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:59, 04:47](1087 MB) +PASS -- TEST 'conus13km_debug_intel' [15:27, 14:54](1269 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:16, 14:40](920 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:47, 08:20](1143 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:11, 14:44](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:22, 03:22] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:02, 04:52](1134 MB) + +PASS -- COMPILE 'hafsw_intel' [11:34, 11:33] +PASS -- TEST 'hafs_regional_atm_intel' [06:01, 05:04](742 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 06:03](1118 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:59, 06:56](838 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:33, 13:35](863 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:13, 15:11](896 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 05:39](505 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:00, 06:58](521 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:07, 02:38](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:33, 07:32](470 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 03:54](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:19, 03:41](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:56, 04:12](592 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:13](402 MB) +PASS -- TEST 'gnv1_nested_intel' [04:44, 04:12](802 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:50, 03:50] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:29, 12:49](572 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:00, 12:00] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 08:52](672 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:39, 08:50](705 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:56, 11:56] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:27, 06:40](737 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:14, 11:13] +PASS -- TEST 'hafs_regional_docn_intel' [07:57, 06:49](829 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:57, 06:51](820 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:44, 16:03](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:19, 06:18] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:58, 02:49](1149 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:52, 01:41](1095 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:47, 02:38](1022 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:47, 02:37](1025 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:47, 02:39](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:51, 02:44](1146 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:51, 02:43](1134 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:47, 02:38](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:29, 06:25](1061 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:12](1041 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:51, 02:45](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:09, 03:57](2486 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:05, 03:56](2441 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [02:59, 02:58] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:36, 06:27](1056 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:58, 05:56] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:49, 02:40](1146 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:05, 01:05] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:15, 00:53](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:16, 00:58](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](328 MB) + +PASS -- COMPILE 'atml_intel' [11:55, 11:54] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:05, 04:16](1561 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:00, 04:14](1589 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:14, 02:38](876 MB) + +PASS -- COMPILE 'atmw_intel' [10:55, 10:54] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:24, 01:46](1647 MB) + +PASS -- COMPILE 'atmaero_intel' [10:42, 10:41] +PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:58](3039 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:58](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:33, 05:01](3093 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:36, 03:35] +PASS -- TEST 'regional_atmaq_debug_intel' [25:40, 24:01](4452 MB) + +PASS -- COMPILE 'atm_gnu' [03:52, 03:51] +PASS -- TEST 'control_c48_gnu' [11:48, 11:17](1544 MB) +PASS -- TEST 'control_stochy_gnu' [03:36, 03:23](507 MB) +PASS -- TEST 'control_ras_gnu' [04:52, 04:39](515 MB) +PASS -- TEST 'control_p8_gnu' [05:29, 04:40](1266 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:22, 04:38](1267 MB) +PASS -- TEST 'control_flake_gnu' [10:46, 10:33](549 MB) + +PASS -- COMPILE 'rrfs_gnu' [03:52, 03:51] +PASS -- TEST 'rap_control_gnu' [11:06, 10:41](855 MB) +PASS -- TEST 'rap_decomp_gnu' [11:22, 10:59](858 MB) +PASS -- TEST 'rap_2threads_gnu' [10:06, 09:42](940 MB) +PASS -- TEST 'rap_restart_gnu' [06:21, 05:40](587 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:55, 10:29](858 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:27, 11:01](858 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:59, 08:19](588 MB) +PASS -- TEST 'hrrr_control_gnu' [05:52, 05:28](857 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:54, 05:30](847 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:19, 04:56](928 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:07, 05:41](856 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:54](572 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:56](667 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:09, 10:33](855 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:40, 03:39] +PASS -- TEST 'control_diag_debug_gnu' [02:26, 01:46](1285 MB) +PASS -- TEST 'regional_debug_gnu' [11:44, 11:12](568 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:10, 02:54](871 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:05, 02:47](871 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:47, 02:36](874 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:50, 02:40](878 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:14, 02:52](960 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 04:06](870 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:54, 02:40](835 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:54, 02:42](867 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:57, 01:42](506 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:03, 01:50](499 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:22, 01:45](1253 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:58, 02:45](871 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:11, 02:54](874 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 04:19](879 MB) + +PASS -- COMPILE 'wam_debug_gnu' [01:53, 01:52] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:39, 03:39] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:55, 09:28](712 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:28, 05:04](713 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:04, 08:38](765 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:59, 04:34](760 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 05:11](713 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:42, 07:08](550 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:59, 02:36](532 MB) +PASS -- TEST 'conus13km_control_gnu' [03:59, 03:16](869 MB) +PASS -- TEST 'conus13km_2threads_gnu' [05:38, 05:06](874 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:22, 01:52](546 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:27, 05:26] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:22, 05:53](738 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:41, 03:40] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:43, 02:30](696 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:45, 02:32](699 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:36, 06:57](870 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:33, 06:59](559 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:30, 07:02](871 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:30, 06:55](936 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:41, 03:40] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:57, 02:40](720 MB) + +PASS -- COMPILE 's2swa_gnu' [14:39, 14:38] + +PASS -- COMPILE 's2s_gnu' [14:37, 14:37] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:44, 06:42](1341 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [02:33, 02:32] + +PASS -- COMPILE 's2sw_pdlib_gnu' [14:17, 14:17] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:22, 22:25](1308 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:23, 02:22] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:52, 12:56](1306 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [14:14, 14:13] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:06](696 MB) SYNOPSIS: -Starting Date/Time: 20240421 00:24:06 -Ending Date/Time: 20240421 02:15:52 -Total Time: 01h:52m:03s +Starting Date/Time: 20240423 18:57:22 +Ending Date/Time: 20240424 03:03:55 +Total Time: 08h:06m:50s Compiles Completed: 53/53 -Tests Completed: 238/239 -Failed Tests: -* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2173/ufs-weather-model/tests/logs/log_hera/run_atmaero_control_p8_rad_micro_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 HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -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-20240419 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_24155 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: atmaero_control_p8_rad_micro -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atmaero_intel' [14:12, 10:40] -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:40, 05:00](3094 MB) - -SYNOPSIS: -Starting Date/Time: 20240422 16:20:37 -Ending Date/Time: 20240422 16:43:49 -Total Time: 00h:23m:20s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 239/239 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 9a94f7e473..e5677021cf 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 +fe4bb76565de0a5f3261b276fa392d65cb046e96 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) @@ -36,472 +36,359 @@ 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-20240419 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1104065 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_12578 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:11, 10:30] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:12, 07:43](1892 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:31] -PASS -- TEST 'cpld_control_gfsv17_intel' [22:29, 13:22](1766 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:52, 14:22](2146 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:43, 06:37](1196 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:23, 15:33](1687 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 04:44] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:30, 20:57](1730 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 11:27] -PASS -- TEST 'cpld_control_p8_intel' [15:11, 07:46](2077 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:27, 07:47](2084 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:23, 04:20](1951 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:11, 07:43](1972 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:20, 04:24](1731 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:04, 08:59](2492 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:03, 07:46](2066 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:07, 06:32](1889 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:25, 07:37](2061 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:04, 15:03](2811 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:01](2922 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:27, 10:44](3660 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:17, 06:52](3624 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:06, 04:58](2026 MB) - -PASS -- COMPILE 's2sw_intel' [11:11, 10:42] -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:02, 07:01](1774 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:13, 04:01](1831 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:14] -PASS -- TEST 'cpld_debug_p8_intel' [09:14, 06:56](2063 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:59] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:13, 04:52](1788 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:11, 09:19] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 03:57](1830 MB) - -PASS -- COMPILE 's2s_intel' [09:10, 08:56] -PASS -- TEST 'cpld_control_c48_intel' [08:56, 07:19](2839 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:37] -PASS -- TEST 'cpld_control_p8_faster_intel' [17:26, 07:18](2094 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:48] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 14:27](1809 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:19, 06:45](1280 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:06, 15:22](1742 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:58] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:09, 21:24](1765 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:45] -PASS -- TEST 'control_flake_intel' [11:23, 02:51](706 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:33, 05:44](864 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB) -PASS -- TEST 'control_c384gdas_intel' [22:17, 07:24](1530 MB) -PASS -- TEST 'control_stochy_intel' [08:23, 01:25](672 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:32, 00:55](546 MB) -PASS -- TEST 'control_lndp_intel' [10:21, 01:22](670 MB) -PASS -- TEST 'control_iovr4_intel' [13:28, 02:04](661 MB) -PASS -- TEST 'control_iovr5_intel' [12:23, 02:06](664 MB) -PASS -- TEST 'control_p8_intel' [10:51, 02:40](1640 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:03, 02:42](1635 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:58, 02:32](1637 MB) -PASS -- TEST 'control_restart_p8_intel' [07:59, 01:29](923 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:55, 02:38](1635 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [09:05, 01:38](982 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:53, 02:42](1638 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:51, 02:27](1731 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:38, 04:39](1650 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:03, 03:30](1719 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:09, 02:33](1652 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB) -PASS -- TEST 'regional_control_intel' [08:38, 04:36](960 MB) -PASS -- TEST 'regional_restart_intel' [07:39, 02:34](1107 MB) -PASS -- TEST 'regional_decomp_intel' [08:32, 04:56](946 MB) -PASS -- TEST 'regional_2threads_intel' [06:33, 02:58](917 MB) -PASS -- TEST 'regional_noquilt_intel' [08:34, 04:29](1488 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:37, 04:39](958 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:30, 04:59](943 MB) -PASS -- TEST 'regional_wofs_intel' [08:31, 05:48](2084 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 07:51] -PASS -- TEST 'rap_control_intel' [12:12, 06:39](1204 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 03:46](1454 MB) -PASS -- TEST 'rap_decomp_intel' [12:47, 06:52](1145 MB) -PASS -- TEST 'rap_2threads_intel' [12:46, 06:25](1375 MB) -PASS -- TEST 'rap_restart_intel' [05:11, 03:38](1130 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:57, 06:38](1201 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 06:53](1141 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [16:08, 04:57](1235 MB) -PASS -- TEST 'hrrr_control_intel' [08:56, 03:28](1074 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:44, 03:32](1041 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:46, 03:12](1123 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:36, 01:49](1030 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:59, 06:29](1187 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:24, 07:49](2010 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:24, 07:34](2159 MB) - -PASS -- COMPILE 'csawmg_intel' [08:10, 07:29] -PASS -- TEST 'control_csawmg_intel' [10:39, 05:22](814 MB) -PASS -- TEST 'control_ras_intel' [07:22, 02:55](820 MB) - -PASS -- COMPILE 'csawmg_gnu' [09:11, 03:51] -PASS -- TEST 'control_csawmg_gnu' [10:41, 06:39](809 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 06:36] -PASS -- TEST 'control_wam_intel' [05:27, 02:06](791 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 09:42] -PASS -- TEST 'control_p8_faster_intel' [06:03, 02:25](1645 MB) -PASS -- TEST 'regional_control_faster_intel' [07:34, 04:11](960 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 04:00] -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) -PASS -- TEST 'control_stochy_debug_intel' [05:22, 02:30](843 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:18](825 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:37, 03:27](870 MB) -PASS -- TEST 'control_ras_debug_intel' [03:20, 02:16](828 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB) -PASS -- TEST 'control_debug_p8_intel' [04:43, 02:21](1655 MB) -PASS -- TEST 'regional_debug_intel' [15:39, 14:20](891 MB) -PASS -- TEST 'rap_control_debug_intel' [05:24, 04:07](1209 MB) -PASS -- TEST 'hrrr_control_debug_intel' [14:23, 04:03](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [14:21, 04:03](1221 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [14:21, 04:05](1230 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:22, 04:01](1231 MB) -PASS -- TEST 'rap_diag_debug_intel' [15:29, 04:17](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:22, 04:13](1213 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:21, 04:13](1220 MB) -PASS -- TEST 'rap_lndp_debug_intel' [14:22, 04:08](1214 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:22, 04:12](1219 MB) -PASS -- TEST 'rap_noah_debug_intel' [14:22, 04:07](1222 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [14:22, 04:14](1221 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:21, 06:38](1218 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [14:20, 03:59](1221 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [15:20, 04:51](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [14:22, 04:03](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:03, 07:00](1218 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 03:53] -PASS -- TEST 'control_csawmg_debug_gnu' [15:39, 01:48](790 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 02:29] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 06:20] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:52, 03:36](1285 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:58, 05:37](1158 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [16:09, 03:05](1030 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:38, 05:20](1289 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:51, 02:53](1040 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [15:49, 03:08](1001 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:00, 04:08](1094 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:26, 01:38](960 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 09:13] -PASS -- TEST 'conus13km_control_intel' [06:47, 01:56](1303 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:36, 01:02](1206 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:40, 01:08](1148 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:10, 07:04] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:41, 03:51](1097 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:11] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:23, 03:54](1097 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 03:51](1094 MB) -PASS -- TEST 'conus13km_debug_intel' [16:43, 11:49](1345 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:43, 11:55](987 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:32, 06:49](1218 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 12:03](1416 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:11] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:21, 04:06](1155 MB) - -PASS -- COMPILE 'hafsw_intel' [11:11, 10:14] -PASS -- TEST 'hafs_regional_atm_intel' [08:08, 05:34](880 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:27, 05:14](1282 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:23, 06:36](955 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:10, 14:23](979 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:19, 16:16](1016 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:05, 05:58](604 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:23, 07:30](618 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:57, 03:09](432 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:24, 08:22](542 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:53, 04:43](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:52, 03:54](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:58, 05:13](674 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:28, 01:40](446 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 02:57] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:54, 11:24](632 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 10:47] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:01, 17:10](732 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:11, 16:18](810 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 10:05] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:04, 10:10](790 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 09:55] -PASS -- TEST 'hafs_regional_docn_intel' [13:08, 05:41](956 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:08, 06:01](915 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:45, 16:34](1333 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:10, 06:29] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:20, 02:10](1133 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:24](1079 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:16, 02:05](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:19, 02:07](1019 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:17, 02:07](1013 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:11](1130 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:11](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:04](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:03, 04:57](1160 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:56, 04:56](1140 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:10](1147 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:02](2330 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:03](2432 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 03:03] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:12](1077 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 05:09] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:09](1128 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:12] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:03](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 01:02](561 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:22, 00:35](560 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 08:16] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:27, 05:49](1644 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:20, 05:40](1657 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:51, 02:58](946 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 09:44] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:08, 01:34](1693 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 08:12] -PASS -- TEST 'atmaero_control_p8_intel' [05:09, 03:41](1792 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:07, 04:16](1798 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:49] -PASS -- TEST 'regional_atmaq_debug_intel' [19:39, 17:12](4590 MB) - -PASS -- COMPILE 'atm_gnu' [07:10, 03:41] -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_gnu' [, ]( MB) -PASS -- TEST 'control_stochy_gnu' [03:22, 02:19](730 MB) -PASS -- TEST 'control_ras_gnu' [05:20, 03:39](730 MB) -PASS -- TEST 'control_p8_gnu' [04:57, 03:34](1512 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:50, 03:37](1513 MB) -PASS -- TEST 'control_flake_gnu' [05:20, 04:22](809 MB) - -PASS -- COMPILE 'rrfs_gnu' [08:10, 05:01] -PASS -- TEST 'rap_control_gnu' [08:53, 07:44](1086 MB) -PASS -- TEST 'rap_decomp_gnu' [09:46, 07:45](1088 MB) -PASS -- TEST 'rap_2threads_gnu' [08:43, 07:12](1122 MB) -PASS -- TEST 'rap_restart_gnu' [09:58, 03:55](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:54, 08:29](1086 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:49, 07:47](1085 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:58, 05:43](885 MB) -PASS -- TEST 'hrrr_control_gnu' [05:47, 04:02](1076 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:43, 04:03](1134 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:57, 03:38](1021 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 04:00](1073 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:26, 02:05](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:05](934 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:10, 07:46](1082 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 05:52] -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_gnu' [, ]( MB) -PASS -- TEST 'regional_debug_gnu' [07:38, 06:27](925 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:22, 01:58](1101 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 01:56](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:22, 01:59](1095 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 01:59](1094 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:29, 02:05](1270 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 03:06](1095 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:21, 01:57](1097 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:20, 01:56](1090 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:15](726 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:21](722 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:18](1506 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:26, 01:59](1097 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:10](1101 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:03, 03:21](1104 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:10, 03:21] -PASS -- TEST 'control_wam_debug_gnu' [03:31, 02:03](501 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:49] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:52, 07:27](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:10, 03:54](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:47, 06:51](995 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:45, 03:36](893 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:45, 03:57](957 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:49, 05:26](858 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 01:58](857 MB) -PASS -- TEST 'conus13km_control_gnu' [06:48, 02:42](1266 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:32, 01:05](1174 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:36, 01:29](930 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [16:11, 11:32] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:38, 04:28](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [14:11, 09:44] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:20, 01:59](978 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:20, 01:55](968 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:40, 05:30](1282 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:38, 05:37](968 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:33, 03:22](1191 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:35, 05:28](1350 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:11, 09:58] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [07:24, 01:59](1001 MB) - -PASS -- COMPILE 's2swa_gnu' [22:12, 17:59] - -PASS -- COMPILE 's2s_gnu' [19:11, 17:30] - -PASS -- COMPILE 's2swa_debug_gnu' [10:11, 09:01] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:17] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 04:23] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:16] +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 12:09] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:56, 07:29](1894 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:14] +PASS -- TEST 'cpld_control_gfsv17_intel' [15:08, 13:31](1767 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:25, 14:03](2190 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:11, 06:20](1175 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:54, 15:07](1691 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:51] +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:07, 20:22](1725 MB) + +PASS -- COMPILE 's2swa_intel' [11:10, 10:45] +PASS -- TEST 'cpld_control_p8_intel' [08:52, 07:30](2086 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 07:27](2077 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:09, 04:15](1955 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:50, 07:40](1979 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:11, 04:18](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:47, 08:51](2498 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:45](2070 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:54, 06:14](1900 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:59, 07:26](2069 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:34, 14:53](2799 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:06, 05:37](2920 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [13:43, 08:20](3632 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:42, 05:10](3627 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:53, 04:52](2019 MB) + +PASS -- COMPILE 's2sw_intel' [12:10, 11:18] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 07:07](1773 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:53, 03:56](1814 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 04:33] +PASS -- TEST 'cpld_debug_p8_intel' [08:02, 06:55](2039 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:25] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:45, 04:44](1790 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:30] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 03:57](1815 MB) + +PASS -- COMPILE 's2s_intel' [10:10, 09:35] +PASS -- TEST 'cpld_control_c48_intel' [08:37, 07:17](2833 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:53] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:58, 07:19](2055 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:10, 15:06] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:47, 13:43](1812 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:01, 06:42](1304 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:56, 15:13](1726 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:12] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:40](1763 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:10, 08:07] +PASS -- TEST 'control_flake_intel' [03:18, 02:50](716 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:31, 02:28](1610 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:32](1621 MB) +PASS -- TEST 'control_latlon_intel' [03:30, 02:30](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:31](1615 MB) +PASS -- TEST 'control_c48_intel' [07:32, 06:59](1749 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:22, 05:42](844 MB) +PASS -- TEST 'control_c192_intel' [09:39, 08:55](1761 MB) +PASS -- TEST 'control_c384_intel' [10:14, 09:07](2038 MB) +PASS -- TEST 'control_c384gdas_intel' [09:41, 06:59](1530 MB) +PASS -- TEST 'control_stochy_intel' [02:18, 01:24](671 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:52](549 MB) +PASS -- TEST 'control_lndp_intel' [02:18, 01:19](667 MB) +PASS -- TEST 'control_iovr4_intel' [03:19, 02:05](659 MB) +PASS -- TEST 'control_iovr5_intel' [02:23, 02:06](672 MB) +PASS -- TEST 'control_p8_intel' [03:49, 02:31](1650 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:50, 02:31](1638 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:49, 02:26](1649 MB) +PASS -- TEST 'control_restart_p8_intel' [02:44, 01:22](908 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:40, 02:28](1631 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:49, 01:21](991 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:38, 02:35](1634 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:38, 02:18](1728 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:21](1629 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:48, 03:25](1718 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:47, 02:31](1646 MB) +PASS -- TEST 'merra2_thompson_intel' [03:53, 02:45](1653 MB) +PASS -- TEST 'regional_control_intel' [05:28, 04:31](956 MB) +PASS -- TEST 'regional_restart_intel' [03:27, 02:26](1101 MB) +PASS -- TEST 'regional_decomp_intel' [05:27, 04:45](949 MB) +PASS -- TEST 'regional_2threads_intel' [03:27, 02:47](912 MB) +PASS -- TEST 'regional_noquilt_intel' [05:29, 04:17](1484 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 04:24](959 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:25](959 MB) +PASS -- TEST 'regional_wofs_intel' [06:26, 05:29](2070 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 07:14] +PASS -- TEST 'rap_control_intel' [07:32, 06:31](1208 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:46, 03:22](1402 MB) +PASS -- TEST 'rap_decomp_intel' [07:31, 06:47](1141 MB) +PASS -- TEST 'rap_2threads_intel' [06:46, 06:07](1352 MB) +PASS -- TEST 'rap_restart_intel' [04:41, 03:26](1148 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:46, 06:26](1196 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:45](1132 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:53, 04:54](1193 MB) +PASS -- TEST 'hrrr_control_intel' [04:34, 03:19](1068 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:34, 03:23](1054 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:46, 03:01](1124 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:33, 01:48](1037 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:51, 06:19](1195 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 07:48](2012 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:29](2166 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 07:03] +PASS -- TEST 'control_csawmg_intel' [06:27, 05:15](805 MB) +PASS -- TEST 'control_ras_intel' [03:18, 02:48](804 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 03:58] +PASS -- TEST 'control_csawmg_gnu' [07:27, 06:28](812 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 06:35] +PASS -- TEST 'control_wam_intel' [02:25, 01:47](786 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:17] +PASS -- TEST 'control_p8_faster_intel' [03:50, 02:14](1628 MB) +PASS -- TEST 'regional_control_faster_intel' [04:26, 04:06](960 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 03:45] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:09](1638 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:32, 02:08](1627 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:28](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:13](820 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:25, 03:24](878 MB) +PASS -- TEST 'control_ras_debug_intel' [03:16, 02:14](835 MB) +PASS -- TEST 'control_diag_debug_intel' [03:34, 02:13](1682 MB) +PASS -- TEST 'control_debug_p8_intel' [03:30, 02:19](1662 MB) +PASS -- TEST 'regional_debug_intel' [14:27, 13:56](895 MB) +PASS -- TEST 'rap_control_debug_intel' [04:18, 03:59](1216 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:47](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:55](1221 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 03:57](1226 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 03:54](1227 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:10](1304 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:17, 04:03](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:17, 03:58](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:18, 04:01](1220 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:56](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1210 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:59](1223 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 06:17](1211 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 03:52](1215 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:48](1230 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:19, 03:59](1224 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:49, 06:49](1222 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:10] +PASS -- TEST 'control_csawmg_debug_gnu' [02:27, 01:41](793 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 02:47] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:31] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:50, 03:21](1284 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:31, 05:21](1170 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:55, 02:52](1036 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:42, 05:01](1288 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 02:35](1046 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:34, 02:59](978 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:40, 04:02](1094 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:34](962 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:11, 08:51] +PASS -- TEST 'conus13km_control_intel' [02:35, 01:40](1302 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:29, 00:45](1200 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:03](1145 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:43] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:27, 03:40](1096 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:01] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 03:54](1102 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:48](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [12:30, 11:25](1333 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:31, 11:42](995 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:29, 06:31](1239 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:30, 11:30](1404 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 03:01] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:18, 03:57](1149 MB) + +PASS -- COMPILE 'hafsw_intel' [11:11, 10:11] +PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:16](880 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:20, 04:49](1273 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:17](953 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:01, 13:47](980 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:15, 15:14](1003 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:46, 05:17](604 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:18, 06:44](614 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:40, 02:48](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:56, 07:28](543 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:38, 03:43](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:39, 03:33](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:43, 04:40](684 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:23](453 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:11, 02:53] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:39, 11:10](627 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:12] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:47, 16:25](764 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:52, 15:57](842 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 10:19] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:51, 09:44](835 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:11, 10:03] +PASS -- TEST 'hafs_regional_docn_intel' [07:05, 05:18](945 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:03, 05:24](932 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:49, 16:26](1346 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [05:11, 04:40] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:08](1150 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:17](1101 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 02:05](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:04](1007 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:14, 02:06](1010 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:14, 02:06](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:06](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:13, 02:01](1010 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:49, 04:52](1157 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:45, 04:48](1143 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:06](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:14, 02:59](2388 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:01](2380 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 03:00] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:10](1077 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:57] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:07](1155 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:45] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:24, 00:58](329 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:52](561 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:29](556 MB) + +PASS -- COMPILE 'atml_intel' [08:10, 07:47] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:01, 05:28](1638 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:56, 05:16](1648 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:38, 02:59](951 MB) + +PASS -- COMPILE 'atmw_intel' [10:10, 09:15] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:46, 01:31](1686 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 07:16] +PASS -- TEST 'atmaero_control_p8_intel' [04:48, 03:28](1797 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:46, 04:07](1799 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:12](1832 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:41] +PASS -- TEST 'regional_atmaq_debug_intel' [18:14, 16:14](4603 MB) + +PASS -- COMPILE 'atm_gnu' [04:10, 03:46] +PASS -- TEST 'control_c48_gnu' [10:35, 09:22](1558 MB) +PASS -- TEST 'control_stochy_gnu' [03:17, 02:12](733 MB) +PASS -- TEST 'control_ras_gnu' [04:16, 03:38](737 MB) +PASS -- TEST 'control_p8_gnu' [04:45, 03:29](1516 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:37, 03:24](1514 MB) +PASS -- TEST 'control_flake_gnu' [05:17, 04:18](800 MB) + +PASS -- COMPILE 'rrfs_gnu' [07:10, 06:32] +PASS -- TEST 'rap_control_gnu' [08:30, 07:30](1090 MB) +PASS -- TEST 'rap_decomp_gnu' [08:30, 07:42](1088 MB) +PASS -- TEST 'rap_2threads_gnu' [07:45, 07:00](1128 MB) +PASS -- TEST 'rap_restart_gnu' [04:41, 03:53](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:36, 07:33](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 07:44](1086 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:39, 05:43](885 MB) +PASS -- TEST 'hrrr_control_gnu' [04:44, 03:57](1075 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:33, 03:55](1136 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:30](1027 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:53](1080 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:02](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:19, 02:01](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:30](1084 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:11, 09:50] +PASS -- TEST 'control_diag_debug_gnu' [01:33, 01:09](1628 MB) +PASS -- TEST 'regional_debug_gnu' [07:28, 06:20](923 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:17, 01:58](1097 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 01:56](1087 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 01:56](1094 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:22, 01:58](1094 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:24, 02:04](1268 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:04](1093 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:55](1095 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 01:57](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:08](724 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:16](722 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:31, 01:15](1501 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:17, 01:56](1096 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1098 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:52, 03:13](1095 MB) + +PASS -- COMPILE 'wam_debug_gnu' [06:11, 05:10] +PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:52](499 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 07:25] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:10](964 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:43, 03:43](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:41, 06:36](978 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:24](881 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 03:51](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:40, 05:21](859 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:21, 01:57](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:36, 02:32](1264 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:28, 01:05](1174 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:25](944 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 07:42] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:21](987 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:11, 10:58] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:55](974 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:18, 01:51](972 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:35, 05:35](1278 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 05:32](953 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:26, 03:10](1185 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:26, 05:27](1347 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:11, 11:57] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:59](1000 MB) + +PASS -- COMPILE 's2swa_gnu' [17:11, 16:24] + +PASS -- COMPILE 's2s_gnu' [17:11, 16:48] + +PASS -- COMPILE 's2swa_debug_gnu' [11:10, 10:37] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 16:48] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:10, 09:17] + +PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:42] SYNOPSIS: -Starting Date/Time: 20240422 07:29:32 -Ending Date/Time: 20240422 09:17:34 -Total Time: 01h:48m:46s +Starting Date/Time: 20240425 07:05:44 +Ending Date/Time: 20240425 08:15:15 +Total Time: 01h:09m:54s Compiles Completed: 53/53 -Tests Completed: 220/234 -Failed Tests: -* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_intel.log -* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_parallel_intel.log -* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_latlon_intel.log -* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_wrtGauss_netcdf_parallel_intel.log -* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c48_intel.log -* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c192_intel.log -* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c384_intel.log -* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_merra2_thompson_intel.log -* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_debug_intel.log -* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_wrtGauss_netcdf_parallel_debug_intel.log -* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_diag_debug_intel.log -* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_atmaero_control_p8_rad_micro_intel.log -* TEST control_c48_gnu: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c48_gnu.log -* TEST control_diag_debug_gnu: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_diag_debug_gnu.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERCULES REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1349963 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:28] -PASS -- TEST 'control_CubedSphereGrid_intel' [03:32, 02:43](1600 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:40, 02:40](1629 MB) -PASS -- TEST 'control_latlon_intel' [03:35, 02:46](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:40](1606 MB) -PASS -- TEST 'control_c48_intel' [07:43, 07:02](1748 MB) -PASS -- TEST 'control_c192_intel' [10:56, 09:11](1766 MB) -PASS -- TEST 'control_c384_intel' [12:28, 09:41](2053 MB) -PASS -- TEST 'merra2_thompson_intel' [03:45, 03:02](1658 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:36] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:38, 02:22](1632 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:40, 02:09](1644 MB) -PASS -- TEST 'control_diag_debug_intel' [03:42, 02:24](1686 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 07:56] -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:35, 04:30](1814 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 04:47] -PASS -- TEST 'control_c48_gnu' [10:45, 09:45](1574 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 05:37] -PASS -- TEST 'control_diag_debug_gnu' [02:36, 01:19](1625 MB) - -SYNOPSIS: -Starting Date/Time: 20240422 10:21:26 -Ending Date/Time: 20240422 10:44:31 -Total Time: 00h:23m:27s -Compiles Completed: 5/5 -Tests Completed: 14/14 +Tests Completed: 234/234 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index f4fce114d9..2055263dc5 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 +59efb751087aed49bf96c2f722ba7013cbe33785 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) @@ -36,246 +36,248 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2785867 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_4037119 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [39:14, 38:39] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 07:08](1789 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:16, 54:23] -PASS -- TEST 'cpld_control_gfsv17_intel' [23:03, 20:45](1667 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:13, 22:21](1888 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:10, 10:19](993 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:37, 23:57](1622 MB) - -PASS -- COMPILE 's2swa_intel' [39:14, 38:48] -PASS -- TEST 'cpld_control_p8_intel' [09:24, 07:38](1825 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:45, 07:56](1826 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:46, 04:31](1714 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:23, 07:40](1853 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:47, 05:07](1728 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:26, 07:02](2274 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:17, 07:59](1822 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:41, 06:51](1781 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 07:34](1826 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:35, 07:12](1787 MB) - -PASS -- COMPILE 's2sw_intel' [36:13, 36:04] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:24, 05:52](1658 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:41, 05:39](1710 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:32] -PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:34](1846 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:40] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:27, 07:13](1676 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [32:13, 32:02] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 05:41](1719 MB) - -PASS -- COMPILE 's2s_intel' [33:13, 32:17] -PASS -- TEST 'cpld_control_c48_intel' [15:32, 13:21](2798 MB) - -PASS -- COMPILE 's2swa_faster_intel' [33:19, 32:56] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:57, 07:00](1818 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:18] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:40, 20:42](1678 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 10:25](1038 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:43, 23:57](1658 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:56] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:30, 32:11](1688 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:43] -PASS -- TEST 'control_flake_intel' [05:30, 04:34](643 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:12, 04:05](1545 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:17, 04:13](1551 MB) -PASS -- TEST 'control_latlon_intel' [05:08, 04:03](1546 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:16, 04:07](1548 MB) -PASS -- TEST 'control_c48_intel' [13:22, 11:53](1734 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:43, 10:12](843 MB) -PASS -- TEST 'control_c192_intel' [15:30, 14:01](1675 MB) -PASS -- TEST 'control_c384_intel' [21:20, 18:20](1827 MB) -PASS -- TEST 'control_c384gdas_intel' [17:47, 14:00](1013 MB) -PASS -- TEST 'control_stochy_intel' [03:32, 02:15](600 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:30, 01:22](434 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 02:08](605 MB) -PASS -- TEST 'control_iovr4_intel' [04:36, 03:18](599 MB) -PASS -- TEST 'control_iovr5_intel' [06:32, 05:34](593 MB) -PASS -- TEST 'control_p8_intel' [06:32, 04:20](1574 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 04:02](1571 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 04:00](1575 MB) -PASS -- TEST 'control_restart_p8_intel' [04:10, 02:19](811 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:46, 04:05](1571 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:14, 02:15](837 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:32, 04:06](1564 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:48, 03:53](1663 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:14, 07:15](1569 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:21](1628 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:48, 04:21](1578 MB) -PASS -- TEST 'merra2_thompson_intel' [07:05, 04:33](1574 MB) -PASS -- TEST 'regional_control_intel' [09:06, 07:14](761 MB) -PASS -- TEST 'regional_restart_intel' [04:43, 03:44](934 MB) -PASS -- TEST 'regional_decomp_intel' [14:06, 12:46](762 MB) -PASS -- TEST 'regional_2threads_intel' [05:44, 04:37](758 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 06:54](759 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 07:00](765 MB) - -PASS -- COMPILE 'rrfs_intel' [33:13, 32:30] -PASS -- TEST 'rap_control_intel' [12:18, 10:10](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 05:47](1217 MB) -PASS -- TEST 'rap_decomp_intel' [11:56, 10:34](987 MB) -PASS -- TEST 'rap_2threads_intel' [14:00, 12:25](1088 MB) -PASS -- TEST 'rap_restart_intel' [07:16, 05:13](994 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:12, 10:12](993 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:02, 10:46](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 07:29](996 MB) -PASS -- TEST 'hrrr_control_intel' [06:14, 05:08](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 05:24](984 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:59, 04:53](1051 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:47](919 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:30, 10:00](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:27, 12:10](1949 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:27, 12:18](1941 MB) - -PASS -- COMPILE 'csawmg_intel' [31:13, 30:58] -PASS -- TEST 'control_csawmg_intel' [08:51, 08:01](695 MB) -PASS -- TEST 'control_ras_intel' [05:27, 04:26](665 MB) - -PASS -- COMPILE 'wam_intel' [30:12, 29:35] -PASS -- TEST 'control_wam_intel' [03:26, 02:44](503 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [32:12, 32:05] -PASS -- TEST 'control_p8_faster_intel' [05:37, 03:36](1581 MB) -PASS -- TEST 'regional_control_faster_intel' [07:47, 06:28](764 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:38] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 03:27](1558 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 03:27](1554 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:53](765 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:24, 03:26](766 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:46, 05:21](812 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 03:23](772 MB) -PASS -- TEST 'control_diag_debug_intel' [04:54, 03:29](1622 MB) -PASS -- TEST 'control_debug_p8_intel' [04:52, 03:35](1598 MB) -PASS -- TEST 'regional_debug_intel' [22:46, 21:38](774 MB) -PASS -- TEST 'rap_control_debug_intel' [06:29, 06:00](1158 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:52](1156 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 06:02](1145 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:59](1144 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 06:00](1148 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:41, 06:19](1234 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 06:09](1150 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 06:06](1154 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:27, 06:08](1150 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 06:00](1155 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:25, 05:53](1149 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 06:01](1153 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 09:51](1146 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 06:02](1148 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 07:20](1153 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:28, 06:00](1145 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:29, 10:27](1153 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:45] -PASS -- TEST 'control_wam_debug_intel' [07:27, 06:09](465 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:13, 29:43] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 05:07](1073 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:57, 08:09](901 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 04:20](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:21, 07:46](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:37, 04:00](908 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 04:35](853 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:11, 06:09](897 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:21](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 42:39] -PASS -- TEST 'conus13km_control_intel' [05:11, 03:26](1103 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:38](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:39](1022 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:14, 30:16] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:01, 05:29](905 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:06] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 05:57](1033 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 05:49](1027 MB) -PASS -- TEST 'conus13km_debug_intel' [19:58, 18:28](1132 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:58, 18:36](852 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:42](1084 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:52, 18:14](1204 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:53] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 06:04](1073 MB) - -PASS -- COMPILE 'hafsw_intel' [35:13, 35:06] -PASS -- TEST 'hafs_regional_atm_intel' [08:25, 07:00](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:36, 06:59](1082 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:45, 09:21](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 16:23](802 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 18:16](823 MB) -PASS -- TEST 'gnv1_nested_intel' [09:24, 07:41](779 MB) - -PASS -- COMPILE 'hafs_all_intel' [32:13, 31:31] -PASS -- TEST 'hafs_regional_docn_intel' [10:26, 08:48](773 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:30, 09:00](758 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:02] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 03:35](1069 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:15](1029 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 03:31](924 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 03:36](928 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 03:35](929 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:23, 03:35](1081 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 03:38](1066 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:22, 03:32](937 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:20, 07:57](884 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:20, 08:03](842 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:19, 03:35](1077 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 05:01](2399 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 05:03](2403 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:13] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 07:59](996 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:01] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 03:36](1054 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:51] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:35, 01:47](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:30, 04:53](266 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:53](251 MB) - -PASS -- COMPILE 'atml_intel' [39:14, 38:47] -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_p8_atmlnd_sbs_intel' [, ]( MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 07:29](1600 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:52, 03:51](870 MB) - -PASS -- COMPILE 'atmw_intel' [32:13, 31:19] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:17](1609 MB) - -PASS -- COMPILE 'atmaero_intel' [31:12, 30:48] -PASS -- TEST 'atmaero_control_p8_intel' [06:24, 05:09](1693 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:20, 06:25](1717 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [38:58, 38:57] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 06:54](1772 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:05, 48:04] +PASS -- TEST 'cpld_control_gfsv17_intel' [22:34, 20:51](1656 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:16, 22:28](1871 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:14, 10:26](993 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:41, 23:57](1618 MB) + +PASS -- COMPILE 's2swa_intel' [38:54, 38:53] +PASS -- TEST 'cpld_control_p8_intel' [08:51, 07:30](1831 MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_control_p8.v2.sfc_intel' [, ]( MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:51, 04:24](1711 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:08, 07:43](1825 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 04:31](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:27, 07:11](2265 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 07:36](1813 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:46, 06:25](1773 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 07:37](1813 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 07:16](1753 MB) + +PASS -- COMPILE 's2sw_intel' [36:24, 36:23] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:56, 05:52](1669 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 05:44](1710 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:15, 05:14] +PASS -- TEST 'cpld_debug_p8_intel' [11:55, 10:36](1846 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:51, 04:50] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 07:16](1651 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [32:13, 32:12] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 05:44](1707 MB) + +PASS -- COMPILE 's2s_intel' [32:46, 32:46] +PASS -- TEST 'cpld_control_c48_intel' [13:29, 12:45](2799 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:23, 34:22] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:40, 07:14](1821 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [53:05, 53:05] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:01, 20:51](1669 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:51, 10:31](1024 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:01, 21:54](1646 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:03, 05:02] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:16, 32:11](1682 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [35:04, 35:04] +PASS -- TEST 'control_flake_intel' [04:46, 04:29](646 MB) +FAILED: TEST TIMED OUT -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:45, 04:00](1541 MB) +PASS -- TEST 'control_latlon_intel' [04:27, 03:51](1529 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:51, 04:07](1529 MB) +PASS -- TEST 'control_c48_intel' [12:32, 11:54](1718 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:27, 10:08](848 MB) +PASS -- TEST 'control_c192_intel' [15:17, 14:18](1678 MB) +PASS -- TEST 'control_c384_intel' [19:48, 18:10](1826 MB) +PASS -- TEST 'control_c384gdas_intel' [16:16, 13:36](1001 MB) +PASS -- TEST 'control_stochy_intel' [02:27, 02:11](602 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:34, 01:19](434 MB) +PASS -- TEST 'control_lndp_intel' [02:23, 02:07](602 MB) +PASS -- TEST 'control_iovr4_intel' [03:31, 03:17](595 MB) +PASS -- TEST 'control_iovr5_intel' [03:31, 03:17](603 MB) +PASS -- TEST 'control_p8_intel' [05:11, 04:05](1549 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 04:00](1579 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:13, 03:53](1574 MB) +PASS -- TEST 'control_restart_p8_intel' [03:09, 02:13](808 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:01, 03:53](1564 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 02:07](849 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:03, 04:02](1563 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:54, 03:46](1651 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:40, 07:02](1573 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 05:29](1608 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:18, 04:05](1572 MB) +PASS -- TEST 'merra2_thompson_intel' [05:45, 04:19](1581 MB) +PASS -- TEST 'regional_control_intel' [07:44, 07:09](758 MB) +PASS -- TEST 'regional_restart_intel' [04:14, 03:48](930 MB) +PASS -- TEST 'regional_decomp_intel' [08:08, 07:33](759 MB) +PASS -- TEST 'regional_2threads_intel' [05:06, 04:31](757 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 07:04](761 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 07:04](761 MB) + +PASS -- COMPILE 'rrfs_intel' [32:59, 32:58] +PASS -- TEST 'rap_control_intel' [11:08, 10:04](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:32, 05:35](1214 MB) +PASS -- TEST 'rap_decomp_intel' [11:41, 10:35](989 MB) +PASS -- TEST 'rap_2threads_intel' [10:43, 09:38](1071 MB) +PASS -- TEST 'rap_restart_intel' [05:56, 05:17](993 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:03, 10:01](991 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:45, 10:42](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:17, 07:39](999 MB) +PASS -- TEST 'hrrr_control_intel' [06:19, 05:09](973 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:20, 05:13](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 04:42](1065 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:13, 02:55](910 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:03, 09:57](989 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:38, 12:21](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:22, 12:08](1921 MB) + +PASS -- COMPILE 'csawmg_intel' [31:27, 31:27] +PASS -- TEST 'control_csawmg_intel' [08:36, 08:06](693 MB) +PASS -- TEST 'control_ras_intel' [04:36, 04:24](667 MB) + +PASS -- COMPILE 'wam_intel' [29:55, 29:55] +PASS -- TEST 'control_wam_intel' [03:01, 02:50](497 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [31:50, 31:49] +PASS -- TEST 'control_p8_faster_intel' [04:52, 03:38](1568 MB) +PASS -- TEST 'regional_control_faster_intel' [07:10, 06:36](769 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:58, 05:58] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:55, 03:19](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:58, 03:16](1565 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:03, 03:46](760 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:38, 03:24](769 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:48, 05:17](811 MB) +PASS -- TEST 'control_ras_debug_intel' [03:45, 03:28](770 MB) +PASS -- TEST 'control_diag_debug_intel' [04:23, 03:44](1607 MB) +PASS -- TEST 'control_debug_p8_intel' [04:31, 03:53](1599 MB) +PASS -- TEST 'regional_debug_intel' [23:12, 22:35](783 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 06:07](1156 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:08, 05:55](1151 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 06:04](1149 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 06:06](1157 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 06:05](1160 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:41, 06:19](1236 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 06:13](1151 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 06:14](1151 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:20, 06:07](1153 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 06:12](1160 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:18, 06:03](1144 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 06:09](1150 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:12, 10:01](1153 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:13, 06:00](1151 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:36, 07:22](1151 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 06:04](1147 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:40, 10:30](1157 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:00, 04:00] +PASS -- TEST 'control_wam_debug_intel' [06:22, 06:10](445 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:01, 30:00] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:10, 05:14](1071 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:20, 08:19](901 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:53, 04:29](862 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:54, 07:52](957 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 04:06](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:08, 04:42](853 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 06:14](902 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 02:23](848 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [42:46, 42:46] +PASS -- TEST 'conus13km_control_intel' [03:43, 03:01](1104 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:04, 01:27](1054 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:14, 01:38](1022 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:43, 30:42] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:06, 05:33](911 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:19, 04:19] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:13, 06:00](1029 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:10, 05:54](1031 MB) +PASS -- TEST 'conus13km_debug_intel' [19:09, 18:30](1121 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:12, 18:33](884 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:16, 10:41](1066 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:57, 18:22](1205 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:11] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:17, 06:05](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [34:28, 34:28] +PASS -- TEST 'hafs_regional_atm_intel' [08:15, 07:01](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:54, 06:31](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:41, 09:13](776 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:56, 16:15](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:43, 18:12](821 MB) +PASS -- TEST 'gnv1_nested_intel' [06:36, 05:43](773 MB) + +PASS -- COMPILE 'hafs_all_intel' [32:14, 32:14] +PASS -- TEST 'hafs_regional_docn_intel' [09:58, 08:43](767 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 08:46](756 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:07, 08:07] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:45, 03:35](1077 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:26, 02:13](1039 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:43, 03:34](925 MB) +FAILED: TEST TIMED OUT -- TEST 'datm_cdeps_iau_gefs_intel' [, ]( MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:52, 03:41](931 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:54, 03:43](1064 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:42, 03:34](1056 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:45, 03:34](927 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:54, 07:54](881 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:48, 07:51](842 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:41, 03:34](1063 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:11, 05:01](2408 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:57, 05:44](2391 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:19, 03:19] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 08:10](1008 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 08:17] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 03:32](1072 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:55, 01:55] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:01, 01:36](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:37, 01:19](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:12, 00:55](256 MB) + +PASS -- COMPILE 'atml_intel' [39:04, 39:03] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:05, 07:42](1597 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:05, 07:42](1593 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:36, 03:59](863 MB) + +PASS -- COMPILE 'atmw_intel' [31:47, 31:46] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 02:16](1600 MB) + +PASS -- COMPILE 'atmaero_intel' [30:44, 30:44] +PASS -- TEST 'atmaero_control_p8_intel' [06:30, 05:22](1674 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:31, 06:23](1706 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:20, 06:28](1732 MB) SYNOPSIS: -Starting Date/Time: 20240421 00:24:53 -Ending Date/Time: 20240421 04:39:18 -Total Time: 04h:14m:58s +Starting Date/Time: 20240424 18:28:23 +Ending Date/Time: 20240425 00:58:46 +Total Time: 06h:30m:55s Compiles Completed: 32/32 -Tests Completed: 156/158 +Tests Completed: 155/158 Failed Tests: -* TEST control_p8_atmlnd_sbs_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2173/ufs-weather-model/tests/logs/log_jet/run_control_p8_atmlnd_sbs_intel.log -* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2173/ufs-weather-model/tests/logs/log_jet/run_atmaero_control_p8_rad_micro_intel.log +* TEST cpld_control_p8.v2.sfc_intel: FAILED: TEST TIMED OUT +-- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_cpld_control_p8.v2.sfc_intel.log +* TEST control_CubedSphereGrid_intel: FAILED: TEST TIMED OUT +-- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_control_CubedSphereGrid_intel.log +* TEST datm_cdeps_iau_gefs_intel: FAILED: TEST TIMED OUT +-- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_datm_cdeps_iau_gefs_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -288,7 +290,7 @@ Result: FAILURE ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 +59efb751087aed49bf96c2f722ba7013cbe33785 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -308,7 +310,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) @@ -323,25 +325,28 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3224491 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3617777 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf.rerun +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 'atml_intel' [35:13, 34:29] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:54, 08:46](1611 MB) +PASS -- COMPILE 's2swa_intel' [39:13, 38:28] +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:53, 07:28](1828 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:41] +PASS -- TEST 'control_CubedSphereGrid_intel' [04:58, 03:57](1538 MB) -PASS -- COMPILE 'atmaero_intel' [31:13, 30:45] -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:26, 06:28](1735 MB) +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:57] +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:35](923 MB) SYNOPSIS: -Starting Date/Time: 20240422 16:28:22 -Ending Date/Time: 20240422 17:15:58 -Total Time: 00h:47m:49s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Starting Date/Time: 20240425 12:08:23 +Ending Date/Time: 20240425 12:58:47 +Total Time: 00h:50m:35s +Compiles Completed: 3/3 +Tests Completed: 3/3 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 4493b88e42..f6db2418d3 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -ac0c99fef9ec63df227e1ffff63088c8ec7ecbb1 +bcc92327e9e244c4ca9db1707f4df177799426b2 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (da95cc4) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) @@ -36,233 +36,299 @@ 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-20240419 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107473 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_185658 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [28:50, 28:24] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:46, 01:30](2975 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:12] -PASS -- TEST 'cpld_control_gfsv17_intel' [42:52, 01:51](1594 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:49, 02:21](1708 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [24:39, 01:59](847 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:59, 02:28](1573 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [29:50, 28:55] -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:58, 02:06](1604 MB) - -PASS -- COMPILE 's2swa_intel' [23:40, 22:52] -PASS -- TEST 'cpld_control_p8_intel' [35:42, 01:12](3004 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:42, 01:39](3002 MB) -PASS -- TEST 'cpld_restart_p8_intel' [27:20, 01:49](3062 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [35:42, 01:08](3027 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [27:21, 01:46](3081 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [35:42, 01:40](3317 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [35:42, 01:08](2996 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [35:43, 01:32](2927 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:42, 01:26](3001 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [35:51, 04:40](3952 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:25, 04:10](4253 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [35:42, 01:47](2967 MB) - -PASS -- COMPILE 's2sw_intel' [15:31, 14:50] -PASS -- TEST 'cpld_control_noaero_p8_intel' [43:51, 00:58](1583 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:13, 01:54](1637 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:25] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:59, 02:04](1640 MB) - -PASS -- COMPILE 's2s_intel' [20:36, 19:49] -PASS -- TEST 'cpld_control_c48_intel' [38:46, 01:34](2657 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:54] -PASS -- TEST 'cpld_control_p8_faster_intel' [42:52, 01:41](3004 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 16:58] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:51, 00:59](1606 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:27, 01:31](903 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 01:37](1576 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:19, 04:14] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:04, 01:37](1615 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [22:40, 22:06] -PASS -- TEST 'control_flake_intel' [31:23, 00:22](573 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [31:23, 00:28](1475 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [31:23, 00:28](1486 MB) -PASS -- TEST 'control_latlon_intel' [31:23, 00:24](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [31:23, 01:29](1468 MB) -PASS -- TEST 'control_c48_intel' [31:22, 00:56](1597 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [31:22, 00:52](715 MB) -PASS -- TEST 'control_c192_intel' [20:26, 00:35](1587 MB) -PASS -- TEST 'control_c384_intel' [31:27, 01:54](1909 MB) -PASS -- TEST 'control_c384gdas_intel' [31:27, 02:34](1094 MB) -PASS -- TEST 'control_stochy_intel' [31:23, 00:26](527 MB) -PASS -- TEST 'control_stochy_restart_intel' [28:56, 01:01](331 MB) -PASS -- TEST 'control_lndp_intel' [31:23, 00:31](527 MB) -PASS -- TEST 'control_iovr4_intel' [30:43, 00:41](525 MB) -PASS -- TEST 'control_iovr5_intel' [28:05, 00:43](523 MB) -PASS -- TEST 'control_p8_intel' [27:54, 01:35](1507 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [27:39, 01:55](1498 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [27:36, 01:54](1502 MB) -PASS -- TEST 'control_restart_p8_intel' [22:48, 00:57](695 MB) -PASS -- TEST 'control_noqr_p8_intel' [27:32, 01:35](1491 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [22:23, 00:55](700 MB) -PASS -- TEST 'control_decomp_p8_intel' [27:31, 01:25](1496 MB) -PASS -- TEST 'control_2threads_p8_intel' [27:30, 01:12](1592 MB) -PASS -- TEST 'control_p8_lndp_intel' [27:29, 01:05](1505 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [27:11, 01:57](1566 MB) -PASS -- TEST 'control_p8_mynn_intel' [27:10, 01:50](1512 MB) -PASS -- TEST 'merra2_thompson_intel' [27:03, 01:40](1511 MB) -PASS -- TEST 'regional_control_intel' [26:56, 01:13](608 MB) -PASS -- TEST 'regional_restart_intel' [20:09, 00:24](782 MB) -PASS -- TEST 'regional_decomp_intel' [26:53, 00:57](608 MB) -PASS -- TEST 'regional_2threads_intel' [26:27, 00:56](662 MB) -PASS -- TEST 'regional_noquilt_intel' [26:22, 00:22](1142 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [26:04, 00:22](608 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [25:55, 00:12](609 MB) -PASS -- TEST 'regional_wofs_intel' [24:36, 00:47](1577 MB) - -PASS -- COMPILE 'rrfs_intel' [32:48, 31:37] -PASS -- TEST 'rap_control_intel' [14:57, 01:15](919 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:01, 01:05](1093 MB) -PASS -- TEST 'rap_decomp_intel' [13:51, 01:28](920 MB) -PASS -- TEST 'rap_2threads_intel' [13:44, 01:18](1008 MB) -PASS -- TEST 'rap_restart_intel' [06:25, 01:11](785 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:43, 02:12](914 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:37, 01:51](913 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [04:16, 01:45](787 MB) -PASS -- TEST 'hrrr_control_intel' [12:47, 01:23](912 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:30, 01:02](910 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:09, 01:19](997 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:24, 01:03](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:35, 01:19](907 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:15, 01:00](1878 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:54, 01:17](1861 MB) - -PASS -- COMPILE 'csawmg_intel' [13:27, 12:54] -PASS -- TEST 'control_csawmg_intel' [23:04, 00:35](600 MB) -PASS -- TEST 'control_ras_intel' [22:26, 00:52](559 MB) - -PASS -- COMPILE 'wam_intel' [22:39, 21:31] -PASS -- TEST 'control_wam_intel' [20:11, 00:52](270 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:48] -PASS -- TEST 'control_p8_faster_intel' [33:28, 02:04](1516 MB) -PASS -- TEST 'regional_control_faster_intel' [33:27, 00:23](613 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:29, 13:42] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:03, 01:18](1487 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:01, 00:29](1491 MB) -PASS -- TEST 'control_stochy_debug_intel' [21:40, 00:52](693 MB) -PASS -- TEST 'control_lndp_debug_intel' [21:39, 01:10](692 MB) -PASS -- TEST 'control_csawmg_debug_intel' [21:23, 00:40](735 MB) -PASS -- TEST 'control_ras_debug_intel' [20:40, 01:06](704 MB) -PASS -- TEST 'control_diag_debug_intel' [20:38, 01:17](1555 MB) -PASS -- TEST 'control_debug_p8_intel' [20:37, 01:05](1517 MB) -PASS -- TEST 'regional_debug_intel' [20:31, 00:41](631 MB) -PASS -- TEST 'rap_control_debug_intel' [20:32, 00:54](1075 MB) -PASS -- TEST 'hrrr_control_debug_intel' [20:17, 00:58](1072 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [20:16, 00:55](1075 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [19:26, 00:56](1071 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:03, 00:59](1073 MB) -PASS -- TEST 'rap_diag_debug_intel' [18:48, 00:50](1158 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:10, 00:46](1076 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [17:54, 00:52](1079 MB) -PASS -- TEST 'rap_lndp_debug_intel' [17:24, 00:51](1077 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:13, 00:53](1075 MB) -PASS -- TEST 'rap_noah_debug_intel' [17:12, 00:59](1072 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [17:11, 00:54](1077 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:55, 00:47](1073 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [16:42, 00:59](1072 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [16:26, 01:05](1076 MB) -PASS -- TEST 'rap_flake_debug_intel' [16:12, 00:50](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [06:12, 02:13](1079 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 05:55] -PASS -- TEST 'control_wam_debug_intel' [32:27, 00:58](299 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:29, 13:45] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:48, 01:21](953 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:43, 01:17](791 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:16, 02:15](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:44, 01:45](849 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:21, 02:17](841 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:42, 02:06](790 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 01:08](685 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:28, 00:16](667 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [26:43, 25:49] -PASS -- TEST 'conus13km_control_intel' [05:45, 00:59](1003 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:56, 00:53](1007 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 00:39](884 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:37, 21:40] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:40, 01:22](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:17, 03:26] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:13, 01:00](948 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:28, 01:09](952 MB) -PASS -- TEST 'conus13km_debug_intel' [09:16, 01:23](1033 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [08:56, 01:12](706 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:55, 00:26](1037 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [51:27, 01:15](1099 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:29, 13:59] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [03:22, 00:54](982 MB) - -PASS -- COMPILE 'hafsw_intel' [12:27, 12:07] -PASS -- TEST 'hafs_regional_atm_intel' [07:26, 01:55](617 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:18, 01:18](966 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:02, 01:37](661 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [05:02, 02:22](700 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:51, 01:49](711 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [04:31, 01:02](390 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [04:17, 02:06](408 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:54, 01:28](283 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [03:57, 02:06](532 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:46, 01:30](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:45, 00:46](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:00, 01:36](488 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:51, 01:17](314 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:24, 09:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:48, 01:31](499 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:28, 13:04] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:45, 01:45](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [02:17, 01:49](712 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:54] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [59:43, 01:59](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:31, 14:18] -PASS -- TEST 'hafs_regional_docn_intel' [01:41, 02:02](660 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:32, 01:59](650 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:18, 00:29](880 MB) - -PASS -- COMPILE 'atml_intel' [17:34, 16:41] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:02, 02:19](1551 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [59:19, 02:13](1545 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [51:33, 01:16](741 MB) - -PASS -- COMPILE 'atmaero_intel' [15:31, 14:58] -PASS -- TEST 'atmaero_control_p8_intel' [59:15, 01:23](2849 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [59:05, 01:49](2912 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:05, 01:49](2922 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:21, 03:29] -PASS -- TEST 'regional_atmaq_debug_intel' [58:51, 02:09](4447 MB) +PASS -- COMPILE 's2swa_32bit_intel' [27:46, 27:26] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:19, 01:21](2970 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:51] +PASS -- TEST 'cpld_control_gfsv17_intel' [14:36, 02:00](1594 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [56:37, 01:52](1717 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [56:37, 01:31](850 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [55:44, 01:30](1569 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:29] +PASS -- TEST 'cpld_debug_gfsv17_intel' [21:46, 01:50](1601 MB) + +PASS -- COMPILE 's2swa_intel' [16:34, 15:27] +PASS -- TEST 'cpld_control_p8_intel' [10:29, 01:22](3007 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:29, 01:47](3002 MB) +PASS -- TEST 'cpld_restart_p8_intel' [02:08, 01:43](3066 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:29, 01:20](3027 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [02:10, 01:40](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:29, 01:07](3314 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:29, 01:17](3002 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:30, 01:27](2928 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:29, 01:49](3003 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [10:38, 03:00](3952 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [53:25, 03:56](4251 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 01:53](2967 MB) + +PASS -- COMPILE 's2sw_intel' [14:29, 13:58] +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:36, 00:47](1582 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:36, 01:52](1639 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 10:10] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:40, 00:56](1638 MB) + +PASS -- COMPILE 's2s_intel' [25:45, 24:32] +PASS -- TEST 'cpld_control_c48_intel' [01:18, 00:40](2654 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:46, 26:37] +PASS -- TEST 'cpld_control_p8_faster_intel' [59:19, 01:33](3003 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:29, 12:08] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:35, 01:13](1605 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [57:05, 00:41](902 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [57:06, 01:40](1582 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:35, 15:50] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [10:30, 01:38](1613 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [26:42, 25:46] +PASS -- TEST 'control_flake_intel' [55:02, 00:29](571 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [55:01, 00:24](1477 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [51:16, 01:19](1474 MB) +PASS -- TEST 'control_latlon_intel' [55:01, 00:22](1475 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [55:01, 00:31](1467 MB) +PASS -- TEST 'control_c48_intel' [55:00, 00:50](1594 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [55:00, 00:50](714 MB) +PASS -- TEST 'control_c192_intel' [55:01, 01:22](1584 MB) +PASS -- TEST 'control_c384_intel' [55:05, 01:59](1911 MB) +PASS -- TEST 'control_c384gdas_intel' [55:05, 02:25](1089 MB) +PASS -- TEST 'control_stochy_intel' [55:01, 00:31](527 MB) +PASS -- TEST 'control_stochy_restart_intel' [52:32, 00:56](336 MB) +PASS -- TEST 'control_lndp_intel' [55:01, 00:36](526 MB) +PASS -- TEST 'control_iovr4_intel' [55:01, 00:49](523 MB) +PASS -- TEST 'control_iovr5_intel' [55:01, 00:50](527 MB) +PASS -- TEST 'control_p8_intel' [55:01, 01:55](1502 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [55:01, 01:52](1513 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [55:01, 01:57](1511 MB) +PASS -- TEST 'control_restart_p8_intel' [49:30, 00:48](693 MB) +PASS -- TEST 'control_noqr_p8_intel' [55:01, 01:54](1499 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [49:30, 00:52](700 MB) +PASS -- TEST 'control_decomp_p8_intel' [54:34, 01:25](1499 MB) +PASS -- TEST 'control_2threads_p8_intel' [53:10, 01:22](1589 MB) +PASS -- TEST 'control_p8_lndp_intel' [52:33, 01:24](1501 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [51:35, 02:02](1556 MB) +PASS -- TEST 'control_p8_mynn_intel' [51:29, 01:57](1513 MB) +PASS -- TEST 'merra2_thompson_intel' [51:29, 01:44](1513 MB) +PASS -- TEST 'regional_control_intel' [51:20, 00:20](608 MB) +PASS -- TEST 'regional_restart_intel' [45:35, 00:13](778 MB) +PASS -- TEST 'regional_decomp_intel' [51:14, 00:54](608 MB) +PASS -- TEST 'regional_2threads_intel' [51:11, 00:56](665 MB) +PASS -- TEST 'regional_noquilt_intel' [51:03, 00:23](1141 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [50:46, 00:28](609 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [50:29, 00:22](609 MB) +PASS -- TEST 'regional_wofs_intel' [49:33, 00:58](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [30:47, 30:16] +PASS -- TEST 'rap_control_intel' [45:48, 01:46](921 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:21, 00:33](1099 MB) +PASS -- TEST 'rap_decomp_intel' [44:57, 01:11](917 MB) +PASS -- TEST 'rap_2threads_intel' [44:56, 00:45](1012 MB) +PASS -- TEST 'rap_restart_intel' [36:22, 01:12](789 MB) +PASS -- TEST 'rap_sfcdiff_intel' [44:45, 01:26](914 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:32, 01:40](915 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [33:21, 01:20](783 MB) +PASS -- TEST 'hrrr_control_intel' [44:26, 01:23](910 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [43:32, 01:19](911 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [43:14, 01:36](993 MB) +PASS -- TEST 'hrrr_control_restart_intel' [36:15, 01:05](741 MB) +PASS -- TEST 'rrfs_v1beta_intel' [42:58, 01:44](912 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [42:56, 01:16](1874 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [42:27, 01:03](1863 MB) + +PASS -- COMPILE 'csawmg_intel' [15:30, 14:57] +PASS -- TEST 'control_csawmg_intel' [59:06, 00:32](602 MB) +PASS -- TEST 'control_ras_intel' [59:06, 00:51](560 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 08:32] +PASS -- TEST 'control_wam_intel' [05:11, 00:58](270 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [24:39, 23:52] +PASS -- TEST 'control_p8_faster_intel' [47:51, 01:29](1507 MB) +PASS -- TEST 'regional_control_faster_intel' [46:59, 00:57](610 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [34:51, 33:49] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:59, 00:41](1488 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:54, 00:51](1492 MB) +PASS -- TEST 'control_stochy_debug_intel' [33:54, 00:41](690 MB) +PASS -- TEST 'control_lndp_debug_intel' [33:42, 00:24](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [33:41, 01:08](733 MB) +PASS -- TEST 'control_ras_debug_intel' [33:14, 00:41](703 MB) +PASS -- TEST 'control_diag_debug_intel' [32:47, 01:14](1542 MB) +PASS -- TEST 'control_debug_p8_intel' [32:38, 01:05](1518 MB) +PASS -- TEST 'regional_debug_intel' [32:28, 00:45](630 MB) +PASS -- TEST 'rap_control_debug_intel' [32:19, 00:54](1073 MB) +PASS -- TEST 'hrrr_control_debug_intel' [32:07, 00:57](1067 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [32:00, 00:57](1075 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [31:54, 00:50](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [31:36, 00:47](1075 MB) +PASS -- TEST 'rap_diag_debug_intel' [31:33, 00:44](1155 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [31:22, 00:49](1072 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [31:04, 00:50](1076 MB) +PASS -- TEST 'rap_lndp_debug_intel' [30:09, 00:53](1076 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [30:03, 00:53](1072 MB) +PASS -- TEST 'rap_noah_debug_intel' [29:55, 01:00](1076 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [29:53, 00:54](1071 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:28, 00:49](1076 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [29:17, 01:00](1072 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [29:17, 01:07](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [28:54, 00:52](1076 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [28:47, 01:13](1081 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:18, 05:00] +PASS -- TEST 'control_wam_debug_intel' [05:10, 01:00](298 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:29, 15:03] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:33, 01:15](955 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:30, 01:07](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [48:59, 02:19](788 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:22, 01:13](856 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [46:58, 01:07](837 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [46:30, 00:57](787 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:14, 01:36](690 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:50, 00:49](668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:33, 17:53] +PASS -- TEST 'conus13km_control_intel' [46:28, 00:31](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [41:50, 00:30](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [41:34, 00:36](881 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 12:22] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [46:22, 00:53](811 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 04:47] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [46:19, 00:33](953 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [46:20, 00:43](948 MB) +PASS -- TEST 'conus13km_debug_intel' [45:54, 01:09](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [41:30, 01:03](709 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [41:25, 00:26](1036 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:38, 01:16](1103 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 05:25] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:07, 00:58](980 MB) + +PASS -- COMPILE 'hafsw_intel' [16:31, 16:09] +PASS -- TEST 'hafs_regional_atm_intel' [40:40, 02:04](618 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [40:16, 00:33](965 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [39:45, 01:29](662 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [39:45, 02:14](696 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [39:41, 02:04](712 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:06, 00:54](387 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [38:59, 02:13](413 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [38:56, 01:22](281 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:28, 02:17](370 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:30, 01:18](419 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:11, 00:49](415 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [36:58, 01:32](488 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:46, 01:11](312 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:20, 05:19] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [36:18, 01:32](494 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:23, 10:01] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:59, 01:35](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:59, 01:37](710 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:28] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:18, 00:55](709 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:24, 09:42] +PASS -- TEST 'hafs_regional_docn_intel' [35:44, 01:23](665 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:02, 01:19](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:56, 00:25](881 MB) + +PASS -- COMPILE 'atml_intel' [22:38, 20:33] +FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_atmlnd_sbs_intel' [, ]( MB) +PASS -- TEST 'control_p8_atmlnd_intel' [25:20, 01:16](1543 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [18:46, 00:23](739 MB) + +PASS -- COMPILE 'atmaero_intel' [18:35, 16:03] +PASS -- TEST 'atmaero_control_p8_intel' [27:13, 01:30](2853 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [27:11, 00:52](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:00, 01:50](2920 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:18, 04:27] +PASS -- TEST 'regional_atmaq_debug_intel' [25:58, 01:23](4432 MB) SYNOPSIS: -Starting Date/Time: 20240422 20:00:17 -Ending Date/Time: 20240422 21:30:47 -Total Time: 01h:31m:05s +Starting Date/Time: 20240423 18:32:37 +Ending Date/Time: 20240423 20:00:11 +Total Time: 01h:28m:12s Compiles Completed: 30/30 -Tests Completed: 155/155 +Tests Completed: 154/155 +Failed Tests: +* TEST control_p8_atmlnd_sbs_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_wcoss2/run_control_p8_atmlnd_sbs_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: +bcc92327e9e244c4ca9db1707f4df177799426b2 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (da95cc4) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +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-20240419 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66976 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atml_intel' [10:25, 10:08] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:51, 01:10](1543 MB) + +SYNOPSIS: +Starting Date/Time: 20240423 20:04:01 +Ending Date/Time: 20240423 20:27:55 +Total Time: 00h:24m:14s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/rt.sh b/tests/rt.sh index 201ce697f8..5279f68ff8 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -62,10 +62,6 @@ update_rtconf() { [[ -s "${NEW_BASELINES_FILE}" ]] || die "${NEW_BASELINES_FILE} is empty, exiting..." TEST_WITH_COMPILE=() readarray -t TEST_WITH_COMPILE < "${NEW_BASELINES_FILE}" - # else USER CHOSE THE -l OPTION - elif [[ ${DEFINE_CONF_FILE} == true ]]; then - echo "No update needed to TESTS_FILE" - return # else USER CHOSE THE -n OPTION elif [[ ${RUN_SINGLE_TEST} == true ]]; then TEST_WITH_COMPILE=("${SRT_NAME} ${SRT_COMPILER}") @@ -662,6 +658,8 @@ done [[ ${KEEP_RUNDIR} == true && ${delete_rundir} == true ]] && die "-k and -d options cannot be used at the same time" [[ ${ECFLOW} == true && ${ROCOTO} == true ]] && die "-r and -e options cannot be used at the same time" [[ ${CREATE_BASELINE} == true && ${RTPWD_NEW_BASELINE} == true ]] && die "-c and -m options cannot be used at the same time" +#B&N not run together +[[ ${NEW_BASELINES_FILE} != '' && ${RUN_SINGLE_TEST} == true ]] && die "-b and -n options cannot be used at the same time" [[ -o xtrace ]] && set_x='set -x' || set_x='set +x' @@ -1029,11 +1027,6 @@ case ${MACHINE_ID} in esac eval "${set_x}" -# BEFORE MOVING ANY FURTHER LETS CHECK THAT DISKNM/STMP/PTMP ALL EXIST -[[ -d ${DISKNM} ]] || die "ERROR: DISKNM: ${DISKNM} -- DOES NOT EXIST" -[[ -d ${STMP} ]] || die "ERROR: STMP: ${STMP} -- DOES NOT EXIST" -[[ -d ${PTMP} ]] || die "ERROR: PTMP: ${PTMP} -- DOES NOT EXIST" - mkdir -p "${STMP}/${USER}" NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST @@ -1046,6 +1039,11 @@ echo "Linking ${RUNDIR_ROOT} to ${PATHRT}/run_dir" ln -s "${RUNDIR_ROOT}" "${PATHRT}/run_dir" echo "Run regression test in: ${RUNDIR_ROOT}" +# BEFORE MOVING ANY FURTHER LETS CHECK THAT DISKNM/STMP/PTMP ALL EXIST +[[ -d ${DISKNM} ]] || die "ERROR: DISKNM: ${DISKNM} -- DOES NOT EXIST" +[[ -d ${STMP} ]] || die "ERROR: STMP: ${STMP} -- DOES NOT EXIST" +[[ -d ${PTMP} ]] || die "ERROR: PTMP: ${PTMP} -- DOES NOT EXIST" + update_rtconf if [[ ${TESTS_FILE} =~ '35d' ]] || [[ ${TESTS_FILE} =~ 'weekly' ]]; then From f234a3e42f2a03095f53fe1708a9c6b8a8993a33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ufuk=20Turun=C3=A7o=C4=9Flu?= Date: Tue, 30 Apr 2024 11:35:25 -0600 Subject: [PATCH 05/16] Fix for land component model (#2191) * UFSWM - fix fully coupled land component configuration * NOAHMP - get fixed information from surface file --- NOAHMP-interface/noahmp | 2 +- cmake/Intel.cmake | 3 + tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 82 +- tests/logs/RT-run-Derecho.log | 415 ---------- tests/logs/RT-run-Hercules.log | 16 - tests/logs/RegressionTests_acorn.log | 531 ++++++------ tests/logs/RegressionTests_derecho.log | 616 ++++++++------ tests/logs/RegressionTests_gaea.log | 589 ++++++++------ tests/logs/RegressionTests_hera.log | 764 ++++++++++-------- tests/logs/RegressionTests_hercules.log | 762 +++++++++-------- tests/logs/RegressionTests_jet.log | 541 ++++++------- tests/logs/RegressionTests_orion.log | 597 +++++++------- tests/logs/RegressionTests_wcoss2.log | 525 ++++++------ tests/rt.conf | 3 + tests/rt.sh | 72 +- tests/test_changes.list | 18 +- tests/tests/control_p8_atmlnd | 1 + tests/tests/control_p8_atmlnd_debug | 84 ++ tests/tests/control_p8_atmlnd_sbs | 1 + tests/tests/control_restart_p8_atmlnd | 1 + 23 files changed, 2721 insertions(+), 2976 deletions(-) delete mode 100644 tests/logs/RT-run-Derecho.log delete mode 100644 tests/logs/RT-run-Hercules.log create mode 100644 tests/tests/control_p8_atmlnd_debug diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index 6a51f0295b..1e259014c1 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit 6a51f0295bc1a877475b527157a33aa86eb532fe +Subproject commit 1e259014c1eba9070cec7027d8b4b479ae54275a diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index a18ff15fc2..73564f1783 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -7,6 +7,9 @@ set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 5462") # remark #7712: This variable has not been used. set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 7712") +# remark #8291: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W>=D+7'. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 8291") + if(CMAKE_Platform STREQUAL "derecho.intel") set(CMAKE_Fortran_LINK_FLAGS "-Wl,--copy-dt-needed-entries") endif() diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 2c9c09b289..ba022070b2 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240419 +export BL_DATE=20240426 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 1c5bcbbd00..1390b3f6f6 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Apr 24 12:38:17 UTC 2024 +Mon Apr 29 18:57:13 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.967845 - 0: The maximum resident set size (KB) = 1253216 + 0: The total amount of wall time = 269.680202 + 0: The maximum resident set size (KB) = 1266668 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/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 = 960.176678 - 0: The maximum resident set size (KB) = 1233464 + 0: The total amount of wall time = 949.326805 + 0: The maximum resident set size (KB) = 1255152 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/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 = 238.109868 - 0: The maximum resident set size (KB) = 1235600 + 0: The total amount of wall time = 240.344326 + 0: The maximum resident set size (KB) = 1245676 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/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 = 239.999110 - 0: The maximum resident set size (KB) = 1231020 + 0: The total amount of wall time = 237.351607 + 0: The maximum resident set size (KB) = 1245716 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/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 = 241.494846 - 0: The maximum resident set size (KB) = 1230996 + 0: The total amount of wall time = 242.201971 + 0: The maximum resident set size (KB) = 1246024 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/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 = 240.187367 - 0: The maximum resident set size (KB) = 1237016 + 0: The total amount of wall time = 238.461943 + 0: The maximum resident set size (KB) = 1245616 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/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 = 239.880609 - 0: The maximum resident set size (KB) = 1228084 + 0: The total amount of wall time = 249.430767 + 0: The maximum resident set size (KB) = 1247248 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Apr 24 13:54:57 UTC 2024 -Elapsed time: 01h:16m:40s. Have a nice day! +Mon Apr 29 20:17:04 UTC 2024 +Elapsed time: 01h:19m:51s. 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 29f8955f5e..4e0876efed 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 Apr 24 14:04:01 UTC 2024 +Mon Apr 29 23:05:39 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/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 = 1311.811572 - 0: The maximum resident set size (KB) = 1340536 + 0: The total amount of wall time = 1323.060262 + 0: The maximum resident set size (KB) = 1364380 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/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 = 389.794167 - 0: The maximum resident set size (KB) = 1341484 + 0: The total amount of wall time = 393.654864 + 0: The maximum resident set size (KB) = 1360348 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/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 = 394.333320 - 0: The maximum resident set size (KB) = 1339512 + 0: The total amount of wall time = 398.993468 + 0: The maximum resident set size (KB) = 1358812 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Apr 24 15:05:09 UTC 2024 -Elapsed time: 01h:01m:09s. Have a nice day! +Tue Apr 30 00:03:24 UTC 2024 +Elapsed time: 00h:57m:46s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index c62b1ed7b4..6e16879d1f 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,28 +1,9 @@ -Wed Apr 24 19:38:47 UTC 2024 +Tue Apr 30 00:26:07 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/bit_base_bit_base -Checking test bit_base results .... -Moving baseline bit_base files .... - Moving dynf000.nc .........OK - Moving dynf006.nc .........OK - Moving phyf000.nc .........OK - Moving phyf006.nc .........OK - Moving PRSLEV.GrbF00 .........OK - Moving PRSLEV.GrbF06 .........OK - Moving NATLEV.GrbF00 .........OK - Moving NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 1236.978294 - 0: The maximum resident set size (KB) = 577672 - -Test bit_base PASS - - baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -33,14 +14,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2229.582684 - 0: The maximum resident set size (KB) = 541864 + 0: The total amount of wall time = 2131.450659 + 0: The maximum resident set size (KB) = 555224 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -52,15 +33,15 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2186.237690 - 0: The maximum resident set size (KB) = 539180 + 0: The total amount of wall time = 2150.481127 + 0: The maximum resident set size (KB) = 553380 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/std_std -Checking test std results .... +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/thr_thr +Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK Comparing phyf000.nc .....USING NCCMP......OK @@ -70,29 +51,36 @@ Checking test std results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2172.179940 - 0: The maximum resident set size (KB) = 541092 + 0: The total amount of wall time = 2147.836334 + 0: The maximum resident set size (KB) = 554792 -Test std PASS +Test thr PASS +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Tue Apr 30 02:20:21 UTC 2024 +Elapsed time: 01h:54m:14s. Have a nice day! +Tue Apr 30 16:20:31 UTC 2024 +Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/thr_thr -Checking test thr results .... - Comparing dynf000.nc .....USING NCCMP......OK - Comparing dynf006.nc .....USING NCCMP......OK - Comparing phyf000.nc .....USING NCCMP......OK - Comparing phyf006.nc .....USING NCCMP......OK - Comparing PRSLEV.GrbF00 .....USING CMP......OK - Comparing PRSLEV.GrbF06 .....USING CMP......OK - Comparing NATLEV.GrbF00 .....USING CMP......OK - Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2094.600637 - 0: The maximum resident set size (KB) = 541332 +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1270533/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 1420.618445 + 0: The maximum resident set size (KB) = 583292 -Test thr PASS +Test bit_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Apr 24 23:19:25 UTC 2024 -Elapsed time: 03h:40m:38s. Have a nice day! +Tue Apr 30 16:49:13 UTC 2024 +Elapsed time: 00h:28m:43s. Have a nice day! diff --git a/tests/logs/RT-run-Derecho.log b/tests/logs/RT-run-Derecho.log deleted file mode 100644 index 9dae8589b0..0000000000 --- a/tests/logs/RT-run-Derecho.log +++ /dev/null @@ -1,415 +0,0 @@ -******Regression Testing Script Started****** -derecho6 -Machine: derecho -Account: nral0032 -rt.sh: Setting up derecho... -Linking /glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018 to /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2241/tests/run_dir -Run regression test in: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018 -rt.sh: Checking & Updating test configuration... -No update needed to rt.conf -Verifying ECFLOW support... -rt_utils.sh: s2swa_32bit_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_control_p8_mixedmode_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_p8_mixedmode_intel: Creating ECFLOW run task -rt_utils.sh: s2swa_32bit_pdlib_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_control_gfsv17_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_gfsv17_intel: Creating ECFLOW run task -rt_utils.sh: cpld_control_gfsv17_iau_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_gfsv17_iau_intel: Creating ECFLOW run task -rt_utils.sh: cpld_restart_gfsv17_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_restart_gfsv17_intel: Creating ECFLOW run task -rt_utils.sh: cpld_mpi_gfsv17_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_mpi_gfsv17_intel: Creating ECFLOW run task -rt_utils.sh: s2swa_32bit_pdlib_debug_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_debug_gfsv17_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_debug_gfsv17_intel: Creating ECFLOW run task -rt_utils.sh: s2swa_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_control_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_control_p8.v2.sfc_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_p8.v2.sfc_intel: Creating ECFLOW run task -rt_utils.sh: cpld_restart_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_restart_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_control_qr_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_qr_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_restart_qr_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_restart_qr_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_decomp_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_decomp_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_mpi_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_mpi_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_control_ciceC_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_ciceC_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_control_c192_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_c192_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_restart_c192_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_restart_c192_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_bmark_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_bmark_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_restart_bmark_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_restart_bmark_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_s2sa_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_s2sa_p8_intel: Creating ECFLOW run task -rt_utils.sh: s2sw_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_control_noaero_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_noaero_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_control_nowave_noaero_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_nowave_noaero_p8_intel: Creating ECFLOW run task -rt_utils.sh: s2swa_debug_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_debug_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_debug_p8_intel: Creating ECFLOW run task -rt_utils.sh: s2sw_debug_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_debug_noaero_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_debug_noaero_p8_intel: Creating ECFLOW run task -rt_utils.sh: s2s_aoflux_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_control_noaero_p8_agrid_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_noaero_p8_agrid_intel: Creating ECFLOW run task -rt_utils.sh: s2s_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_control_c48_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_c48_intel: Creating ECFLOW run task -rt_utils.sh: s2swa_faster_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_control_p8_faster_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_p8_faster_intel: Creating ECFLOW run task -rt_utils.sh: s2sw_pdlib_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_control_pdlib_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_control_pdlib_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_restart_pdlib_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_restart_pdlib_p8_intel: Creating ECFLOW run task -rt_utils.sh: cpld_mpi_pdlib_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_mpi_pdlib_p8_intel: Creating ECFLOW run task -rt_utils.sh: s2sw_pdlib_debug_intel: Creating ECFLOW compile task -rt_utils.sh: cpld_debug_pdlib_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: cpld_debug_pdlib_p8_intel: Creating ECFLOW run task -rt_utils.sh: atm_dyn32_intel: Creating ECFLOW compile task -rt_utils.sh: control_flake_intel: Computing PET bounds and tasks. -rt_utils.sh: control_flake_intel: Creating ECFLOW run task -rt_utils.sh: control_CubedSphereGrid_intel: Computing PET bounds and tasks. -rt_utils.sh: control_CubedSphereGrid_intel: Creating ECFLOW run task -rt_utils.sh: control_CubedSphereGrid_parallel_intel: Computing PET bounds and tasks. -rt_utils.sh: control_CubedSphereGrid_parallel_intel: Creating ECFLOW run task -rt_utils.sh: control_latlon_intel: Computing PET bounds and tasks. -rt_utils.sh: control_latlon_intel: Creating ECFLOW run task -rt_utils.sh: control_wrtGauss_netcdf_parallel_intel: Computing PET bounds and tasks. -rt_utils.sh: control_wrtGauss_netcdf_parallel_intel: Creating ECFLOW run task -rt_utils.sh: control_c48_intel: Computing PET bounds and tasks. -rt_utils.sh: control_c48_intel: Creating ECFLOW run task -rt_utils.sh: control_c48.v2.sfc_intel: Computing PET bounds and tasks. -rt_utils.sh: control_c48.v2.sfc_intel: Creating ECFLOW run task -rt_utils.sh: control_c192_intel: Computing PET bounds and tasks. -rt_utils.sh: control_c192_intel: Creating ECFLOW run task -rt_utils.sh: control_c384_intel: Computing PET bounds and tasks. -rt_utils.sh: control_c384_intel: Creating ECFLOW run task -rt_utils.sh: control_c384gdas_intel: Computing PET bounds and tasks. -rt_utils.sh: control_c384gdas_intel: Creating ECFLOW run task -rt_utils.sh: control_stochy_intel: Computing PET bounds and tasks. -rt_utils.sh: control_stochy_intel: Creating ECFLOW run task -rt_utils.sh: control_stochy_restart_intel: Computing PET bounds and tasks. -rt_utils.sh: control_stochy_restart_intel: Creating ECFLOW run task -rt_utils.sh: control_lndp_intel: Computing PET bounds and tasks. -rt_utils.sh: control_lndp_intel: Creating ECFLOW run task -rt_utils.sh: control_iovr4_intel: Computing PET bounds and tasks. -rt_utils.sh: control_iovr4_intel: Creating ECFLOW run task -rt_utils.sh: control_iovr5_intel: Computing PET bounds and tasks. -rt_utils.sh: control_iovr5_intel: Creating ECFLOW run task -rt_utils.sh: control_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: control_p8_intel: Creating ECFLOW run task -rt_utils.sh: control_p8.v2.sfc_intel: Computing PET bounds and tasks. -rt_utils.sh: control_p8.v2.sfc_intel: Creating ECFLOW run task -rt_utils.sh: control_p8_ugwpv1_intel: Computing PET bounds and tasks. -rt_utils.sh: control_p8_ugwpv1_intel: Creating ECFLOW run task -rt_utils.sh: control_restart_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: control_restart_p8_intel: Creating ECFLOW run task -rt_utils.sh: control_noqr_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: control_noqr_p8_intel: Creating ECFLOW run task -rt_utils.sh: control_restart_noqr_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: control_restart_noqr_p8_intel: Creating ECFLOW run task -rt_utils.sh: control_decomp_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: control_decomp_p8_intel: Creating ECFLOW run task -rt_utils.sh: control_p8_lndp_intel: Computing PET bounds and tasks. -rt_utils.sh: control_p8_lndp_intel: Creating ECFLOW run task -rt_utils.sh: control_p8_rrtmgp_intel: Computing PET bounds and tasks. -rt_utils.sh: control_p8_rrtmgp_intel: Creating ECFLOW run task -rt_utils.sh: control_p8_mynn_intel: Computing PET bounds and tasks. -rt_utils.sh: control_p8_mynn_intel: Creating ECFLOW run task -rt_utils.sh: merra2_thompson_intel: Computing PET bounds and tasks. -rt_utils.sh: merra2_thompson_intel: Creating ECFLOW run task -rt_utils.sh: regional_control_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_control_intel: Creating ECFLOW run task -rt_utils.sh: regional_restart_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_restart_intel: Creating ECFLOW run task -rt_utils.sh: regional_decomp_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_decomp_intel: Creating ECFLOW run task -rt_utils.sh: regional_noquilt_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_noquilt_intel: Creating ECFLOW run task -rt_utils.sh: regional_netcdf_parallel_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_netcdf_parallel_intel: Creating ECFLOW run task -rt_utils.sh: regional_2dwrtdecomp_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_2dwrtdecomp_intel: Creating ECFLOW run task -rt_utils.sh: regional_wofs_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_wofs_intel: Creating ECFLOW run task -rt_utils.sh: rrfs_intel: Creating ECFLOW compile task -rt_utils.sh: rap_control_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_control_intel: Creating ECFLOW run task -rt_utils.sh: regional_spp_sppt_shum_skeb_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_spp_sppt_shum_skeb_intel: Creating ECFLOW run task -rt_utils.sh: rap_decomp_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_decomp_intel: Creating ECFLOW run task -rt_utils.sh: rap_restart_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_restart_intel: Creating ECFLOW run task -rt_utils.sh: rap_sfcdiff_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_sfcdiff_intel: Creating ECFLOW run task -rt_utils.sh: rap_sfcdiff_decomp_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_sfcdiff_decomp_intel: Creating ECFLOW run task -rt_utils.sh: rap_sfcdiff_restart_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_sfcdiff_restart_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_control_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_control_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_control_decomp_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_control_decomp_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_control_2threads_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_control_2threads_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_control_restart_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_control_restart_intel: Creating ECFLOW run task -rt_utils.sh: rrfs_v1beta_intel: Computing PET bounds and tasks. -rt_utils.sh: rrfs_v1beta_intel: Creating ECFLOW run task -rt_utils.sh: rrfs_v1nssl_intel: Computing PET bounds and tasks. -rt_utils.sh: rrfs_v1nssl_intel: Creating ECFLOW run task -rt_utils.sh: rrfs_v1nssl_nohailnoccn_intel: Computing PET bounds and tasks. -rt_utils.sh: rrfs_v1nssl_nohailnoccn_intel: Creating ECFLOW run task -rt_utils.sh: csawmg_intel: Creating ECFLOW compile task -rt_utils.sh: control_csawmg_intel: Computing PET bounds and tasks. -rt_utils.sh: control_csawmg_intel: Creating ECFLOW run task -rt_utils.sh: control_ras_intel: Computing PET bounds and tasks. -rt_utils.sh: control_ras_intel: Creating ECFLOW run task -rt_utils.sh: wam_intel: Creating ECFLOW compile task -rt_utils.sh: control_wam_intel: Computing PET bounds and tasks. -rt_utils.sh: control_wam_intel: Creating ECFLOW run task -rt_utils.sh: atm_faster_dyn32_intel: Creating ECFLOW compile task -rt_utils.sh: control_p8_faster_intel: Computing PET bounds and tasks. -rt_utils.sh: control_p8_faster_intel: Creating ECFLOW run task -rt_utils.sh: regional_control_faster_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_control_faster_intel: Creating ECFLOW run task -rt_utils.sh: atm_debug_dyn32_intel: Creating ECFLOW compile task -rt_utils.sh: control_CubedSphereGrid_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: control_CubedSphereGrid_debug_intel: Creating ECFLOW run task -rt_utils.sh: control_wrtGauss_netcdf_parallel_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: control_wrtGauss_netcdf_parallel_debug_intel: Creating ECFLOW run task -rt_utils.sh: control_stochy_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: control_stochy_debug_intel: Creating ECFLOW run task -rt_utils.sh: control_lndp_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: control_lndp_debug_intel: Creating ECFLOW run task -rt_utils.sh: control_csawmg_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: control_csawmg_debug_intel: Creating ECFLOW run task -rt_utils.sh: control_ras_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: control_ras_debug_intel: Creating ECFLOW run task -rt_utils.sh: control_diag_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: control_diag_debug_intel: Creating ECFLOW run task -rt_utils.sh: control_debug_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: control_debug_p8_intel: Creating ECFLOW run task -rt_utils.sh: regional_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_control_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_control_debug_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_control_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_control_debug_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_gf_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_gf_debug_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_c3_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_c3_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_unified_drag_suite_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_unified_drag_suite_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_diag_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_diag_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_cires_ugwp_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_cires_ugwp_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_unified_ugwp_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_unified_ugwp_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_lndp_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_lndp_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_progcld_thompson_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_progcld_thompson_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_noah_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_noah_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_sfcdiff_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_sfcdiff_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_noah_sfcdiff_cires_ugwp_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_noah_sfcdiff_cires_ugwp_debug_intel: Creating ECFLOW run task -rt_utils.sh: rrfs_v1beta_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rrfs_v1beta_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_clm_lake_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_clm_lake_debug_intel: Creating ECFLOW run task -rt_utils.sh: rap_flake_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_flake_debug_intel: Creating ECFLOW run task -rt_utils.sh: gnv1_c96_no_nest_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: gnv1_c96_no_nest_debug_intel: Creating ECFLOW run task -rt_utils.sh: wam_debug_intel: Creating ECFLOW compile task -rt_utils.sh: control_wam_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: control_wam_debug_intel: Creating ECFLOW run task -rt_utils.sh: rrfs_dyn32_phy32_intel: Creating ECFLOW compile task -rt_utils.sh: regional_spp_sppt_shum_skeb_dyn32_phy32_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_spp_sppt_shum_skeb_dyn32_phy32_intel: Creating ECFLOW run task -rt_utils.sh: rap_control_dyn32_phy32_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_control_dyn32_phy32_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_control_dyn32_phy32_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_control_dyn32_phy32_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_control_decomp_dyn32_phy32_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_control_decomp_dyn32_phy32_intel: Creating ECFLOW run task -rt_utils.sh: rap_restart_dyn32_phy32_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_restart_dyn32_phy32_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_control_restart_dyn32_phy32_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_control_restart_dyn32_phy32_intel: Creating ECFLOW run task -rt_utils.sh: rrfs_dyn32_phy32_faster_intel: Creating ECFLOW compile task -rt_utils.sh: conus13km_control_intel: Computing PET bounds and tasks. -rt_utils.sh: conus13km_control_intel: Creating ECFLOW run task -rt_utils.sh: conus13km_2threads_intel: Computing PET bounds and tasks. -rt_utils.sh: conus13km_2threads_intel: Creating ECFLOW run task -rt_utils.sh: conus13km_restart_mismatch_intel: Computing PET bounds and tasks. -rt_utils.sh: conus13km_restart_mismatch_intel: Creating ECFLOW run task -rt_utils.sh: rrfs_dyn64_phy32_intel: Creating ECFLOW compile task -rt_utils.sh: rap_control_dyn64_phy32_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_control_dyn64_phy32_intel: Creating ECFLOW run task -rt_utils.sh: rrfs_dyn32_phy32_debug_intel: Creating ECFLOW compile task -rt_utils.sh: rap_control_debug_dyn32_phy32_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_control_debug_dyn32_phy32_intel: Creating ECFLOW run task -rt_utils.sh: hrrr_control_debug_dyn32_phy32_intel: Computing PET bounds and tasks. -rt_utils.sh: hrrr_control_debug_dyn32_phy32_intel: Creating ECFLOW run task -rt_utils.sh: conus13km_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: conus13km_debug_intel: Creating ECFLOW run task -rt_utils.sh: conus13km_debug_qr_intel: Computing PET bounds and tasks. -rt_utils.sh: conus13km_debug_qr_intel: Creating ECFLOW run task -rt_utils.sh: conus13km_radar_tten_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: conus13km_radar_tten_debug_intel: Creating ECFLOW run task -rt_utils.sh: rrfs_dyn64_phy32_debug_intel: Creating ECFLOW compile task -rt_utils.sh: rap_control_dyn64_phy32_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: rap_control_dyn64_phy32_debug_intel: Creating ECFLOW run task -rt_utils.sh: hafsw_intel: Creating ECFLOW compile task -rt_utils.sh: hafs_regional_atm_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_atm_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_atm_thompson_gfdlsf_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_atm_thompson_gfdlsf_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_atm_ocn_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_atm_ocn_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_atm_wav_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_atm_wav_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_atm_ocn_wav_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_atm_ocn_wav_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_1nest_atm_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_1nest_atm_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_telescopic_2nests_atm_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_telescopic_2nests_atm_intel: Creating ECFLOW run task -rt_utils.sh: hafs_global_1nest_atm_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_global_1nest_atm_intel: Creating ECFLOW run task -rt_utils.sh: hafs_global_multiple_4nests_atm_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_global_multiple_4nests_atm_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_specified_moving_1nest_atm_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_specified_moving_1nest_atm_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_storm_following_1nest_atm_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_storm_following_1nest_atm_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_intel: Creating ECFLOW run task -rt_utils.sh: hafs_global_storm_following_1nest_atm_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_global_storm_following_1nest_atm_intel: Creating ECFLOW run task -rt_utils.sh: gnv1_nested_intel: Computing PET bounds and tasks. -rt_utils.sh: gnv1_nested_intel: Creating ECFLOW run task -rt_utils.sh: hafsw_debug_intel: Creating ECFLOW compile task -rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_debug_intel: Creating ECFLOW run task -rt_utils.sh: hafsw_faster_intel: Creating ECFLOW compile task -rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: Creating ECFLOW run task -rt_utils.sh: hafs_mom6w_intel: Creating ECFLOW compile task -rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: Creating ECFLOW run task -rt_utils.sh: hafs_all_intel: Creating ECFLOW compile task -rt_utils.sh: hafs_regional_docn_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_docn_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_docn_oisst_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_docn_oisst_intel: Creating ECFLOW run task -rt_utils.sh: hafs_regional_datm_cdeps_intel: Computing PET bounds and tasks. -rt_utils.sh: hafs_regional_datm_cdeps_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_intel: Creating ECFLOW compile task -rt_utils.sh: datm_cdeps_control_cfsr_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_control_cfsr_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_restart_cfsr_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_restart_cfsr_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_control_gefs_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_control_gefs_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_iau_gefs_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_iau_gefs_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_stochy_gefs_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_stochy_gefs_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_ciceC_cfsr_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_ciceC_cfsr_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_bulk_cfsr_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_bulk_cfsr_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_bulk_gefs_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_bulk_gefs_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_mx025_cfsr_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_mx025_cfsr_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_mx025_gefs_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_mx025_gefs_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_multiple_files_cfsr_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_multiple_files_cfsr_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_3072x1536_cfsr_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_3072x1536_cfsr_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_gfs_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_gfs_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_debug_intel: Creating ECFLOW compile task -rt_utils.sh: datm_cdeps_debug_cfsr_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_debug_cfsr_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_faster_intel: Creating ECFLOW compile task -rt_utils.sh: datm_cdeps_control_cfsr_faster_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_control_cfsr_faster_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_land_intel: Creating ECFLOW compile task -rt_utils.sh: datm_cdeps_lnd_gswp3_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_lnd_gswp3_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_lnd_era5_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_lnd_era5_intel: Creating ECFLOW run task -rt_utils.sh: datm_cdeps_lnd_era5_rst_intel: Computing PET bounds and tasks. -rt_utils.sh: datm_cdeps_lnd_era5_rst_intel: Creating ECFLOW run task -rt_utils.sh: atml_intel: Creating ECFLOW compile task -rt_utils.sh: control_p8_atmlnd_sbs_intel: Computing PET bounds and tasks. -rt_utils.sh: control_p8_atmlnd_sbs_intel: Creating ECFLOW run task -rt_utils.sh: control_p8_atmlnd_intel: Computing PET bounds and tasks. -rt_utils.sh: control_p8_atmlnd_intel: Creating ECFLOW run task -rt_utils.sh: control_restart_p8_atmlnd_intel: Computing PET bounds and tasks. -rt_utils.sh: control_restart_p8_atmlnd_intel: Creating ECFLOW run task -rt_utils.sh: atmw_intel: Creating ECFLOW compile task -rt_utils.sh: atmwav_control_noaero_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: atmwav_control_noaero_p8_intel: Creating ECFLOW run task -rt_utils.sh: atmaero_intel: Creating ECFLOW compile task -rt_utils.sh: atmaero_control_p8_intel: Computing PET bounds and tasks. -rt_utils.sh: atmaero_control_p8_intel: Creating ECFLOW run task -rt_utils.sh: atmaero_control_p8_rad_intel: Computing PET bounds and tasks. -rt_utils.sh: atmaero_control_p8_rad_intel: Creating ECFLOW run task -rt_utils.sh: atmaero_control_p8_rad_micro_intel: Computing PET bounds and tasks. -rt_utils.sh: atmaero_control_p8_rad_micro_intel: Creating ECFLOW run task -rt_utils.sh: atmaq_debug_intel: Creating ECFLOW compile task -rt_utils.sh: regional_atmaq_debug_intel: Computing PET bounds and tasks. -rt_utils.sh: regional_atmaq_debug_intel: Creating ECFLOW run task -rt_utils.sh: Starting ECFLOW run -ECF_HOST: derecho6, ECF_PORT: 39982 -ecflow_server is NOT running on derecho6:39982 -Wed 24 Apr 2024 12:50:01 PM UTC - -User "38482" attempting to start ecf server on "derecho6" using ECF_PORT "39982" and with: -ECF_HOME : "/glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018/ecflow_server" -ECF_LOG : "derecho6.39982.ecf.log" -ECF_CHECK : "derecho6.39982.check" -ECF_CHECKOLD : "derecho6.39982.check.b" -ECF_OUT : "/dev/null" - -client version is Ecflow version(5.8.4) boost(1.78.0) compiler(gcc 12.2.0) protocol(JSON cereal 1.3.0) openssl(enabled) Compiled on Sep 20 2023 09:36:19 -Checking if the server is already running on derecho6 and port 39982 - -Backing up check point and log files - -OK starting ecFlow server... - -Placing server into RESTART mode... -restart of server failed -rt.sh finished -rt.sh: Cleaning up... -rt_utils.sh: Stopping ECFLOW Workflow... diff --git a/tests/logs/RT-run-Hercules.log b/tests/logs/RT-run-Hercules.log deleted file mode 100644 index 393c54d52a..0000000000 --- a/tests/logs/RT-run-Hercules.log +++ /dev/null @@ -1,16 +0,0 @@ -******Regression Testing Script Started****** -hercules-login-1.hpc.msstate.edu -Machine: hercules -Account: epic -rt.sh: Setting up hercules... -Linking /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3789786 to /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2241/tests/run_dir -Run regression test in: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3789786 -rt.sh: Checking & Updating test configuration... -No update needed to rt.conf -rt.sh: Getting error information... -Exited at line 1062 having code 1 -rt.sh: Exited abnormally, killing workflow and cleaning up -rt_utils.sh: Killing ECFLOW Workflow... -rt.sh finished -rt.sh: Cleaning up... -rt_utils.sh: Stopping ECFLOW Workflow... diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 19ed992c48..4f9b548922 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -64df90f39f00b9682ca74b29f783bd0a37994a4a +d35f6da7caf2a4d320aeb75613de67533a11d1b7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,10 +21,10 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,265 +35,268 @@ 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-20240419 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44890 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_105869 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:44] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [58:24, 01:49](3039 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:52] -PASS -- TEST 'cpld_control_gfsv17_intel' [52:45, 02:03](1649 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:56, 03:20](1773 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:30, 02:29](900 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 02:51](1622 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:19] -PASS -- TEST 'cpld_debug_gfsv17_intel' [04:31, 03:10](1683 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 10:44] -PASS -- TEST 'cpld_control_p8_intel' [58:24, 01:33](3065 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [58:24, 02:02](3066 MB) -PASS -- TEST 'cpld_restart_p8_intel' [49:22, 01:39](3121 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [58:24, 01:32](3089 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [49:22, 02:16](3142 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [58:24, 01:25](3379 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [58:24, 02:01](3064 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [58:25, 01:50](2994 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:24, 01:57](3065 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [58:24, 02:16](3031 MB) - -PASS -- COMPILE 's2sw_intel' [10:23, 10:10] -PASS -- TEST 'cpld_control_noaero_p8_intel' [59:25, 01:06](1644 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:25, 01:29](1696 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:33] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [59:25, 01:30](1697 MB) - -PASS -- COMPILE 's2s_intel' [10:24, 09:33] -PASS -- TEST 'cpld_control_c48_intel' [59:23, 01:03](2672 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:39] -PASS -- TEST 'cpld_control_p8_faster_intel' [52:15, 02:16](3068 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 16:00] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:41, 01:36](1667 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:38, 01:33](972 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:13, 01:17](1638 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:03] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:31, 01:23](1687 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:51] -PASS -- TEST 'control_flake_intel' [55:07, 01:02](634 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [55:07, 00:41](1528 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [55:07, 00:47](1542 MB) -PASS -- TEST 'control_latlon_intel' [55:07, 00:44](1538 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [55:07, 00:54](1530 MB) -PASS -- TEST 'control_c48_intel' [55:06, 01:09](1611 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [55:06, 00:46](736 MB) -PASS -- TEST 'control_c192_intel' [55:07, 00:54](1649 MB) -PASS -- TEST 'control_c384_intel' [55:11, 01:52](1966 MB) -PASS -- TEST 'control_c384gdas_intel' [55:11, 02:44](1150 MB) -PASS -- TEST 'control_stochy_intel' [55:07, 00:55](590 MB) -PASS -- TEST 'control_stochy_restart_intel' [36:18, 00:21](392 MB) -PASS -- TEST 'control_lndp_intel' [55:07, 01:00](589 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_iovr4_intel' [, ]( MB) -PASS -- TEST 'control_iovr5_intel' [50:07, 00:25](583 MB) -PASS -- TEST 'control_p8_intel' [49:02, 01:38](1561 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [48:54, 02:13](1563 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [47:54, 02:26](1573 MB) -PASS -- TEST 'control_restart_p8_intel' [26:21, 01:57](751 MB) -PASS -- TEST 'control_noqr_p8_intel' [47:54, 02:13](1557 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [22:31, 01:59](754 MB) -PASS -- TEST 'control_decomp_p8_intel' [44:08, 02:04](1556 MB) -PASS -- TEST 'control_2threads_p8_intel' [42:21, 01:52](1657 MB) -PASS -- TEST 'control_p8_lndp_intel' [38:25, 01:06](1563 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [37:06, 02:25](1621 MB) -PASS -- TEST 'control_p8_mynn_intel' [36:18, 02:00](1572 MB) -PASS -- TEST 'merra2_thompson_intel' [33:31, 02:54](1578 MB) -PASS -- TEST 'regional_control_intel' [33:25, 00:25](630 MB) -PASS -- TEST 'regional_restart_intel' [27:21, 00:56](798 MB) -PASS -- TEST 'regional_decomp_intel' [33:14, 00:58](628 MB) -PASS -- TEST 'regional_2threads_intel' [31:23, 00:46](718 MB) -PASS -- TEST 'regional_noquilt_intel' [30:34, 01:00](1164 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [30:30, 00:52](630 MB) -PASS -- TEST 'regional_wofs_intel' [30:29, 00:27](1602 MB) - -PASS -- COMPILE 'ifi_intel' [09:22, 08:20] -PASS -- TEST 'regional_ifi_control_intel' [55:07, 00:28](630 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [55:07, 00:25](628 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [55:08, 01:12](725 MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 09:05] -PASS -- TEST 'rap_control_intel' [30:28, 02:41](970 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [30:17, 00:51](1146 MB) -PASS -- TEST 'rap_decomp_intel' [29:14, 02:07](974 MB) -PASS -- TEST 'rap_2threads_intel' [26:59, 02:10](1056 MB) -PASS -- TEST 'rap_restart_intel' [04:40, 02:17](843 MB) -PASS -- TEST 'rap_sfcdiff_intel' [25:53, 02:22](972 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:57, 02:06](971 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [48:53, 02:29](843 MB) -PASS -- TEST 'hrrr_control_intel' [23:55, 02:58](963 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [23:40, 02:52](966 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [23:35, 02:59](1045 MB) -PASS -- TEST 'hrrr_control_restart_intel' [51:39, 00:21](795 MB) -PASS -- TEST 'rrfs_v1beta_intel' [23:34, 02:41](965 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [23:24, 00:36](1929 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:06, 01:10](1919 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:43] -PASS -- TEST 'control_csawmg_intel' [22:59, 01:11](656 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 08:23] -PASS -- TEST 'control_wam_intel' [22:31, 00:26](331 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 08:58] -PASS -- TEST 'control_p8_faster_intel' [22:16, 02:06](1561 MB) -PASS -- TEST 'regional_control_faster_intel' [21:28, 00:33](626 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:21, 04:24] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [55:05, 01:01](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:10, 00:28](1559 MB) -PASS -- TEST 'control_stochy_debug_intel' [20:26, 00:34](757 MB) -PASS -- TEST 'control_lndp_debug_intel' [53:10, 00:16](757 MB) -PASS -- TEST 'control_csawmg_debug_intel' [18:07, 00:35](798 MB) -PASS -- TEST 'control_ras_debug_intel' [17:37, 00:25](768 MB) -PASS -- TEST 'control_diag_debug_intel' [17:29, 01:04](1619 MB) -PASS -- TEST 'control_debug_p8_intel' [15:28, 01:15](1588 MB) -PASS -- TEST 'regional_debug_intel' [15:14, 00:45](687 MB) -PASS -- TEST 'rap_control_debug_intel' [04:26, 00:54](1145 MB) -PASS -- TEST 'hrrr_control_debug_intel' [03:36, 00:54](1140 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [55:40, 00:35](1140 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [54:58, 01:18](1145 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [54:39, 00:33](1145 MB) -PASS -- TEST 'rap_diag_debug_intel' [42:00, 00:42](1230 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [53:33, 00:32](1145 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [53:19, 00:44](1145 MB) -PASS -- TEST 'rap_lndp_debug_intel' [52:30, 00:32](1149 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:44, 01:16](1145 MB) -PASS -- TEST 'rap_noah_debug_intel' [51:39, 00:40](1148 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [50:59, 00:48](1143 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:46, 00:47](1142 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [36:51, 00:29](1136 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [50:03, 00:28](1144 MB) -PASS -- TEST 'rap_flake_debug_intel' [49:21, 01:16](1145 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [49:04, 03:00](1151 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:20, 03:11] -PASS -- TEST 'control_wam_debug_intel' [48:53, 00:40](369 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:27, 08:24] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [48:41, 01:20](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [47:15, 02:26](851 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [44:36, 04:11](846 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [43:56, 02:12](908 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [42:24, 03:12](900 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:58, 02:28](847 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:46, 01:53](743 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:16, 01:07](730 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:29, 10:37] -PASS -- TEST 'conus13km_control_intel' [41:58, 01:16](1055 MB) -PASS -- TEST 'conus13km_2threads_intel' [28:24, 00:47](1036 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [26:27, 01:02](935 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:28, 08:32] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [41:54, 01:16](875 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:25, 03:17] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [41:50, 00:41](1020 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [41:45, 00:52](1023 MB) -PASS -- TEST 'conus13km_debug_intel' [41:42, 00:32](1106 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [41:36, 00:32](783 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [41:15, 00:52](1088 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:56, 01:07](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:23, 03:13] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [38:49, 00:33](1043 MB) - -PASS -- COMPILE 'hafsw_intel' [19:34, 09:48] -PASS -- TEST 'hafs_regional_atm_intel' [38:15, 01:39](673 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [38:06, 01:14](1025 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:59, 01:50](714 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [37:39, 02:01](753 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:19, 02:07](910 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:16, 01:35](432 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:41, 01:28](456 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [35:22, 01:32](330 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [34:18, 02:29](400 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [33:54, 00:57](472 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:01, 01:06](470 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [32:38, 01:37](532 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:11, 00:57](365 MB) -PASS -- TEST 'gnv1_nested_intel' [30:08, 01:11](730 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:26, 03:51] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:31, 01:00](632 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:35, 10:01] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:23, 01:05](577 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:55, 01:35](747 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [31:46, 09:53] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:18, 01:20](748 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:44, 09:31] -PASS -- TEST 'hafs_regional_docn_intel' [21:30, 01:49](710 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:15, 01:54](695 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [10:42, 00:39](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [17:36, 08:42] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:38, 01:09](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:14, 01:04](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:13, 00:44](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [53:11, 00:55](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [51:52, 00:13](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [51:28, 01:09](759 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [50:31, 01:05](759 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [49:18, 00:24](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [49:18, 00:54](645 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [49:13, 00:52](623 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [48:32, 00:59](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [47:59, 01:02](2011 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [41:34, 01:00](2015 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [24:44, 08:42] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [37:14, 01:08](760 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [16:33, 01:04] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [31:53, 00:20](265 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [29:15, 01:05](413 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:42, 00:59](412 MB) - -PASS -- COMPILE 'atml_intel' [25:45, 10:08] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [28:46, 02:10](1602 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [26:17, 02:33](1602 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [17:32, 00:50](803 MB) - -PASS -- COMPILE 'atmw_intel' [30:51, 09:03] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [26:08, 02:14](1603 MB) - -PASS -- COMPILE 'atmaero_intel' [22:44, 08:58] -PASS -- TEST 'atmaero_control_p8_intel' [14:04, 02:13](2915 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:04, 01:46](2974 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:04, 02:33](2984 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:31, 03:27] -PASS -- TEST 'regional_atmaq_debug_intel' [18:55, 01:58](4511 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:06, 02:05](3043 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:32, 18:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [05:54, 02:49](1652 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:21, 03:29](1773 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [33:36, 02:54](900 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:27, 02:54](1623 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:11] ( 1527 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:13, 02:28](1679 MB) + +PASS -- COMPILE 's2swa_intel' [11:25, 10:33] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:05, 01:37](3067 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:05, 01:56](3064 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:03, 02:05](3121 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:05, 01:33](3089 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:03, 02:02](3142 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_2threads_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:05, 02:13](3063 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:06, 01:59](2993 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:05, 02:05](3067 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:05, 02:18](3035 MB) + +PASS -- COMPILE 's2sw_intel' [10:24, 09:55] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [03:42, 01:10](1642 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [03:33, 02:25](1696 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:33] ( 2 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [14:07, 01:32](1695 MB) + +PASS -- COMPILE 's2s_intel' [10:23, 09:33] ( 2 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:06, 01:04](2673 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:06] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:01, 02:16](3070 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:34] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [03:33, 01:04](1669 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:28, 01:00](965 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:58, 01:40](1639 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 03:57] ( 1562 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:13, 01:19](1686 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:39] ( 3 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:48, 00:55](634 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:48, 00:42](1528 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:48, 01:07](1541 MB) +PASS -- TEST 'control_latlon_intel' [09:48, 00:57](1539 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:48, 00:56](1538 MB) +PASS -- TEST 'control_c48_intel' [09:47, 01:24](1611 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:47, 00:54](737 MB) +PASS -- TEST 'control_c192_intel' [09:48, 01:08](1649 MB) +PASS -- TEST 'control_c384_intel' [09:52, 01:49](1968 MB) +PASS -- TEST 'control_c384gdas_intel' [09:52, 03:15](1152 MB) +PASS -- TEST 'control_stochy_intel' [09:48, 00:38](591 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:09, 00:28](390 MB) +PASS -- TEST 'control_lndp_intel' [09:48, 00:19](588 MB) +PASS -- TEST 'control_iovr4_intel' [09:48, 01:14](586 MB) +PASS -- TEST 'control_iovr5_intel' [09:48, 01:04](584 MB) +PASS -- TEST 'control_p8_intel' [02:34, 02:53](1561 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [02:33, 02:22](1561 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [01:41, 02:07](1573 MB) +PASS -- TEST 'control_restart_p8_intel' [48:46, 02:57](751 MB) +PASS -- TEST 'control_noqr_p8_intel' [00:05, 02:21](1557 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [48:46, 02:59](754 MB) +PASS -- TEST 'control_decomp_p8_intel' [59:06, 01:27](1563 MB) +PASS -- TEST 'control_2threads_p8_intel' [58:06, 01:43](1645 MB) +PASS -- TEST 'control_p8_lndp_intel' [58:02, 00:59](1564 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [57:20, 02:21](1619 MB) +PASS -- TEST 'control_p8_mynn_intel' [56:28, 01:48](1577 MB) +PASS -- TEST 'merra2_thompson_intel' [55:21, 03:08](1576 MB) +PASS -- TEST 'regional_control_intel' [55:16, 01:09](629 MB) +PASS -- TEST 'regional_restart_intel' [48:11, 00:32](798 MB) +PASS -- TEST 'regional_decomp_intel' [55:12, 00:59](632 MB) +PASS -- TEST 'regional_2threads_intel' [55:07, 01:01](726 MB) +PASS -- TEST 'regional_noquilt_intel' [53:10, 01:05](1165 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [52:47, 00:36](630 MB) +PASS -- TEST 'regional_wofs_intel' [52:46, 00:52](1602 MB) + +PASS -- COMPILE 'ifi_intel' [09:22, 08:16] ( 2 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [09:48, 00:34](630 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [09:48, 00:37](629 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [09:49, 01:14](723 MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 09:03] ( 5 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [52:32, 02:28](973 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [52:28, 00:43](1147 MB) +PASS -- TEST 'rap_decomp_intel' [49:47, 02:06](974 MB) +PASS -- TEST 'rap_2threads_intel' [49:38, 02:50](1060 MB) +PASS -- TEST 'rap_restart_intel' [40:07, 02:54](844 MB) +PASS -- TEST 'rap_sfcdiff_intel' [49:25, 02:15](968 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:25, 03:01](972 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [00:16, 02:41](843 MB) +PASS -- TEST 'hrrr_control_intel' [49:03, 02:59](966 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [48:52, 02:15](965 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [48:18, 02:34](1045 MB) +PASS -- TEST 'hrrr_control_restart_intel' [20:58, 00:19](794 MB) +PASS -- TEST 'rrfs_v1beta_intel' [48:09, 03:06](965 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [47:29, 01:28](1923 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [46:56, 00:57](1918 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:41] ( 3 warnings ) +PASS -- TEST 'control_csawmg_intel' [14:28, 00:52](656 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 08:28] ( 2 warnings ) +PASS -- TEST 'control_wam_intel' [46:07, 00:40](329 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 09:05] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [46:06, 02:38](1560 MB) +PASS -- TEST 'regional_control_faster_intel' [46:02, 00:35](627 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:21, 04:25] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:50, 01:13](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:39, 00:30](1558 MB) +PASS -- TEST 'control_stochy_debug_intel' [44:12, 01:07](758 MB) +PASS -- TEST 'control_lndp_debug_intel' [44:10, 01:14](759 MB) +PASS -- TEST 'control_csawmg_debug_intel' [42:59, 01:05](800 MB) +PASS -- TEST 'control_ras_debug_intel' [42:46, 01:09](768 MB) +PASS -- TEST 'control_diag_debug_intel' [42:05, 01:08](1624 MB) +PASS -- TEST 'control_debug_p8_intel' [41:56, 00:52](1588 MB) +PASS -- TEST 'regional_debug_intel' [40:40, 01:06](688 MB) +PASS -- TEST 'rap_control_debug_intel' [40:07, 00:53](1147 MB) +PASS -- TEST 'hrrr_control_debug_intel' [40:07, 00:58](1139 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [40:04, 01:30](1146 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [38:54, 01:08](1140 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [38:22, 00:24](1145 MB) +PASS -- TEST 'rap_diag_debug_intel' [20:24, 01:26](1231 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:30, 01:08](1146 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:30, 01:05](1145 MB) +PASS -- TEST 'rap_lndp_debug_intel' [18:13, 00:29](1152 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [16:21, 00:59](1145 MB) +PASS -- TEST 'rap_noah_debug_intel' [15:02, 00:46](1144 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [14:14, 00:39](1143 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:00, 00:56](1142 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [13:54, 01:03](1139 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [13:24, 00:34](1145 MB) +PASS -- TEST 'rap_flake_debug_intel' [13:15, 00:35](1149 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:11, 02:40](1149 MB) + +PASS -- COMPILE 'wam_debug_intel' [28:43, 03:10] ( 857 warnings ) +PASS -- TEST 'control_wam_debug_intel' [11:49, 00:33](370 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [36:53, 08:31] ( 5 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:32, 01:23](1018 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:27, 02:22](850 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:33, 03:40](846 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 01:26](912 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:03, 03:22](898 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:00, 02:44](847 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [44:44, 02:20](744 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [44:52, 00:23](731 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:59, 10:38] ( 5 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:06, 01:00](1053 MB) +PASS -- TEST 'conus13km_2threads_intel' [47:36, 00:20](1035 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [44:52, 00:42](934 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [41:55, 08:34] ( 5 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:23, 01:18](872 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [44:00, 03:16] ( 789 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:52, 00:20](1021 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [03:14, 00:49](1021 MB) +PASS -- TEST 'conus13km_debug_intel' [03:09, 00:35](1111 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [02:58, 00:25](808 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [01:15, 00:22](1090 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:43, 00:56](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [45:02, 03:15] ( 789 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:43, 00:33](1043 MB) + +PASS -- COMPILE 'hafsw_intel' [10:29, 09:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [53:18, 01:39](670 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [53:18, 01:12](1023 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [53:16, 01:53](715 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [53:16, 01:53](761 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:17, 01:36](909 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:16, 00:53](443 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [52:08, 01:54](458 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [51:09, 01:54](332 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [50:39, 03:13](436 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [50:27, 01:27](468 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [49:08, 01:40](469 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [48:13, 01:42](540 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [48:03, 01:17](368 MB) +PASS -- TEST 'gnv1_nested_intel' [44:22, 01:45](732 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:35, 03:51] ( 1469 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:09, 01:38](632 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [25:47, 09:58] ( 2 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:57, 01:51](580 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:57, 01:30](745 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [33:49, 09:57] ( 2 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [27:40, 01:27](747 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:38, 09:30] ( 2 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [20:27, 02:00](710 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:27, 01:59](693 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:25, 01:10](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:31, 08:53] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:34, 00:30](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [10:07, 00:49](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:34, 00:18](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:29, 00:38](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:48, 01:00](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:04, 00:28](758 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:39, 00:21](758 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:38, 00:37](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [01:23, 01:46](647 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [01:17, 01:00](631 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [59:42, 00:42](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [58:40, 00:47](2015 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [56:12, 00:33](2016 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 08:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [53:19, 01:06](762 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:17, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [22:43, 00:47](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [22:43, 00:39](413 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [29:17, 00:22](412 MB) + +PASS -- COMPILE 'atml_intel' [07:26, 10:04] ( 10 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [53:16, 02:22](1597 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [52:59, 02:29](1602 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:58, 01:09](805 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:31, 04:08] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [49:50, 02:34](1630 MB) + +PASS -- COMPILE 'atmw_intel' [13:28, 09:09] ( 2 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [39:47, 02:00](1610 MB) + +PASS -- COMPILE 'atmaero_intel' [09:27, 08:54] ( 2 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [39:40, 02:14](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [39:40, 01:35](2970 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [39:40, 02:18](2988 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [54:08, 03:23] ( 886 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [43:47, 01:48](4484 MB) SYNOPSIS: -Starting Date/Time: 20240425 13:49:52 -Ending Date/Time: 20240425 17:25:30 -Total Time: 03h:36m:04s -Compiles Completed: 35/35 -Tests Completed: 172/173 +Starting Date/Time: 20240429 16:35:18 +Ending Date/Time: 20240429 19:55:24 +Total Time: 03h:20m:22s +Compiles Completed: 36/36 +Tests Completed: 173/174 Failed Tests: -* TEST control_iovr4_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_acorn/run_control_iovr4_intel.log +* TEST cpld_2threads_p8_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/uturuncoglu/ufs-weather-model/tests/logs/log_acorn/run_cpld_2threads_p8_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -306,7 +309,7 @@ Result: FAILURE ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -64df90f39f00b9682ca74b29f783bd0a37994a4a +d35f6da7caf2a4d320aeb75613de67533a11d1b7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -326,10 +329,10 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -340,20 +343,20 @@ 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-20240419 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28522 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_142305 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-b) - NEW BASELINES FROM FILE: test_changes.list -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:44] -PASS -- TEST 'control_iovr4_intel' [21:34, 00:52](583 MB) +PASS -- COMPILE 's2swa_intel' [11:24, 10:39] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_2threads_p8_intel' [50:22, 00:56](3379 MB) SYNOPSIS: -Starting Date/Time: 20240425 17:28:05 -Ending Date/Time: 20240425 17:42:03 -Total Time: 00h:14m:07s +Starting Date/Time: 20240429 19:58:16 +Ending Date/Time: 20240429 20:16:53 +Total Time: 00h:18m:42s Compiles Completed: 1/1 Tests Completed: 1/1 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 614b7b6b15..d871a84370 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -fe4bb76565de0a5f3261b276fa392d65cb046e96 +aef829f3311f718f3cef6b1102e849370da1a983 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,10 +21,10 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,269 +35,283 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_68317 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_44306 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:19, 19:02] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:58, 04:58](3073 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:16, 20:24] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 13:47](1689 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 15:04](1824 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:33, 07:07](959 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:06, 15:46](1665 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:16, 08:59] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:47, 21:22](1706 MB) - -PASS -- COMPILE 's2swa_intel' [20:17, 19:06] -PASS -- TEST 'cpld_control_p8_intel' [09:05, 05:38](3091 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:14, 05:33](3095 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:50, 03:17](3150 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:05, 05:33](3125 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:54, 03:20](3180 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 05:35](3090 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:27, 04:37](3385 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:11, 05:38](3101 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:09, 08:43](3634 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:48, 05:50](3616 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:34, 09:39](4341 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:41, 07:03](4648 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:35, 05:12](3064 MB) - -PASS -- COMPILE 's2sw_intel' [19:18, 18:31] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:46, 04:09](1685 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:59, 04:12](1727 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:15, 09:01] -PASS -- TEST 'cpld_debug_p8_intel' [09:56, 07:36](3151 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:15, 08:28] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:21, 05:10](1710 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:17, 14:05] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:53, 04:12](1728 MB) - -PASS -- COMPILE 's2s_intel' [15:17, 14:02] -PASS -- TEST 'cpld_control_c48_intel' [08:14, 06:35](2670 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:20, 22:47] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:27, 05:28](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:19, 19:28] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:55, 14:03](1708 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 07:16](1019 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:56, 16:00](1666 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:32] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:46, 22:54](1718 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:20] -PASS -- TEST 'control_flake_intel' [04:52, 03:23](667 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:25](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:54, 02:27](1572 MB) -PASS -- TEST 'control_latlon_intel' [04:31, 02:22](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:24](1568 MB) -PASS -- TEST 'control_c48_intel' [08:28, 06:13](1616 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:39, 05:17](734 MB) -PASS -- TEST 'control_c192_intel' [11:09, 08:39](1690 MB) -PASS -- TEST 'control_c384_intel' [16:38, 08:56](2011 MB) -PASS -- TEST 'control_c384gdas_intel' [17:05, 07:23](1199 MB) -PASS -- TEST 'control_stochy_intel' [02:43, 01:25](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:45, 00:52](443 MB) -PASS -- TEST 'control_lndp_intel' [02:42, 01:22](626 MB) -PASS -- TEST 'control_iovr4_intel' [03:42, 02:05](625 MB) -PASS -- TEST 'control_iovr5_intel' [03:42, 02:06](624 MB) -PASS -- TEST 'control_p8_intel' [04:27, 02:30](1601 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:28, 02:30](1598 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:29, 02:28](1602 MB) -PASS -- TEST 'control_restart_p8_intel' [03:24, 01:24](804 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:26, 02:30](1585 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:29, 01:23](805 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:40, 02:32](1591 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:28, 04:21](1605 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:17](1659 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:46, 02:30](1607 MB) -PASS -- TEST 'merra2_thompson_intel' [04:44, 02:48](1603 MB) -PASS -- TEST 'regional_control_intel' [06:07, 04:31](632 MB) -PASS -- TEST 'regional_restart_intel' [04:16, 02:33](800 MB) -PASS -- TEST 'regional_decomp_intel' [06:12, 04:43](629 MB) -PASS -- TEST 'regional_noquilt_intel' [06:03, 04:25](1159 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:04, 04:27](629 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:30](627 MB) -PASS -- TEST 'regional_wofs_intel' [07:07, 05:35](1606 MB) - -PASS -- COMPILE 'rrfs_intel' [12:14, 10:56] -PASS -- TEST 'rap_control_intel' [08:21, 06:06](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 03:41](1191 MB) -PASS -- TEST 'rap_decomp_intel' [08:22, 06:23](1006 MB) -PASS -- TEST 'rap_restart_intel' [05:16, 03:11](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:21, 06:04](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:15, 06:23](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:12, 04:35](881 MB) -PASS -- TEST 'hrrr_control_intel' [05:14, 03:13](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:18](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 02:49](1088 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:53, 01:44](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:05, 05:57](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:39, 07:21](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:10](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [11:13, 10:02] -PASS -- TEST 'control_csawmg_intel' [08:12, 05:48](695 MB) -PASS -- TEST 'control_ras_intel' [04:36, 02:51](660 MB) - -PASS -- COMPILE 'wam_intel' [10:13, 09:21] -PASS -- TEST 'control_wam_intel' [03:34, 01:53](382 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:20, 12:20] -PASS -- TEST 'control_p8_faster_intel' [04:52, 02:26](1606 MB) -PASS -- TEST 'regional_control_faster_intel' [06:16, 04:17](629 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:17, 08:31] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:09, 02:29](1595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:28](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:50](800 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:46, 02:33](798 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:06, 03:57](840 MB) -PASS -- TEST 'control_ras_debug_intel' [03:33, 02:40](806 MB) -PASS -- TEST 'control_diag_debug_intel' [04:38, 02:32](1666 MB) -PASS -- TEST 'control_debug_p8_intel' [04:10, 02:35](1628 MB) -PASS -- TEST 'regional_debug_intel' [17:13, 15:49](665 MB) -PASS -- TEST 'rap_control_debug_intel' [05:38, 04:39](1180 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:36, 04:33](1178 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:32, 04:35](1182 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:39](1181 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:43](1181 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:30, 04:51](1266 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:28, 04:44](1182 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:37, 04:42](1182 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:35, 04:48](1184 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:34, 04:30](1184 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:37, 04:48](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:27](1182 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:41, 04:34](1178 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:44, 05:30](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:37, 04:37](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 07:53](1187 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:12, 05:11] -PASS -- TEST 'control_wam_debug_intel' [05:24, 04:36](418 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:17, 09:30] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:45, 03:30](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:02, 05:07](884 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:15, 02:45](881 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 02:53](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:06, 03:52](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:47, 01:32](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:44] -PASS -- TEST 'conus13km_control_intel' [04:41, 01:52](1086 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:31, 00:58](1086 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:07](972 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 09:48] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:07, 03:36](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 06:04] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:29](1058 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:30, 04:24](1058 MB) -PASS -- TEST 'conus13km_debug_intel' [16:03, 13:24](1134 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:02, 13:34](818 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 13:26](1203 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:19, 05:58] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:34, 04:38](1081 MB) - -PASS -- COMPILE 'hafsw_intel' [17:21, 16:01] -PASS -- TEST 'hafs_regional_atm_intel' [06:57, 04:34](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:02, 05:02](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:24](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:48, 10:49](798 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:01](819 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:26, 04:40](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:47, 05:46](493 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:08, 02:21](393 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:59, 06:13](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:08, 03:15](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 03:02](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:37, 03:45](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:37, 01:16](427 MB) -PASS -- TEST 'gnv1_nested_intel' [05:13, 03:22](787 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:08] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:15, 11:58](612 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:20, 19:52] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 07:10](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:25, 07:09](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:19, 16:44] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:46, 05:17](679 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:19, 14:27] -PASS -- TEST 'hafs_regional_docn_intel' [07:49, 05:33](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:34, 05:33](737 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:21, 16:09](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:17, 07:52] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:29](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:29, 01:32](749 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:20](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:24, 02:24](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:24](648 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:28](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:31, 02:29](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:25, 02:23](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:17, 05:39](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:56, 05:39](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:28](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:35, 03:54](2016 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 03:54](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:11] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:29, 05:03](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:22, 07:48] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:32](759 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:20] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:11](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:05](458 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:37, 00:41](450 MB) - -PASS -- COMPILE 'atml_intel' [14:14, 13:00] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:35, 06:59](1628 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 06:22](1636 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 03:31](855 MB) - -PASS -- COMPILE 'atmw_intel' [13:20, 12:36] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:32](1641 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 11:05] -PASS -- TEST 'atmaero_control_p8_intel' [05:38, 03:38](2951 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:38, 04:15](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:19](3012 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:20, 06:30] -PASS -- TEST 'regional_atmaq_debug_intel' [25:29, 22:05](4531 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:14, 19:15] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:07, 04:52](3076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:14, 20:33] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:55, 13:44](1689 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:23, 14:55](1829 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:33, 07:00](958 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:02, 15:45](1659 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:14, 09:05] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 21:20](1705 MB) + +PASS -- COMPILE 's2swa_intel' [20:15, 19:14] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:52, 05:33](3097 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:00, 05:34](3090 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:27, 03:14](3149 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:52, 05:33](3129 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:27, 03:14](3182 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:38, 05:27](3091 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:24, 04:30](3384 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:56, 05:33](3099 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:39, 08:40](3635 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:27, 05:40](3613 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:39, 09:36](4345 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 06:47](4648 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:16](3070 MB) + +PASS -- COMPILE 's2sw_intel' [19:15, 18:31] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:41, 04:08](1681 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:55, 04:11](1736 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:13, 08:59] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:46, 07:43](3156 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:14, 08:31] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:26, 05:16](1704 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:09] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:56, 04:13](1733 MB) + +PASS -- COMPILE 's2s_intel' [15:15, 14:08] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:00, 06:31](2668 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:16, 22:40] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:29](3101 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:18, 19:41] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:35, 14:00](1707 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:57, 07:04](1017 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:45, 15:58](1675 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:33] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:39, 22:59](1714 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:17, 12:28] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:42, 03:22](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:24](1569 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 02:25](1573 MB) +PASS -- TEST 'control_latlon_intel' [04:29, 02:22](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:30, 02:23](1563 MB) +PASS -- TEST 'control_c48_intel' [08:30, 06:14](1612 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:41, 05:15](739 MB) +PASS -- TEST 'control_c192_intel' [11:06, 08:38](1690 MB) +PASS -- TEST 'control_c384_intel' [15:32, 08:50](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [15:15, 07:13](1200 MB) +PASS -- TEST 'control_stochy_intel' [02:37, 01:23](625 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_stochy_restart_intel' [, ]( MB) +PASS -- TEST 'control_lndp_intel' [02:35, 01:19](627 MB) +PASS -- TEST 'control_iovr4_intel' [03:37, 02:03](619 MB) +PASS -- TEST 'control_iovr5_intel' [03:34, 02:03](622 MB) +PASS -- TEST 'control_p8_intel' [04:33, 02:27](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:29, 02:27](1596 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:23, 02:25](1599 MB) +PASS -- TEST 'control_restart_p8_intel' [03:15, 01:23](801 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:34, 02:26](1585 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:21](808 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:33, 02:31](1598 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:33, 04:19](1594 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:35, 03:16](1653 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:36, 02:31](1606 MB) +PASS -- TEST 'merra2_thompson_intel' [04:36, 02:47](1607 MB) +PASS -- TEST 'regional_control_intel' [06:01, 04:29](631 MB) +PASS -- TEST 'regional_restart_intel' [04:12, 02:28](798 MB) +PASS -- TEST 'regional_decomp_intel' [06:04, 04:41](628 MB) +PASS -- TEST 'regional_noquilt_intel' [06:01, 04:23](1160 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 04:26](625 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:59, 04:28](632 MB) +PASS -- TEST 'regional_wofs_intel' [06:53, 05:36](1603 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 11:02] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:08, 06:06](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:28, 03:49](1194 MB) +PASS -- TEST 'rap_decomp_intel' [08:14, 06:19](1003 MB) +PASS -- TEST 'rap_restart_intel' [05:07, 03:13](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:11, 06:03](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:05, 06:20](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:05, 04:34](882 MB) +PASS -- TEST 'hrrr_control_intel' [05:06, 03:10](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:02, 03:15](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:46](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:41, 01:44](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:02, 05:56](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:39, 07:20](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:05](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:58] ( 6 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:00, 05:47](692 MB) +PASS -- TEST 'control_ras_intel' [04:32, 02:50](658 MB) + +PASS -- COMPILE 'wam_intel' [10:12, 09:28] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:25, 01:56](381 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:19, 12:23] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:36, 02:25](1594 MB) +PASS -- TEST 'regional_control_faster_intel' [06:01, 04:15](624 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:17, 08:20] ( 890 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:30](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:17, 02:26](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:39, 02:53](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:33](801 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:17, 04:00](838 MB) +PASS -- TEST 'control_ras_debug_intel' [03:28, 02:35](806 MB) +PASS -- TEST 'control_diag_debug_intel' [04:45, 02:32](1654 MB) +PASS -- TEST 'control_debug_p8_intel' [04:05, 02:38](1623 MB) +PASS -- TEST 'regional_debug_intel' [17:52, 16:13](661 MB) +PASS -- TEST 'rap_control_debug_intel' [05:34, 04:40](1179 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:31](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:40, 04:34](1181 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:30, 04:41](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:41](1178 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:59, 04:49](1265 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:41](1180 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:34, 04:43](1184 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:29, 04:42](1180 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 04:44](1180 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:30, 04:37](1179 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:29, 04:36](1179 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:30, 07:25](1179 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:44](1177 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 05:27](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:44](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:11, 08:00](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:12, 05:08] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:24, 04:36](424 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:18, 09:37] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:51, 03:25](1061 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:04, 05:05](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 02:45](882 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:59, 02:49](885 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:08, 03:49](797 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 01:31](780 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:13, 11:34] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:14, 01:50](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:44, 00:54](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:05](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 09:33] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:52, 03:35](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 05:31] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:40, 04:29](1060 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:22](1061 MB) +PASS -- TEST 'conus13km_debug_intel' [15:54, 13:22](1137 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 13:53](820 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:16](1204 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:18] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:30, 04:31](1082 MB) + +PASS -- COMPILE 'hafsw_intel' [16:18, 15:39] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:25, 04:26](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 04:56](1072 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:50, 06:19](777 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:43, 10:49](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:08, 11:56](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:15, 04:37](474 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:42, 05:39](492 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 02:15](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:40, 06:08](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:14](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:24, 03:00](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:26, 03:42](591 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:37, 01:10](426 MB) +PASS -- TEST 'gnv1_nested_intel' [05:14, 03:16](791 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:12, 06:49] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:34, 11:59](615 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:20, 19:25] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:25, 07:00](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:36, 07:04](692 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:18, 16:23] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:32, 05:15](677 MB) + +FAILED: UNABLE TO COMPILE -- COMPILE 'hafs_all_intel' [, ] +FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_docn_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_datm_cdeps_intel' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:36] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:28](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:30](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:32, 02:20](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:29, 02:22](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:22](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:26](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:28](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:31, 02:18](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:23, 05:35](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 05:35](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:26](748 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:26, 03:50](2016 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:26, 03:49](2019 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:17, 04:53] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:03](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 07:34] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:27](762 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:14] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:03](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:37, 01:00](453 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:31, 00:39](454 MB) + +PASS -- COMPILE 'atml_intel' [14:13, 12:51] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:38, 05:41](1631 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 05:16](1644 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:15, 02:48](856 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:19, 07:23] ( 885 warnings 2 remarks ) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_p8_atmlnd_debug_intel' [, ]( MB) + +PASS -- COMPILE 'atmw_intel' [14:13, 12:29] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:16, 01:31](1638 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 10:56] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:25, 03:35](2947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:11](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:14, 04:16](3011 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:05] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:06, 21:50](4535 MB) SYNOPSIS: -Starting Date/Time: 20240424 06:22:13 -Ending Date/Time: 20240424 07:49:24 -Total Time: 01h:27m:53s -Compiles Completed: 37/37 -Tests Completed: 171/172 +Starting Date/Time: 20240428 22:53:16 +Ending Date/Time: 20240429 00:51:54 +Total Time: 01h:59m:25s +Compiles Completed: 37/38 +Tests Completed: 168/173 +Failed Compiles: +* COMPILE hafs_all_intel: FAILED: UNABLE TO COMPILE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/compile_hafs_all_intel.log Failed Tests: -* TEST rap_cires_ugwp_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/work/zshrader/rt-2241/tests/logs/log_derecho/run_rap_cires_ugwp_debug_intel.log +* TEST control_stochy_restart_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/run_control_stochy_restart_intel.log +* TEST hafs_regional_docn_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST hafs_regional_docn_oisst_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST hafs_regional_datm_cdeps_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST control_p8_atmlnd_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/run_control_p8_atmlnd_debug_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -310,7 +324,7 @@ Result: FAILURE ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -fe4bb76565de0a5f3261b276fa392d65cb046e96 +7441d3bb7300d6f41e7eb17bd98aac0539164065 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -330,10 +344,10 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -344,20 +358,88 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_96038 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_14461 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'hafs_all_intel' [15:13, 13:53] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:13, 05:29](758 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:10, 05:31](734 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:02, 16:12](894 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:13, 12:20] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_stochy_intel' [02:24, 01:26](629 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:35, 00:51](441 MB) + +SYNOPSIS: +Starting Date/Time: 20240429 11:36:19 +Ending Date/Time: 20240429 12:11:02 +Total Time: 00h:34m:59s +Compiles Completed: 2/2 +Tests Completed: 5/5 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d35f6da7caf2a4d320aeb75613de67533a11d1b7 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_28144 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 08:38] -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:42](1183 MB) +PASS -- COMPILE 'atml_debug_intel' [08:19, 07:29] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:33, 05:28](1658 MB) SYNOPSIS: -Starting Date/Time: 20240424 08:20:30 -Ending Date/Time: 20240424 08:35:15 -Total Time: 00h:14m:49s +Starting Date/Time: 20240429 10:55:02 +Ending Date/Time: 20240429 11:10:55 +Total Time: 00h:16m:05s Compiles Completed: 1/1 Tests Completed: 1/1 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index fd4adb3416..add817f40d 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -7639d7a8818635cfa1836d63c56d424d895adb6d +fc1d99cd44c4dfa5f95d34deede2a4e0ff81577b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,10 +21,10 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,273 +35,338 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_155270 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_176475 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:12, 20:57] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:01, 07:26](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:16, 25:05] -PASS -- TEST 'cpld_control_gfsv17_intel' [17:43, 13:45](1687 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 14:45](1808 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:11](944 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:22, 15:22](1669 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:49] -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:10, 24:28](1706 MB) - -PASS -- COMPILE 's2swa_intel' [08:20, 07:49] -PASS -- TEST 'cpld_control_p8_intel' [14:09, 08:24](3097 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:48, 08:27](3097 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:18, 05:14](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:56, 08:45](3121 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:18, 05:44](3174 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:44, 07:07](3410 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [33:57, 08:19](3095 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:47, 07:27](3019 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:00, 08:19](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [24:12, 10:42](3264 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [22:41, 07:26](3601 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [45:00, 13:46](4038 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:40, 09:26](4346 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:24, 07:52](3065 MB) - -PASS -- COMPILE 's2sw_intel' [20:16, 19:28] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 05:01](1686 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:28, 05:29](1729 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:24] -PASS -- TEST 'cpld_debug_p8_intel' [17:56, 10:09](3129 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:28] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:29, 05:58](1699 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:13, 17:17] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:14, 05:34](1727 MB) - -PASS -- COMPILE 's2s_intel' [18:13, 17:15] -PASS -- TEST 'cpld_control_c48_intel' [09:11, 06:56](2664 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:12, 23:04] -PASS -- TEST 'cpld_control_p8_faster_intel' [14:58, 08:16](3100 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:14, 25:21] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:57, 15:36](1700 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:21, 08:10](999 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:56, 17:34](1681 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 13:59] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:51, 26:32](1718 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:14, 15:00] -PASS -- TEST 'control_flake_intel' [05:20, 03:48](675 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:14, 03:11](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:25, 03:07](1580 MB) -PASS -- TEST 'control_latlon_intel' [05:03, 03:03](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:06, 03:08](1568 MB) -PASS -- TEST 'control_c48_intel' [09:35, 06:40](1604 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:45, 05:40](724 MB) -PASS -- TEST 'control_c192_intel' [13:00, 10:02](1682 MB) -PASS -- TEST 'control_c384_intel' [23:55, 18:02](1984 MB) -PASS -- TEST 'control_c384gdas_intel' [28:28, 14:13](1185 MB) -PASS -- TEST 'control_stochy_intel' [03:20, 01:57](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:48, 01:40](431 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:52](628 MB) -PASS -- TEST 'control_iovr4_intel' [04:33, 02:38](623 MB) -PASS -- TEST 'control_iovr5_intel' [04:33, 02:38](622 MB) -PASS -- TEST 'control_p8_intel' [06:51, 03:24](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:31, 03:34](1607 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:04, 03:25](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [04:31, 01:52](789 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:34](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:31, 01:47](792 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:51, 03:29](1594 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:39, 02:49](1687 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:25, 05:27](1606 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:07, 04:19](1657 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:19, 03:41](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [08:01, 04:01](1604 MB) -PASS -- TEST 'regional_control_intel' [07:40, 05:02](615 MB) -PASS -- TEST 'regional_restart_intel' [04:26, 02:40](789 MB) -PASS -- TEST 'regional_decomp_intel' [07:14, 05:06](615 MB) -PASS -- TEST 'regional_2threads_intel' [05:27, 02:55](756 MB) -PASS -- TEST 'regional_noquilt_intel' [07:09, 04:41](1155 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:02, 04:45](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:44](615 MB) -PASS -- TEST 'regional_wofs_intel' [09:36, 06:23](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [14:17, 14:07] -PASS -- TEST 'rap_control_intel' [09:22, 06:57](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:25, 04:25](1187 MB) -PASS -- TEST 'rap_decomp_intel' [09:39, 07:08](1009 MB) -PASS -- TEST 'rap_2threads_intel' [08:56, 06:13](1097 MB) -PASS -- TEST 'rap_restart_intel' [06:15, 03:59](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:14, 06:49](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:41, 07:11](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:08, 04:52](880 MB) -PASS -- TEST 'hrrr_control_intel' [06:34, 03:53](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:48, 04:20](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:54, 03:13](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:45, 01:58](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:06, 07:05](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:04, 08:02](1967 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:57, 08:18](1952 MB) - -PASS -- COMPILE 'csawmg_intel' [14:17, 13:44] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:51](695 MB) -PASS -- TEST 'control_ras_intel' [04:50, 03:31](657 MB) - -PASS -- COMPILE 'wam_intel' [14:13, 13:56] -PASS -- TEST 'control_wam_intel' [03:39, 02:19](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:12, 17:00] -PASS -- TEST 'control_p8_faster_intel' [06:45, 03:19](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [06:22, 04:38](614 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:12, 17:04] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:29, 03:07](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:56](1589 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:54, 03:11](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:55](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:22, 04:32](824 MB) -PASS -- TEST 'control_ras_debug_intel' [03:51, 02:53](793 MB) -PASS -- TEST 'control_diag_debug_intel' [04:49, 03:05](1640 MB) -PASS -- TEST 'control_debug_p8_intel' [05:19, 03:18](1618 MB) -PASS -- TEST 'regional_debug_intel' [18:22, 16:20](632 MB) -PASS -- TEST 'rap_control_debug_intel' [06:46, 05:09](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:42, 05:03](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:53, 05:00](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:52, 05:17](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:35, 05:19](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:58, 05:11](1251 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:44, 05:06](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 05:13](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:50, 05:14](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:43, 05:09](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:47, 05:00](1167 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:54, 05:20](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:55, 08:08](1166 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:49, 05:14](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:53, 05:56](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:59, 05:04](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:42, 08:28](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [15:17, 14:40] -PASS -- TEST 'control_wam_debug_intel' [09:47, 05:16](396 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 13:22] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [21:06, 03:47](1053 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:34, 05:56](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:52, 03:24](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:29, 05:21](950 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:10, 02:48](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [12:53, 03:40](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:33, 04:21](782 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:56, 02:07](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:13, 20:51] -PASS -- TEST 'conus13km_control_intel' [16:09, 02:09](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:02, 01:13](1074 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:21, 01:49](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:37] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:30, 04:40](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 10:41] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:53, 05:11](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:57, 05:00](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [25:53, 14:08](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:43, 14:19](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [19:40, 08:24](1108 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:35, 14:27](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:18, 34:50] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:59, 05:07](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [18:15, 17:13] -PASS -- TEST 'hafs_regional_atm_intel' [15:40, 05:21](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:44, 04:48](1059 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:58, 07:39](751 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [22:06, 11:30](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:16, 12:51](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:00, 05:21](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:37, 06:49](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [12:40, 03:02](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:39, 08:15](444 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:59, 03:44](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:06, 03:47](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:39, 04:51](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:07, 01:46](402 MB) -PASS -- TEST 'gnv1_nested_intel' [09:11, 04:19](766 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:16, 11:48] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:32, 13:03](584 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:12, 19:57] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:12, 07:51](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:15, 07:59](788 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [55:18, 54:16] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:48, 06:01](787 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:12, 16:22] -PASS -- TEST 'hafs_regional_docn_intel' [08:47, 06:08](745 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:33, 06:14](730 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:12, 20:07](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:11, 12:29] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:50, 02:37](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:38, 01:39](734 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:36, 02:38](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:53, 02:37](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:39, 02:28](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:47, 02:39](757 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:34](758 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:42, 02:26](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:46, 08:18](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:35, 08:17](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:44](756 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:44, 04:46](2012 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:55, 04:46](2011 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 08:26] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:50, 05:40](729 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:14, 12:40] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:46](758 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 04:59] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:27, 02:59](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:26, 02:24](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:22, 01:23](456 MB) - -PASS -- COMPILE 'atml_intel' [38:14, 37:39] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:44, 07:32](1633 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:44, 07:37](1633 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:44, 04:24](837 MB) - -PASS -- COMPILE 'atmw_intel' [16:13, 15:59] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:21, 02:21](1648 MB) - -PASS -- COMPILE 'atmaero_intel' [16:16, 15:16] -PASS -- TEST 'atmaero_control_p8_intel' [11:03, 06:33](2946 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:03, 06:50](3013 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:55, 06:49](3019 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:11, 11:13] -PASS -- TEST 'regional_atmaq_debug_intel' [29:03, 18:39](4495 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:16, 21:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:54, 07:29](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:13, 25:58] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:07, 14:04](1685 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:26, 14:08](1809 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:55, 07:18](944 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:03, 15:51](1668 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:16, 16:04] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:51, 24:25](1707 MB) + +PASS -- COMPILE 's2swa_intel' [22:16, 20:58] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:25, 08:11](3097 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:15, 08:12](3097 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:57, 06:37](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:24, 08:08](3121 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:38, 05:26](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:26, 06:39](3408 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:56, 07:57](3096 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 07:21](3019 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:15, 08:21](3098 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:54, 10:44](3270 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:55, 07:30](3600 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:30, 13:37](4035 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:52, 09:23](4345 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:58, 08:06](3065 MB) + +PASS -- COMPILE 's2sw_intel' [20:15, 20:09] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:30, 05:00](1685 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:10, 05:13](1729 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:16, 15:15] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:38, 10:02](3129 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:20, 05:57](1699 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [42:16, 41:22] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:45, 05:52](1727 MB) + +PASS -- COMPILE 's2s_intel' [19:16, 18:06] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:44, 06:54](2663 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:13, 24:42] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:34, 08:42](3101 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:17, 23:12] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:53, 15:39](1701 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:24, 07:20](999 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:42, 17:45](1682 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:16, 13:06] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:56, 27:51](1715 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:17, 14:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:32, 04:08](673 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:01, 03:18](1568 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:02, 03:41](1580 MB) +PASS -- TEST 'control_latlon_intel' [09:51, 03:37](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:10, 03:36](1569 MB) +PASS -- TEST 'control_c48_intel' [15:22, 06:38](1604 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [14:08, 05:47](722 MB) +PASS -- TEST 'control_c192_intel' [18:05, 10:24](1683 MB) +PASS -- TEST 'control_c384_intel' [26:39, 18:25](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [25:34, 14:33](1186 MB) +PASS -- TEST 'control_stochy_intel' [05:24, 02:17](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:19, 01:24](430 MB) +PASS -- TEST 'control_lndp_intel' [05:24, 02:26](628 MB) +PASS -- TEST 'control_iovr4_intel' [05:39, 03:10](623 MB) +PASS -- TEST 'control_iovr5_intel' [06:43, 03:12](623 MB) +PASS -- TEST 'control_p8_intel' [13:28, 03:47](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:49, 03:49](1607 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:54, 03:39](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [05:43, 01:43](789 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:10, 03:20](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 01:46](793 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:00, 03:40](1594 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:00, 03:09](1685 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:42, 05:49](1606 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:10, 04:41](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:12, 03:28](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [08:48, 04:10](1604 MB) +PASS -- TEST 'regional_control_intel' [08:24, 04:57](616 MB) +PASS -- TEST 'regional_restart_intel' [04:06, 02:38](789 MB) +PASS -- TEST 'regional_decomp_intel' [08:15, 05:28](615 MB) +PASS -- TEST 'regional_2threads_intel' [06:22, 03:08](758 MB) +PASS -- TEST 'regional_noquilt_intel' [08:17, 05:03](1155 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:55, 04:56](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 04:42](615 MB) +PASS -- TEST 'regional_wofs_intel' [08:28, 06:02](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [14:15, 13:28] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:22, 06:57](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:28, 03:59](1181 MB) +PASS -- TEST 'rap_decomp_intel' [11:36, 07:17](1009 MB) +PASS -- TEST 'rap_2threads_intel' [10:42, 06:13](1099 MB) +PASS -- TEST 'rap_restart_intel' [07:45, 03:44](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:35, 06:55](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:37, 07:03](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:26, 05:20](880 MB) +PASS -- TEST 'hrrr_control_intel' [07:26, 03:53](1005 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:49, 04:51](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:28, 03:15](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:13, 02:16](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:11, 07:15](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:08, 08:12](1966 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:03, 07:49](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [14:16, 13:41] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:22, 06:39](696 MB) +PASS -- TEST 'control_ras_intel' [05:06, 03:32](657 MB) + +PASS -- COMPILE 'wam_intel' [14:15, 13:52] +PASS -- TEST 'control_wam_intel' [04:19, 02:38](370 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:14, 17:27] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:20, 04:06](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [06:42, 04:49](615 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:17, 12:26] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:21, 03:18](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:13, 03:21](1589 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:12](786 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:15](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:15, 04:21](824 MB) +PASS -- TEST 'control_ras_debug_intel' [04:06, 02:55](795 MB) +PASS -- TEST 'control_diag_debug_intel' [05:05, 03:02](1641 MB) +PASS -- TEST 'control_debug_p8_intel' [05:51, 03:14](1618 MB) +PASS -- TEST 'regional_debug_intel' [18:56, 16:33](633 MB) +PASS -- TEST 'rap_control_debug_intel' [07:22, 05:10](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:06](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 05:02](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 05:06](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 05:02](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:19](1251 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:16](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:14](1166 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:14, 05:08](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:08, 05:13](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:07, 04:51](1166 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:35, 05:18](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:10, 07:50](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:07, 05:13](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:59, 06:08](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:03, 05:11](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:17, 08:24](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:15, 09:47] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:35, 04:55](396 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:15, 13:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:27, 03:54](1048 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 05:48](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:36, 03:34](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:04, 05:23](950 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 02:50](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:35, 03:39](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:19, 04:33](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:42](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 15:50] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:55, 02:10](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:10](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:17, 01:29](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:16, 14:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:43, 04:22](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:23, 10:36] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:53, 05:00](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 04:53](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [17:44, 14:19](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:36, 14:43](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:10, 08:28](1109 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:56, 14:07](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 09:58] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [19:18, 18:47] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:23, 05:15](707 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 04:26](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:22, 07:37](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:20, 11:38](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:14, 12:43](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:04, 05:17](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:51, 06:42](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:32, 02:55](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:39, 08:03](434 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:54](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:43, 03:29](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:40, 04:42](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:00, 01:44](402 MB) +PASS -- TEST 'gnv1_nested_intel' [07:19, 03:56](766 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:15, 12:33] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 13:03](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:16, 21:05] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:30, 07:37](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:37, 07:48](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:16, 18:43] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:38, 06:51](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [35:19, 34:44] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:03, 06:30](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 06:28](730 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:04, 20:07](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:16, 13:53] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:49, 02:34](758 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:03, 01:34](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:50, 02:45](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:10, 02:27](637 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:59, 02:31](637 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:44, 02:33](758 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:34](745 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:25](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:04, 06:05](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:07](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:52, 02:35](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:35](2011 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:37](2011 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:15, 08:44] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:49, 05:28](743 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:15, 12:30] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:49, 02:33](759 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:22, 03:47] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:59, 02:02](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:46](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 01:05](456 MB) + +PASS -- COMPILE 'atml_intel' [17:16, 16:46] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:42, 08:34](1632 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:48, 08:39](1633 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:09, 04:37](837 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:13, 12:13] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [37:55, 35:04](1651 MB) + +PASS -- COMPILE 'atmw_intel' [16:16, 16:04] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:44, 02:50](1648 MB) + +PASS -- COMPILE 'atmaero_intel' [15:19, 15:07] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:24, 06:40](2947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:24, 06:43](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:02, 06:42](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:56] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:10, 18:25](4477 MB) SYNOPSIS: -Starting Date/Time: 20240423 15:27:48 -Ending Date/Time: 20240423 18:09:15 -Total Time: 02h:42m:47s -Compiles Completed: 37/37 -Tests Completed: 179/179 +Starting Date/Time: 20240429 01:08:25 +Ending Date/Time: 20240429 03:14:52 +Total Time: 02h:07m:46s +Compiles Completed: 38/38 +Tests Completed: 180/180 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d35f6da7caf2a4d320aeb75613de67533a11d1b7 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_221543 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-n) - RUN SINGLE TEST: control_p8_atmlnd_debug +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atml_debug_intel' [11:12, 10:35] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:13, 06:16](1651 MB) + +SYNOPSIS: +Starting Date/Time: 20240429 13:52:13 +Ending Date/Time: 20240429 14:13:58 +Total Time: 00h:22m:05s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index fac7b77819..db58d92d42 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -bcc92327e9e244c4ca9db1707f4df177799426b2 +5175ca7ecbd16473b4778a533ab9c52b065a1eb4 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -12,8 +12,8 @@ Submodule hashes used in testing: da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -24,365 +24,419 @@ 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-20240419 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_3337654 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2646060 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [12:43, 12:43] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:23, 05:34](3166 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:58, 15:58] -PASS -- TEST 'cpld_control_gfsv17_intel' [17:56, 17:09](1739 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:47, 17:50](2011 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:56, 08:04](1097 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:58, 19:17](1630 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 04:18] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:43, 22:57](1691 MB) - -PASS -- COMPILE 's2swa_intel' [12:44, 12:44] -PASS -- TEST 'cpld_control_p8_intel' [06:45, 05:51](3196 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:40, 05:48](3208 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:29, 03:29](3257 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:51, 05:58](3241 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:44, 03:35](3243 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:16, 05:31](3560 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:40, 05:53](3192 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 04:46](3053 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:37, 05:46](3189 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:56, 10:20](3317 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:56, 06:33](3550 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:13, 09:51](4144 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:44, 05:56](4342 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:27, 05:38](3150 MB) - -PASS -- COMPILE 's2sw_intel' [12:19, 12:19] -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:51, 05:05](1735 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:30, 04:42](1767 MB) - -PASS -- COMPILE 's2swa_debug_intel' [04:19, 04:19] -PASS -- TEST 'cpld_debug_p8_intel' [09:49, 08:47](3218 MB) - -PASS -- COMPILE 's2sw_debug_intel' [03:59, 03:59] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:38, 05:48](1765 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:36, 11:36] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:27, 04:38](1755 MB) - -PASS -- COMPILE 's2s_intel' [11:15, 11:15] -PASS -- TEST 'cpld_control_c48_intel' [10:11, 09:40](2832 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:27, 16:27] -PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:33](3193 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:20, 15:20] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:00, 17:11](1757 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:58, 08:01](1149 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:37, 19:49](1666 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:18] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:05](1678 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:13, 11:13] -PASS -- TEST 'control_flake_intel' [03:33, 03:21](686 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:35, 02:53](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:34, 02:58](1580 MB) -PASS -- TEST 'control_latlon_intel' [03:24, 02:56](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:31, 02:57](1576 MB) -PASS -- TEST 'control_c48_intel' [08:16, 07:38](1744 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:44, 06:22](850 MB) -PASS -- TEST 'control_c192_intel' [11:19, 10:35](1712 MB) -PASS -- TEST 'control_c384_intel' [11:52, 10:30](1992 MB) -PASS -- TEST 'control_c384gdas_intel' [10:40, 08:11](1353 MB) -PASS -- TEST 'control_stochy_intel' [01:52, 01:37](643 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:58](483 MB) -PASS -- TEST 'control_lndp_intel' [01:47, 01:32](641 MB) -PASS -- TEST 'control_iovr4_intel' [02:42, 02:30](639 MB) -PASS -- TEST 'control_iovr5_intel' [02:38, 02:25](638 MB) -PASS -- TEST 'control_p8_intel' [03:40, 02:58](1609 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:41, 02:59](1603 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 02:52](1611 MB) -PASS -- TEST 'control_restart_p8_intel' [02:11, 01:36](875 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:34, 02:57](1584 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:15, 01:37](923 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:39, 03:05](1578 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:18, 02:44](1698 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:46, 05:16](1595 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:36, 03:55](1678 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:41, 02:58](1617 MB) -PASS -- TEST 'merra2_thompson_intel' [03:59, 03:17](1619 MB) -PASS -- TEST 'regional_control_intel' [05:39, 05:09](834 MB) -PASS -- TEST 'regional_restart_intel' [03:10, 02:45](1005 MB) -PASS -- TEST 'regional_decomp_intel' [05:58, 05:30](827 MB) -PASS -- TEST 'regional_2threads_intel' [03:44, 03:15](825 MB) -PASS -- TEST 'regional_noquilt_intel' [05:34, 05:09](1349 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 05:13](837 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 05:11](836 MB) -PASS -- TEST 'regional_wofs_intel' [07:07, 06:41](1897 MB) - -PASS -- COMPILE 'rrfs_intel' [10:35, 10:35] -PASS -- TEST 'rap_control_intel' [08:09, 07:41](1097 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 04:05](1287 MB) -PASS -- TEST 'rap_decomp_intel' [08:29, 08:07](1023 MB) -PASS -- TEST 'rap_2threads_intel' [07:49, 07:26](1160 MB) -PASS -- TEST 'rap_restart_intel' [04:33, 04:01](1082 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:09, 07:43](1094 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:27, 08:06](1025 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:25, 05:56](1122 MB) -PASS -- TEST 'hrrr_control_intel' [04:18, 03:57](1039 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:26, 04:05](1031 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:04, 03:38](1103 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:29, 02:10](990 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:03, 07:35](1088 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:33, 09:19](1965 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 09:02](2046 MB) - -PASS -- COMPILE 'csawmg_intel' [10:16, 10:16] -PASS -- TEST 'control_csawmg_intel' [06:31, 06:02](740 MB) -PASS -- TEST 'control_ras_intel' [03:25, 03:15](739 MB) - -PASS -- COMPILE 'csawmg_gnu' [03:34, 03:33] -PASS -- TEST 'control_csawmg_gnu' [08:53, 08:24](540 MB) - -PASS -- COMPILE 'wam_intel' [09:55, 09:55] -PASS -- TEST 'control_wam_intel' [02:12, 02:02](638 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:41, 10:41] -PASS -- TEST 'control_p8_faster_intel' [03:21, 02:39](1610 MB) -PASS -- TEST 'regional_control_faster_intel' [05:18, 04:47](829 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:47, 04:47] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:20, 02:45](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:15, 02:43](1577 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:23, 03:13](780 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:54, 02:43](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:38, 04:08](832 MB) -PASS -- TEST 'control_ras_debug_intel' [03:09, 02:57](790 MB) -PASS -- TEST 'control_diag_debug_intel' [03:23, 02:46](1635 MB) -PASS -- TEST 'control_debug_p8_intel' [03:32, 02:59](1605 MB) -PASS -- TEST 'regional_debug_intel' [17:47, 17:20](810 MB) -PASS -- TEST 'rap_control_debug_intel' [05:12, 04:58](1169 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:08, 04:54](1165 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 04:59](1170 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:13, 04:59](1171 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 05:01](1170 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:44, 05:10](1253 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 05:04](1174 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 05:17](1182 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:37, 05:21](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 04:59](1186 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:10, 04:56](1185 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 05:08](1167 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:26, 08:11](1188 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 05:00](1181 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:36, 06:25](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 05:06](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:46, 08:22](1171 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:43, 02:43] -PASS -- TEST 'control_csawmg_debug_gnu' [02:36, 02:10](508 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:16, 03:15] -PASS -- TEST 'control_wam_debug_intel' [05:11, 04:59](468 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 10:11] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:36, 03:53](1140 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:44, 06:24](1032 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 03:25](985 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:28, 06:06](1067 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:38, 03:14](946 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:00, 03:40](916 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:25, 04:50](1009 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:13, 01:52](916 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:24, 12:24] -PASS -- TEST 'conus13km_control_intel' [02:54, 02:06](1187 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:24, 00:53](1099 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:49, 01:15](1090 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 10:18] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:49, 04:14](969 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:42, 03:42] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:03, 04:51](1093 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:59, 04:47](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [15:27, 14:54](1269 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:16, 14:40](920 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:47, 08:20](1143 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:11, 14:44](1305 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:22, 03:22] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:02, 04:52](1134 MB) - -PASS -- COMPILE 'hafsw_intel' [11:34, 11:33] -PASS -- TEST 'hafs_regional_atm_intel' [06:01, 05:04](742 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 06:03](1118 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:59, 06:56](838 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:33, 13:35](863 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:13, 15:11](896 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 05:39](505 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:00, 06:58](521 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:07, 02:38](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:33, 07:32](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 03:54](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:19, 03:41](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:56, 04:12](592 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:13](402 MB) -PASS -- TEST 'gnv1_nested_intel' [04:44, 04:12](802 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [03:50, 03:50] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:29, 12:49](572 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:00, 12:00] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 08:52](672 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:39, 08:50](705 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:56, 11:56] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:27, 06:40](737 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:14, 11:13] -PASS -- TEST 'hafs_regional_docn_intel' [07:57, 06:49](829 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:57, 06:51](820 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:44, 16:03](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:19, 06:18] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:58, 02:49](1149 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:52, 01:41](1095 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:47, 02:38](1022 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:47, 02:37](1025 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:47, 02:39](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:51, 02:44](1146 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:51, 02:43](1134 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:47, 02:38](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:29, 06:25](1061 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:12](1041 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:51, 02:45](1146 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:09, 03:57](2486 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:05, 03:56](2441 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [02:59, 02:58] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:36, 06:27](1056 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:58, 05:56] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:49, 02:40](1146 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:05, 01:05] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:15, 00:53](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:16, 00:58](330 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](328 MB) - -PASS -- COMPILE 'atml_intel' [11:55, 11:54] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:05, 04:16](1561 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:00, 04:14](1589 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:14, 02:38](876 MB) - -PASS -- COMPILE 'atmw_intel' [10:55, 10:54] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:24, 01:46](1647 MB) - -PASS -- COMPILE 'atmaero_intel' [10:42, 10:41] -PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:58](3039 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:58](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:33, 05:01](3093 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:36, 03:35] -PASS -- TEST 'regional_atmaq_debug_intel' [25:40, 24:01](4452 MB) - -PASS -- COMPILE 'atm_gnu' [03:52, 03:51] -PASS -- TEST 'control_c48_gnu' [11:48, 11:17](1544 MB) -PASS -- TEST 'control_stochy_gnu' [03:36, 03:23](507 MB) -PASS -- TEST 'control_ras_gnu' [04:52, 04:39](515 MB) -PASS -- TEST 'control_p8_gnu' [05:29, 04:40](1266 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:22, 04:38](1267 MB) -PASS -- TEST 'control_flake_gnu' [10:46, 10:33](549 MB) - -PASS -- COMPILE 'rrfs_gnu' [03:52, 03:51] -PASS -- TEST 'rap_control_gnu' [11:06, 10:41](855 MB) -PASS -- TEST 'rap_decomp_gnu' [11:22, 10:59](858 MB) -PASS -- TEST 'rap_2threads_gnu' [10:06, 09:42](940 MB) -PASS -- TEST 'rap_restart_gnu' [06:21, 05:40](587 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:55, 10:29](858 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:27, 11:01](858 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:59, 08:19](588 MB) -PASS -- TEST 'hrrr_control_gnu' [05:52, 05:28](857 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:54, 05:30](847 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:19, 04:56](928 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:07, 05:41](856 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:54](572 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:56](667 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:09, 10:33](855 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:40, 03:39] -PASS -- TEST 'control_diag_debug_gnu' [02:26, 01:46](1285 MB) -PASS -- TEST 'regional_debug_gnu' [11:44, 11:12](568 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:10, 02:54](871 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:05, 02:47](871 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:47, 02:36](874 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:50, 02:40](878 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:14, 02:52](960 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 04:06](870 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:54, 02:40](835 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:54, 02:42](867 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:57, 01:42](506 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:03, 01:50](499 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:22, 01:45](1253 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:58, 02:45](871 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:11, 02:54](874 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 04:19](879 MB) - -PASS -- COMPILE 'wam_debug_gnu' [01:53, 01:52] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:39, 03:39] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:55, 09:28](712 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:28, 05:04](713 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:04, 08:38](765 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:59, 04:34](760 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 05:11](713 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:42, 07:08](550 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:59, 02:36](532 MB) -PASS -- TEST 'conus13km_control_gnu' [03:59, 03:16](869 MB) -PASS -- TEST 'conus13km_2threads_gnu' [05:38, 05:06](874 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:22, 01:52](546 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:27, 05:26] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:22, 05:53](738 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:41, 03:40] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:43, 02:30](696 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:45, 02:32](699 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:36, 06:57](870 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:33, 06:59](559 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:30, 07:02](871 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:30, 06:55](936 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:41, 03:40] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:57, 02:40](720 MB) - -PASS -- COMPILE 's2swa_gnu' [14:39, 14:38] - -PASS -- COMPILE 's2s_gnu' [14:37, 14:37] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:44, 06:42](1341 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [02:33, 02:32] - -PASS -- COMPILE 's2sw_pdlib_gnu' [14:17, 14:17] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:22, 22:25](1308 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:23, 02:22] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:52, 12:56](1306 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [14:14, 14:13] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:06](696 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:51, 12:51] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:38, 05:49](3171 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:46, 16:46] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:59, 17:12](1706 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 17:52](1998 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:54, 08:03](1123 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 19:13](1628 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:39, 04:38] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:44, 22:55](1687 MB) + +PASS -- COMPILE 's2swa_intel' [13:00, 13:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [06:39, 05:47](3212 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:42, 05:49](3195 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:20, 03:23](3268 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [06:37, 05:49](3247 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:32, 03:34](3277 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:23, 05:37](3543 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:33, 05:48](3203 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:27, 04:43](3062 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:43, 05:53](3197 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [11:44, 10:07](3279 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:17, 06:11](3597 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:12, 09:34](4060 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:23, 06:17](4362 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:22, 05:31](3147 MB) + +PASS -- COMPILE 's2sw_intel' [12:13, 12:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:28, 04:41](1732 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:14, 04:23](1722 MB) + +PASS -- COMPILE 's2swa_debug_intel' [04:39, 04:39] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:27, 08:30](3237 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:25, 04:25] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:39, 05:47](1727 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:39, 11:39] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:14, 04:24](1759 MB) + +PASS -- COMPILE 's2s_intel' [11:29, 11:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:54, 09:25](2833 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:28, 16:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:16, 05:25](3210 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:30, 15:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:02, 17:13](1791 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:06, 08:08](1177 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:31, 19:39](1690 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:23, 04:22] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:40, 24:55](1697 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:26, 11:26] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:32, 03:20](711 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:54](1600 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:31, 02:59](1616 MB) +PASS -- TEST 'control_latlon_intel' [03:22, 02:55](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 03:01](1578 MB) +PASS -- TEST 'control_c48_intel' [08:16, 07:48](1738 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 06:25](876 MB) +PASS -- TEST 'control_c192_intel' [11:14, 10:31](1720 MB) +PASS -- TEST 'control_c384_intel' [12:02, 10:38](2011 MB) +PASS -- TEST 'control_c384gdas_intel' [10:22, 08:05](1395 MB) +PASS -- TEST 'control_stochy_intel' [01:47, 01:37](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:16, 00:59](506 MB) +PASS -- TEST 'control_lndp_intel' [01:44, 01:33](659 MB) +PASS -- TEST 'control_iovr4_intel' [02:41, 02:27](657 MB) +PASS -- TEST 'control_iovr5_intel' [02:47, 02:33](657 MB) +PASS -- TEST 'control_p8_intel' [03:47, 03:13](1617 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:42, 03:00](1586 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 02:52](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [02:13, 01:37](890 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:32, 02:54](1600 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:16, 01:37](930 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:38, 03:03](1588 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:16, 02:45](1719 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:46, 05:17](1617 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:43, 04:07](1674 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:40, 03:00](1604 MB) +PASS -- TEST 'merra2_thompson_intel' [03:58, 03:22](1621 MB) +PASS -- TEST 'regional_control_intel' [05:35, 05:10](850 MB) +PASS -- TEST 'regional_restart_intel' [03:08, 02:43](1019 MB) +PASS -- TEST 'regional_decomp_intel' [05:52, 05:29](849 MB) +PASS -- TEST 'regional_2threads_intel' [03:36, 03:11](850 MB) +PASS -- TEST 'regional_noquilt_intel' [05:33, 05:08](1356 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:32, 05:05](850 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:33, 05:09](848 MB) +PASS -- TEST 'regional_wofs_intel' [07:09, 06:43](1900 MB) + +PASS -- COMPILE 'rrfs_intel' [10:31, 10:31] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:07, 07:43](1105 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:51, 04:02](1294 MB) +PASS -- TEST 'rap_decomp_intel' [08:25, 08:05](1035 MB) +PASS -- TEST 'rap_2threads_intel' [07:39, 07:15](1185 MB) +PASS -- TEST 'rap_restart_intel' [04:32, 04:02](1114 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:07, 07:41](1095 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:30, 08:08](1038 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:18, 05:49](1126 MB) +PASS -- TEST 'hrrr_control_intel' [04:25, 03:58](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:28, 04:06](1030 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:59, 03:38](1123 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:25, 02:09](1002 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:06, 07:37](1103 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:31, 09:19](1962 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 09:04](2048 MB) + +PASS -- COMPILE 'csawmg_intel' [10:17, 10:17] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:24, 05:58](735 MB) +PASS -- TEST 'control_ras_intel' [03:23, 03:14](748 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:39, 03:39] +PASS -- TEST 'control_csawmg_gnu' [08:44, 08:18](548 MB) + +PASS -- COMPILE 'wam_intel' [09:53, 09:52] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [02:20, 02:09](656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:38, 10:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:22, 02:46](1612 MB) +PASS -- TEST 'regional_control_faster_intel' [05:09, 04:43](853 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:53, 04:53] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:12, 02:43](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:14, 02:44](1615 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:07, 02:58](815 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:58, 02:48](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:33, 04:09](869 MB) +PASS -- TEST 'control_ras_debug_intel' [02:58, 02:47](826 MB) +PASS -- TEST 'control_diag_debug_intel' [03:20, 02:47](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [03:20, 02:50](1648 MB) +PASS -- TEST 'regional_debug_intel' [17:30, 17:05](844 MB) +PASS -- TEST 'rap_control_debug_intel' [05:01, 04:50](1205 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:53, 04:42](1202 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:58, 04:47](1207 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:00, 04:49](1201 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:09, 04:59](1214 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:27, 05:07](1287 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:10, 04:59](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 05:04](1207 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:01, 04:51](1183 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:08, 04:58](1204 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:03, 04:52](1204 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:04, 04:53](1205 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:14, 08:04](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:03, 04:53](1199 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:14, 06:04](1207 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:13, 05:02](1204 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 08:25](1210 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:38, 02:37] +PASS -- TEST 'control_csawmg_debug_gnu' [02:41, 02:13](528 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:15, 03:14] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:05, 04:56](511 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:59, 09:58] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 03:49](1163 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:47, 06:21](1049 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 03:22](990 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:22, 06:02](1085 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:28, 03:08](963 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:55, 03:35](936 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:10, 04:46](1028 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:50](937 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:33, 12:33] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:40, 02:06](1204 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:19, 00:54](1118 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:47, 01:14](1112 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:13, 10:13] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:39, 04:09](983 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:24, 03:24] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:02, 04:51](1089 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:56, 04:45](1087 MB) +PASS -- TEST 'conus13km_debug_intel' [14:56, 14:13](1233 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:59, 14:17](894 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:39, 08:06](1156 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:55, 14:26](1296 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:22, 03:22] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:09, 04:58](1137 MB) + +PASS -- COMPILE 'hafsw_intel' [11:34, 11:34] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:56, 04:53](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:11, 05:46](1119 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:00, 06:55](826 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:16, 13:20](871 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:21, 15:04](884 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:14, 05:31](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 06:42](520 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:10, 02:43](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:49, 07:12](483 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:14, 03:42](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 03:30](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:41, 04:04](592 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:27, 01:11](411 MB) +PASS -- TEST 'gnv1_nested_intel' [04:34, 04:04](801 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:54, 03:54] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:17, 12:41](566 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:57, 11:57] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:32, 08:47](671 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 08:45](748 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:53, 11:53] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:05, 06:20](741 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:16, 11:16] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:14, 06:23](823 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:22, 06:26](812 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:47, 16:11](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:13, 06:13] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:42, 02:36](1157 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:42, 01:34](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:38, 02:32](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:44, 02:37](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:48, 02:41](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:50, 02:44](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:43, 02:37](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:42, 02:37](1012 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:39, 06:33](1065 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:02, 06:12](1049 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:48, 02:45](1128 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:59, 03:53](2492 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:57, 03:51](2437 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:01, 03:01] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:20, 06:15](1057 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:02, 06:02] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:45, 02:39](1148 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:11] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:59, 00:42](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:59, 00:45](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:41, 00:28](324 MB) + +PASS -- COMPILE 'atml_intel' [11:47, 11:47] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [04:54, 04:10](1581 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [04:54, 04:09](1599 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:46, 02:13](895 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:26, 04:26] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [34:07, 33:23](1613 MB) + +PASS -- COMPILE 'atmw_intel' [10:58, 10:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:22, 01:45](1654 MB) + +PASS -- COMPILE 'atmaero_intel' [10:48, 10:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:47, 04:05](3022 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:38, 04:55](3104 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:23, 04:57](3116 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:45, 03:45] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:55, 21:18](4450 MB) + +PASS -- COMPILE 'atm_gnu' [03:39, 03:39] +PASS -- TEST 'control_c48_gnu' [11:47, 11:18](1545 MB) +PASS -- TEST 'control_stochy_gnu' [03:36, 03:25](511 MB) +PASS -- TEST 'control_ras_gnu' [05:02, 04:52](517 MB) +PASS -- TEST 'control_p8_gnu' [05:27, 04:44](1267 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:07, 04:28](1267 MB) +PASS -- TEST 'control_flake_gnu' [10:49, 10:38](551 MB) + +PASS -- COMPILE 'rrfs_gnu' [03:39, 03:39] +PASS -- TEST 'rap_control_gnu' [11:02, 10:39](858 MB) +PASS -- TEST 'rap_decomp_gnu' [11:14, 10:50](862 MB) +PASS -- TEST 'rap_2threads_gnu' [10:16, 09:50](940 MB) +PASS -- TEST 'rap_restart_gnu' [06:00, 05:32](588 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:11, 10:46](857 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:13, 10:52](858 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:29, 08:02](587 MB) +PASS -- TEST 'hrrr_control_gnu' [06:03, 05:28](855 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:48, 05:27](844 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:28, 05:00](936 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:51, 05:27](858 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:07, 02:51](574 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:03, 02:47](668 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:12, 10:40](850 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:39, 03:39] +PASS -- TEST 'control_diag_debug_gnu' [02:12, 01:35](1284 MB) +PASS -- TEST 'regional_debug_gnu' [10:20, 09:55](560 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:46, 02:36](867 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:44, 02:34](867 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:46, 02:36](873 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:35](872 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:11, 02:46](950 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 04:04](868 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:48, 02:36](868 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:48, 02:38](861 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:46, 01:36](505 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:52, 01:42](499 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:13, 01:41](1253 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:52, 02:41](866 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:05, 02:53](878 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 04:19](878 MB) + +PASS -- COMPILE 'wam_debug_gnu' [01:49, 01:49] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:41, 03:41] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:51, 09:26](712 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:20, 04:56](712 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:08, 08:46](764 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:58, 04:36](758 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:22, 05:03](714 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 07:03](561 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:52, 02:36](544 MB) +PASS -- TEST 'conus13km_control_gnu' [03:48, 03:10](886 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:26, 05:56](894 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:19, 01:50](568 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:22, 05:22] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:45](737 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:38, 03:38] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:44, 02:34](722 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:44, 02:32](722 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:30, 06:58](903 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:41, 07:12](595 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:55, 07:24](905 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:31, 07:00](968 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:43, 03:43] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:51, 02:39](748 MB) + +PASS -- COMPILE 's2swa_gnu' [14:45, 14:45] + +PASS -- COMPILE 's2s_gnu' [14:21, 14:21] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:19, 11:19](1350 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [02:40, 02:40] + +PASS -- COMPILE 's2sw_pdlib_gnu' [14:28, 14:28] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:07, 25:18](1325 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:40, 02:40] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 14:08](1326 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [14:16, 14:16] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:03](701 MB) SYNOPSIS: -Starting Date/Time: 20240423 18:57:22 -Ending Date/Time: 20240424 03:03:55 -Total Time: 08h:06m:50s -Compiles Completed: 53/53 -Tests Completed: 239/239 +Starting Date/Time: 20240429 13:36:09 +Ending Date/Time: 20240429 20:01:09 +Total Time: 06h:25m:17s +Compiles Completed: 54/54 +Tests Completed: 240/240 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF HERA REGRESSION TESTING LOG==== + +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +7441d3bb7300d6f41e7eb17bd98aac0539164065 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +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-20240426 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_4106538 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-n) - RUN SINGLE TEST: control_p8_atmlnd_debug +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:26] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:52, 05:28](1634 MB) + +SYNOPSIS: +Starting Date/Time: 20240429 18:31:57 +Ending Date/Time: 20240429 18:47:17 +Total Time: 00h:15m:24s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index e5677021cf..3682c894e9 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -fe4bb76565de0a5f3261b276fa392d65cb046e96 +aef829f3311f718f3cef6b1102e849370da1a983 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,10 +21,10 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,360 +35,424 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_12578 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3885348 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:10, 12:09] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:56, 07:29](1894 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:14] -PASS -- TEST 'cpld_control_gfsv17_intel' [15:08, 13:31](1767 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:25, 14:03](2190 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:11, 06:20](1175 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:54, 15:07](1691 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:51] -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:07, 20:22](1725 MB) - -PASS -- COMPILE 's2swa_intel' [11:10, 10:45] -PASS -- TEST 'cpld_control_p8_intel' [08:52, 07:30](2086 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 07:27](2077 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:09, 04:15](1955 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:50, 07:40](1979 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:11, 04:18](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:47, 08:51](2498 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:45](2070 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:54, 06:14](1900 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:59, 07:26](2069 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:34, 14:53](2799 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:06, 05:37](2920 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [13:43, 08:20](3632 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:42, 05:10](3627 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:53, 04:52](2019 MB) - -PASS -- COMPILE 's2sw_intel' [12:10, 11:18] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 07:07](1773 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:53, 03:56](1814 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 04:33] -PASS -- TEST 'cpld_debug_p8_intel' [08:02, 06:55](2039 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:25] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:45, 04:44](1790 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:30] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 03:57](1815 MB) - -PASS -- COMPILE 's2s_intel' [10:10, 09:35] -PASS -- TEST 'cpld_control_c48_intel' [08:37, 07:17](2833 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:53] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:58, 07:19](2055 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:10, 15:06] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:47, 13:43](1812 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:01, 06:42](1304 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:56, 15:13](1726 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:12] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:40](1763 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 08:07] -PASS -- TEST 'control_flake_intel' [03:18, 02:50](716 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:31, 02:28](1610 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:32](1621 MB) -PASS -- TEST 'control_latlon_intel' [03:30, 02:30](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:31](1615 MB) -PASS -- TEST 'control_c48_intel' [07:32, 06:59](1749 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:22, 05:42](844 MB) -PASS -- TEST 'control_c192_intel' [09:39, 08:55](1761 MB) -PASS -- TEST 'control_c384_intel' [10:14, 09:07](2038 MB) -PASS -- TEST 'control_c384gdas_intel' [09:41, 06:59](1530 MB) -PASS -- TEST 'control_stochy_intel' [02:18, 01:24](671 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:52](549 MB) -PASS -- TEST 'control_lndp_intel' [02:18, 01:19](667 MB) -PASS -- TEST 'control_iovr4_intel' [03:19, 02:05](659 MB) -PASS -- TEST 'control_iovr5_intel' [02:23, 02:06](672 MB) -PASS -- TEST 'control_p8_intel' [03:49, 02:31](1650 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:50, 02:31](1638 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:49, 02:26](1649 MB) -PASS -- TEST 'control_restart_p8_intel' [02:44, 01:22](908 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:40, 02:28](1631 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:49, 01:21](991 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:38, 02:35](1634 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:38, 02:18](1728 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:21](1629 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:48, 03:25](1718 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:47, 02:31](1646 MB) -PASS -- TEST 'merra2_thompson_intel' [03:53, 02:45](1653 MB) -PASS -- TEST 'regional_control_intel' [05:28, 04:31](956 MB) -PASS -- TEST 'regional_restart_intel' [03:27, 02:26](1101 MB) -PASS -- TEST 'regional_decomp_intel' [05:27, 04:45](949 MB) -PASS -- TEST 'regional_2threads_intel' [03:27, 02:47](912 MB) -PASS -- TEST 'regional_noquilt_intel' [05:29, 04:17](1484 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 04:24](959 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:25](959 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 05:29](2070 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 07:14] -PASS -- TEST 'rap_control_intel' [07:32, 06:31](1208 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:46, 03:22](1402 MB) -PASS -- TEST 'rap_decomp_intel' [07:31, 06:47](1141 MB) -PASS -- TEST 'rap_2threads_intel' [06:46, 06:07](1352 MB) -PASS -- TEST 'rap_restart_intel' [04:41, 03:26](1148 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:46, 06:26](1196 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:45](1132 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:53, 04:54](1193 MB) -PASS -- TEST 'hrrr_control_intel' [04:34, 03:19](1068 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:34, 03:23](1054 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:46, 03:01](1124 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:33, 01:48](1037 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:51, 06:19](1195 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 07:48](2012 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:29](2166 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 07:03] -PASS -- TEST 'control_csawmg_intel' [06:27, 05:15](805 MB) -PASS -- TEST 'control_ras_intel' [03:18, 02:48](804 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 03:58] -PASS -- TEST 'control_csawmg_gnu' [07:27, 06:28](812 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 06:35] -PASS -- TEST 'control_wam_intel' [02:25, 01:47](786 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:17] -PASS -- TEST 'control_p8_faster_intel' [03:50, 02:14](1628 MB) -PASS -- TEST 'regional_control_faster_intel' [04:26, 04:06](960 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 03:45] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:09](1638 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:32, 02:08](1627 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:28](823 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:13](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:25, 03:24](878 MB) -PASS -- TEST 'control_ras_debug_intel' [03:16, 02:14](835 MB) -PASS -- TEST 'control_diag_debug_intel' [03:34, 02:13](1682 MB) -PASS -- TEST 'control_debug_p8_intel' [03:30, 02:19](1662 MB) -PASS -- TEST 'regional_debug_intel' [14:27, 13:56](895 MB) -PASS -- TEST 'rap_control_debug_intel' [04:18, 03:59](1216 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:47](1210 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:55](1221 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 03:57](1226 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 03:54](1227 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:10](1304 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:17, 04:03](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:17, 03:58](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:18, 04:01](1220 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:56](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1210 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:59](1223 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 06:17](1211 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 03:52](1215 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:48](1230 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:19, 03:59](1224 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:49, 06:49](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:10] -PASS -- TEST 'control_csawmg_debug_gnu' [02:27, 01:41](793 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:10, 02:47] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:31] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:50, 03:21](1284 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:31, 05:21](1170 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:55, 02:52](1036 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:42, 05:01](1288 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 02:35](1046 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:34, 02:59](978 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:40, 04:02](1094 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:34](962 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:11, 08:51] -PASS -- TEST 'conus13km_control_intel' [02:35, 01:40](1302 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:29, 00:45](1200 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:03](1145 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:43] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:27, 03:40](1096 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:01] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 03:54](1102 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:48](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [12:30, 11:25](1333 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:31, 11:42](995 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:29, 06:31](1239 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:30, 11:30](1404 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 03:01] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:18, 03:57](1149 MB) - -PASS -- COMPILE 'hafsw_intel' [11:11, 10:11] -PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:16](880 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:20, 04:49](1273 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:17](953 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:01, 13:47](980 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:15, 15:14](1003 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:46, 05:17](604 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:18, 06:44](614 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:40, 02:48](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:56, 07:28](543 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:38, 03:43](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:39, 03:33](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:43, 04:40](684 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:23](453 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [03:11, 02:53] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:39, 11:10](627 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:12] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:47, 16:25](764 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:52, 15:57](842 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 10:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:51, 09:44](835 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:11, 10:03] -PASS -- TEST 'hafs_regional_docn_intel' [07:05, 05:18](945 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:03, 05:24](932 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:49, 16:26](1346 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [05:11, 04:40] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:08](1150 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:17](1101 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 02:05](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:04](1007 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:14, 02:06](1010 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:14, 02:06](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:06](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:13, 02:01](1010 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:49, 04:52](1157 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:45, 04:48](1143 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:06](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:14, 02:59](2388 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:01](2380 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 03:00] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:10](1077 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:57] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:07](1155 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:45] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:24, 00:58](329 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:52](561 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:29](556 MB) - -PASS -- COMPILE 'atml_intel' [08:10, 07:47] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:01, 05:28](1638 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:56, 05:16](1648 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:38, 02:59](951 MB) - -PASS -- COMPILE 'atmw_intel' [10:10, 09:15] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:46, 01:31](1686 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 07:16] -PASS -- TEST 'atmaero_control_p8_intel' [04:48, 03:28](1797 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:46, 04:07](1799 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:12](1832 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:41] -PASS -- TEST 'regional_atmaq_debug_intel' [18:14, 16:14](4603 MB) - -PASS -- COMPILE 'atm_gnu' [04:10, 03:46] -PASS -- TEST 'control_c48_gnu' [10:35, 09:22](1558 MB) -PASS -- TEST 'control_stochy_gnu' [03:17, 02:12](733 MB) -PASS -- TEST 'control_ras_gnu' [04:16, 03:38](737 MB) -PASS -- TEST 'control_p8_gnu' [04:45, 03:29](1516 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:37, 03:24](1514 MB) -PASS -- TEST 'control_flake_gnu' [05:17, 04:18](800 MB) - -PASS -- COMPILE 'rrfs_gnu' [07:10, 06:32] -PASS -- TEST 'rap_control_gnu' [08:30, 07:30](1090 MB) -PASS -- TEST 'rap_decomp_gnu' [08:30, 07:42](1088 MB) -PASS -- TEST 'rap_2threads_gnu' [07:45, 07:00](1128 MB) -PASS -- TEST 'rap_restart_gnu' [04:41, 03:53](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:36, 07:33](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 07:44](1086 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:39, 05:43](885 MB) -PASS -- TEST 'hrrr_control_gnu' [04:44, 03:57](1075 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:33, 03:55](1136 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:30](1027 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:53](1080 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:02](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:19, 02:01](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:30](1084 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:11, 09:50] -PASS -- TEST 'control_diag_debug_gnu' [01:33, 01:09](1628 MB) -PASS -- TEST 'regional_debug_gnu' [07:28, 06:20](923 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:17, 01:58](1097 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 01:56](1087 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 01:56](1094 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:22, 01:58](1094 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:24, 02:04](1268 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:04](1093 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:55](1095 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 01:57](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:08](724 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:16](722 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:31, 01:15](1501 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:17, 01:56](1096 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1098 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:52, 03:13](1095 MB) - -PASS -- COMPILE 'wam_debug_gnu' [06:11, 05:10] -PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:52](499 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 07:25] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:10](964 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:43, 03:43](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:41, 06:36](978 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:24](881 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 03:51](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:40, 05:21](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:21, 01:57](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:36, 02:32](1264 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:28, 01:05](1174 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:25](944 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 07:42] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:21](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:11, 10:58] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:55](974 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:18, 01:51](972 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:35, 05:35](1278 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 05:32](953 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:26, 03:10](1185 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:26, 05:27](1347 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:11, 11:57] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:59](1000 MB) - -PASS -- COMPILE 's2swa_gnu' [17:11, 16:24] - -PASS -- COMPILE 's2s_gnu' [17:11, 16:48] - -PASS -- COMPILE 's2swa_debug_gnu' [11:10, 10:37] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 16:48] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:10, 09:17] - -PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:42] +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:42] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:07, 07:39](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 18:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:12, 13:23](1774 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:21, 14:25](2195 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:40, 06:28](1173 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:09, 15:07](1682 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:39] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:29](1731 MB) + +PASS -- COMPILE 's2swa_intel' [12:10, 12:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:05, 07:46](2058 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 07:50](2061 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:26, 04:23](1960 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:05, 07:35](1986 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:25, 04:29](1728 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:51, 09:18](2496 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:33](2058 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:59, 06:34](1888 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:05, 07:29](2091 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:44, 15:47](2811 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:24, 06:21](2922 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:34, 09:06](3635 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:22, 05:21](3618 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:52, 04:56](2044 MB) + +PASS -- COMPILE 's2sw_intel' [12:10, 11:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:49, 07:07](1779 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:59, 04:11](1819 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:34] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [07:56, 06:52](2060 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:10, 03:27] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:58, 04:46](1798 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:30] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:04, 03:58](1832 MB) + +PASS -- COMPILE 's2s_intel' [08:10, 07:43] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:47, 07:25](2839 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:10, 13:28] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:07, 07:25](2091 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:10, 15:05] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:50, 13:54](1813 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:06, 06:53](1274 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:50, 15:20](1727 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:11] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:56, 21:32](1770 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:10, 07:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:21, 02:49](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:38, 02:26](1608 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:38, 02:34](1615 MB) +PASS -- TEST 'control_latlon_intel' [06:30, 02:26](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:40, 02:41](1615 MB) +PASS -- TEST 'control_c48_intel' [12:37, 06:59](1751 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:40, 05:46](853 MB) +PASS -- TEST 'control_c192_intel' [12:43, 09:04](1761 MB) +PASS -- TEST 'control_c384_intel' [12:28, 09:38](2047 MB) +PASS -- TEST 'control_c384gdas_intel' [10:54, 07:24](1522 MB) +PASS -- TEST 'control_stochy_intel' [04:20, 01:33](673 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 00:54](538 MB) +PASS -- TEST 'control_lndp_intel' [03:19, 01:26](668 MB) +PASS -- TEST 'control_iovr4_intel' [06:22, 02:07](658 MB) +PASS -- TEST 'control_iovr5_intel' [05:23, 02:10](672 MB) +PASS -- TEST 'control_p8_intel' [04:51, 02:52](1645 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:49, 02:54](1646 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:53, 02:52](1649 MB) +PASS -- TEST 'control_restart_p8_intel' [02:42, 01:29](922 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:43, 02:29](1625 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:22](983 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:40, 02:59](1619 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:40, 02:48](1738 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:32, 04:35](1650 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:03, 03:29](1702 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:02, 02:33](1657 MB) +PASS -- TEST 'merra2_thompson_intel' [05:04, 02:57](1650 MB) +PASS -- TEST 'regional_control_intel' [06:29, 04:31](960 MB) +PASS -- TEST 'regional_restart_intel' [03:30, 02:29](1104 MB) +PASS -- TEST 'regional_decomp_intel' [06:26, 04:46](947 MB) +PASS -- TEST 'regional_2threads_intel' [04:26, 02:51](914 MB) +PASS -- TEST 'regional_noquilt_intel' [05:30, 04:20](1486 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:33, 04:33](961 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:25, 04:25](958 MB) +PASS -- TEST 'regional_wofs_intel' [06:26, 05:35](2073 MB) + +PASS -- COMPILE 'rrfs_intel' [07:11, 06:53] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:42, 06:38](1202 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:05, 03:27](1444 MB) +PASS -- TEST 'rap_decomp_intel' [07:40, 06:57](1120 MB) +PASS -- TEST 'rap_2threads_intel' [07:39, 06:12](1370 MB) +PASS -- TEST 'rap_restart_intel' [05:04, 03:24](1157 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:53, 06:31](1194 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:52](1173 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 06:07](1202 MB) +PASS -- TEST 'hrrr_control_intel' [04:38, 03:26](1087 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:39, 03:27](1051 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:52, 03:03](1123 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:25, 01:50](1025 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:54, 06:16](1198 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:35](2018 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:21](2168 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 06:58] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:29, 05:22](792 MB) +PASS -- TEST 'control_ras_intel' [03:18, 02:56](809 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 03:53] +PASS -- TEST 'control_csawmg_gnu' [08:32, 07:43](803 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 06:39] +PASS -- TEST 'control_wam_intel' [02:27, 01:52](790 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:54] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:54, 02:14](1646 MB) +PASS -- TEST 'regional_control_faster_intel' [04:25, 04:04](957 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:11, 03:40] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:30, 02:10](1637 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 02:08](1641 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:20, 02:32](827 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:15](828 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:28, 03:23](872 MB) +PASS -- TEST 'control_ras_debug_intel' [03:18, 02:15](832 MB) +PASS -- TEST 'control_diag_debug_intel' [03:32, 02:14](1698 MB) +PASS -- TEST 'control_debug_p8_intel' [03:39, 02:20](1669 MB) +PASS -- TEST 'regional_debug_intel' [14:34, 14:06](887 MB) +PASS -- TEST 'rap_control_debug_intel' [04:22, 04:02](1216 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:19, 03:52](1218 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 03:56](1220 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 03:56](1222 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 03:59](1216 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:24, 04:08](1300 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:05](1220 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:57](1195 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:18, 03:58](1226 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 03:56](1225 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1218 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:16, 03:55](1229 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:21, 06:19](1219 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 03:58](1215 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 04:50](1221 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:18, 03:59](1219 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:00, 06:53](1217 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 03:29] +PASS -- TEST 'control_csawmg_debug_gnu' [02:33, 02:02](791 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 02:43] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:49, 03:11](1311 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:33, 05:22](1133 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:58, 02:50](1028 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 05:05](1295 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:40, 02:36](1046 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:37, 03:00](984 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:51, 04:06](1106 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 01:51](968 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 09:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:38, 01:43](1285 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:34, 00:46](1205 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:27, 01:25](1153 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 07:16] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 03:41](1073 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:20] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 03:56](1103 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:47](1093 MB) +PASS -- TEST 'conus13km_debug_intel' [12:37, 11:27](1343 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:35, 13:45](1003 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:30, 06:44](1245 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:30, 11:30](1410 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:19] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:14](1151 MB) + +PASS -- COMPILE 'hafsw_intel' [11:12, 09:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:04, 05:22](874 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 05:21](1275 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:14, 06:23](948 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:00, 13:45](988 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 15:07](1011 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:47, 05:28](609 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:23, 06:52](618 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:40, 03:07](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 08:37](539 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 04:33](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:43, 03:41](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:49](680 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:49](440 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:39] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:45, 11:13](635 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:11] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:46, 16:48](773 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:45](844 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:37] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:02, 10:42](830 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 10:02] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:26](940 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 05:32](934 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:18](1342 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:48] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:09](1159 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:19](1097 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:04](1007 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:06](1006 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:06](1012 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:09](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:13, 02:09](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:13, 02:02](1010 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 04:58](1159 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:43, 04:50](1144 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:07](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:14, 02:59](2429 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:01](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:29] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:11](1078 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:43] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:07](1147 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:57] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:25, 00:50](335 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:45](561 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:29](557 MB) + +PASS -- COMPILE 'atml_intel' [08:13, 07:37] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:02, 05:43](1631 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:56, 05:07](1644 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:38, 02:55](947 MB) + +PASS -- COMPILE 'atml_debug_intel' [03:10, 03:05] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:00, 28:51](1661 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:40] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:28](1706 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 07:26] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:50, 03:26](1798 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:48, 04:13](1805 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:36, 04:16](1806 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:36] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:17, 16:18](4567 MB) + +PASS -- COMPILE 'atm_gnu' [07:11, 06:15] +PASS -- TEST 'control_c48_gnu' [10:39, 09:23](1555 MB) +PASS -- TEST 'control_stochy_gnu' [03:23, 02:14](734 MB) +PASS -- TEST 'control_ras_gnu' [04:19, 03:43](735 MB) +PASS -- TEST 'control_p8_gnu' [04:51, 03:48](1516 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:27](1518 MB) +PASS -- TEST 'control_flake_gnu' [05:18, 04:16](814 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 06:06] +PASS -- TEST 'rap_control_gnu' [08:45, 07:36](1088 MB) +PASS -- TEST 'rap_decomp_gnu' [08:33, 07:39](1087 MB) +PASS -- TEST 'rap_2threads_gnu' [07:35, 07:05](1122 MB) +PASS -- TEST 'rap_restart_gnu' [05:06, 04:01](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:45, 07:38](1088 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:43, 09:45](1083 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:46, 05:47](884 MB) +PASS -- TEST 'hrrr_control_gnu' [04:37, 03:59](1071 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:34, 04:00](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:35](1045 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:30, 03:57](1077 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:18, 02:03](880 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:18, 02:04](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:51, 07:33](1082 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 08:04] +PASS -- TEST 'control_diag_debug_gnu' [02:32, 01:16](1627 MB) +PASS -- TEST 'regional_debug_gnu' [07:27, 06:11](923 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:16, 01:58](1103 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:16, 02:00](1089 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 02:20](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:16, 02:04](1104 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:25, 02:06](1271 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:18, 03:09](1095 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:19, 01:56](1098 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 02:00](1094 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:08](727 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:14](723 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:35, 01:13](1502 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:18, 01:56](1099 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1101 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 03:18](1101 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:34] +PASS -- TEST 'control_wam_debug_gnu' [02:21, 01:56](499 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:13, 06:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:30, 07:16](971 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:57, 03:50](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:41, 06:37](970 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:45, 03:27](889 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:36, 03:45](949 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:56, 05:24](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 01:58](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:36, 02:26](1266 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:30, 01:02](1172 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:37, 01:35](922 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 07:44] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:36, 04:46](993 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:10, 04:13] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:55](977 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:17, 01:56](975 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:25](1280 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 05:29](970 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:17](1188 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:26, 05:24](1348 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 09:18] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 01:56](1001 MB) + +PASS -- COMPILE 's2swa_gnu' [16:11, 15:18] + +PASS -- COMPILE 's2s_gnu' [16:10, 16:00] + +PASS -- COMPILE 's2swa_debug_gnu' [10:10, 09:34] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 16:13] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:10, 08:42] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 15:18] SYNOPSIS: -Starting Date/Time: 20240425 07:05:44 -Ending Date/Time: 20240425 08:15:15 -Total Time: 01h:09m:54s -Compiles Completed: 53/53 -Tests Completed: 234/234 +Starting Date/Time: 20240428 23:52:40 +Ending Date/Time: 20240429 01:12:23 +Total Time: 01h:20m:09s +Compiles Completed: 54/54 +Tests Completed: 235/235 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF HERCULES REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d35f6da7caf2a4d320aeb75613de67533a11d1b7 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4097341 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 'atml_debug_intel' [04:10, 03:24] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:19, 04:53](1661 MB) + +SYNOPSIS: +Starting Date/Time: 20240429 12:39:56 +Ending Date/Time: 20240429 12:51:25 +Total Time: 00h:11m:32s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 2055263dc5..1299d6635f 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -59efb751087aed49bf96c2f722ba7013cbe33785 +d35f6da7caf2a4d320aeb75613de67533a11d1b7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,10 +21,10 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,318 +35,245 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_4037119 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [38:58, 38:57] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 06:54](1772 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:05, 48:04] -PASS -- TEST 'cpld_control_gfsv17_intel' [22:34, 20:51](1656 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:16, 22:28](1871 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:14, 10:26](993 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:41, 23:57](1618 MB) - -PASS -- COMPILE 's2swa_intel' [38:54, 38:53] -PASS -- TEST 'cpld_control_p8_intel' [08:51, 07:30](1831 MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_control_p8.v2.sfc_intel' [, ]( MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:51, 04:24](1711 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:08, 07:43](1825 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 04:31](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:27, 07:11](2265 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 07:36](1813 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:46, 06:25](1773 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 07:37](1813 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 07:16](1753 MB) - -PASS -- COMPILE 's2sw_intel' [36:24, 36:23] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:56, 05:52](1669 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 05:44](1710 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:15, 05:14] -PASS -- TEST 'cpld_debug_p8_intel' [11:55, 10:36](1846 MB) - -PASS -- COMPILE 's2sw_debug_intel' [04:51, 04:50] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 07:16](1651 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [32:13, 32:12] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 05:44](1707 MB) - -PASS -- COMPILE 's2s_intel' [32:46, 32:46] -PASS -- TEST 'cpld_control_c48_intel' [13:29, 12:45](2799 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:23, 34:22] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:40, 07:14](1821 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [53:05, 53:05] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:01, 20:51](1669 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:51, 10:31](1024 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:01, 21:54](1646 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:03, 05:02] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:16, 32:11](1682 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [35:04, 35:04] -PASS -- TEST 'control_flake_intel' [04:46, 04:29](646 MB) -FAILED: TEST TIMED OUT -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:45, 04:00](1541 MB) -PASS -- TEST 'control_latlon_intel' [04:27, 03:51](1529 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:51, 04:07](1529 MB) -PASS -- TEST 'control_c48_intel' [12:32, 11:54](1718 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:27, 10:08](848 MB) -PASS -- TEST 'control_c192_intel' [15:17, 14:18](1678 MB) -PASS -- TEST 'control_c384_intel' [19:48, 18:10](1826 MB) -PASS -- TEST 'control_c384gdas_intel' [16:16, 13:36](1001 MB) -PASS -- TEST 'control_stochy_intel' [02:27, 02:11](602 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:34, 01:19](434 MB) -PASS -- TEST 'control_lndp_intel' [02:23, 02:07](602 MB) -PASS -- TEST 'control_iovr4_intel' [03:31, 03:17](595 MB) -PASS -- TEST 'control_iovr5_intel' [03:31, 03:17](603 MB) -PASS -- TEST 'control_p8_intel' [05:11, 04:05](1549 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 04:00](1579 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:13, 03:53](1574 MB) -PASS -- TEST 'control_restart_p8_intel' [03:09, 02:13](808 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:01, 03:53](1564 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 02:07](849 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:03, 04:02](1563 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:54, 03:46](1651 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:40, 07:02](1573 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 05:29](1608 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:18, 04:05](1572 MB) -PASS -- TEST 'merra2_thompson_intel' [05:45, 04:19](1581 MB) -PASS -- TEST 'regional_control_intel' [07:44, 07:09](758 MB) -PASS -- TEST 'regional_restart_intel' [04:14, 03:48](930 MB) -PASS -- TEST 'regional_decomp_intel' [08:08, 07:33](759 MB) -PASS -- TEST 'regional_2threads_intel' [05:06, 04:31](757 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 07:04](761 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 07:04](761 MB) - -PASS -- COMPILE 'rrfs_intel' [32:59, 32:58] -PASS -- TEST 'rap_control_intel' [11:08, 10:04](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:32, 05:35](1214 MB) -PASS -- TEST 'rap_decomp_intel' [11:41, 10:35](989 MB) -PASS -- TEST 'rap_2threads_intel' [10:43, 09:38](1071 MB) -PASS -- TEST 'rap_restart_intel' [05:56, 05:17](993 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:03, 10:01](991 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:45, 10:42](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:17, 07:39](999 MB) -PASS -- TEST 'hrrr_control_intel' [06:19, 05:09](973 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:20, 05:13](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 04:42](1065 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:13, 02:55](910 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:03, 09:57](989 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:38, 12:21](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:22, 12:08](1921 MB) - -PASS -- COMPILE 'csawmg_intel' [31:27, 31:27] -PASS -- TEST 'control_csawmg_intel' [08:36, 08:06](693 MB) -PASS -- TEST 'control_ras_intel' [04:36, 04:24](667 MB) - -PASS -- COMPILE 'wam_intel' [29:55, 29:55] -PASS -- TEST 'control_wam_intel' [03:01, 02:50](497 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [31:50, 31:49] -PASS -- TEST 'control_p8_faster_intel' [04:52, 03:38](1568 MB) -PASS -- TEST 'regional_control_faster_intel' [07:10, 06:36](769 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:58, 05:58] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:55, 03:19](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:58, 03:16](1565 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:03, 03:46](760 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:38, 03:24](769 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:48, 05:17](811 MB) -PASS -- TEST 'control_ras_debug_intel' [03:45, 03:28](770 MB) -PASS -- TEST 'control_diag_debug_intel' [04:23, 03:44](1607 MB) -PASS -- TEST 'control_debug_p8_intel' [04:31, 03:53](1599 MB) -PASS -- TEST 'regional_debug_intel' [23:12, 22:35](783 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 06:07](1156 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:08, 05:55](1151 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 06:04](1149 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 06:06](1157 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 06:05](1160 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:41, 06:19](1236 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 06:13](1151 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 06:14](1151 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:20, 06:07](1153 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 06:12](1160 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:18, 06:03](1144 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 06:09](1150 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:12, 10:01](1153 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:13, 06:00](1151 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:36, 07:22](1151 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 06:04](1147 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:40, 10:30](1157 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:00, 04:00] -PASS -- TEST 'control_wam_debug_intel' [06:22, 06:10](445 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:01, 30:00] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:10, 05:14](1071 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:20, 08:19](901 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:53, 04:29](862 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:54, 07:52](957 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 04:06](911 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:08, 04:42](853 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 06:14](902 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 02:23](848 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [42:46, 42:46] -PASS -- TEST 'conus13km_control_intel' [03:43, 03:01](1104 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:04, 01:27](1054 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:14, 01:38](1022 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:43, 30:42] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:06, 05:33](911 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:19, 04:19] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:13, 06:00](1029 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:10, 05:54](1031 MB) -PASS -- TEST 'conus13km_debug_intel' [19:09, 18:30](1121 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:12, 18:33](884 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:16, 10:41](1066 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:57, 18:22](1205 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:11] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:17, 06:05](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [34:28, 34:28] -PASS -- TEST 'hafs_regional_atm_intel' [08:15, 07:01](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:54, 06:31](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:41, 09:13](776 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:56, 16:15](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:43, 18:12](821 MB) -PASS -- TEST 'gnv1_nested_intel' [06:36, 05:43](773 MB) - -PASS -- COMPILE 'hafs_all_intel' [32:14, 32:14] -PASS -- TEST 'hafs_regional_docn_intel' [09:58, 08:43](767 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 08:46](756 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:07, 08:07] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:45, 03:35](1077 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:26, 02:13](1039 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:43, 03:34](925 MB) -FAILED: TEST TIMED OUT -- TEST 'datm_cdeps_iau_gefs_intel' [, ]( MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:52, 03:41](931 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:54, 03:43](1064 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:42, 03:34](1056 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:45, 03:34](927 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:54, 07:54](881 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:48, 07:51](842 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:41, 03:34](1063 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:11, 05:01](2408 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:57, 05:44](2391 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:19, 03:19] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 08:10](1008 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 08:17] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 03:32](1072 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:55, 01:55] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:01, 01:36](233 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:37, 01:19](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:12, 00:55](256 MB) - -PASS -- COMPILE 'atml_intel' [39:04, 39:03] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:05, 07:42](1597 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:05, 07:42](1593 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:36, 03:59](863 MB) - -PASS -- COMPILE 'atmw_intel' [31:47, 31:46] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 02:16](1600 MB) - -PASS -- COMPILE 'atmaero_intel' [30:44, 30:44] -PASS -- TEST 'atmaero_control_p8_intel' [06:30, 05:22](1674 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:31, 06:23](1706 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:20, 06:28](1732 MB) - -SYNOPSIS: -Starting Date/Time: 20240424 18:28:23 -Ending Date/Time: 20240425 00:58:46 -Total Time: 06h:30m:55s -Compiles Completed: 32/32 -Tests Completed: 155/158 -Failed Tests: -* TEST cpld_control_p8.v2.sfc_intel: FAILED: TEST TIMED OUT --- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_cpld_control_p8.v2.sfc_intel.log -* TEST control_CubedSphereGrid_intel: FAILED: TEST TIMED OUT --- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_control_CubedSphereGrid_intel.log -* TEST datm_cdeps_iau_gefs_intel: FAILED: TEST TIMED OUT --- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_datm_cdeps_iau_gefs_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -59efb751087aed49bf96c2f722ba7013cbe33785 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3617777 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4164149 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_intel' [39:13, 38:28] -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:53, 07:28](1828 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:41] -PASS -- TEST 'control_CubedSphereGrid_intel' [04:58, 03:57](1538 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:57] -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:35](923 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:16, 40:08] ( 2 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:38, 06:57](1794 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:16, 50:07] ( 2 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [46:04, 20:47](1666 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:20, 22:40](1890 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [31:06, 10:18](989 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:45, 24:04](1629 MB) + +PASS -- COMPILE 's2swa_intel' [41:16, 40:08] ( 1 warnings 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [28:12, 07:34](1823 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:47, 07:29](1828 MB) +PASS -- TEST 'cpld_restart_p8_intel' [31:57, 04:30](1714 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:07, 07:36](1837 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [40:03, 04:30](1728 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:59, 07:12](2258 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:00, 07:44](1828 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:22, 06:34](1780 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:29, 07:33](1809 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [34:33, 07:22](1776 MB) + +PASS -- COMPILE 's2sw_intel' [38:14, 37:51] ( 1 warnings 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:33, 06:39](1659 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:48, 06:23](1703 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:26] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:42](1839 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:25] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:27, 07:20](1663 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:16, 32:18] ( 1 warnings 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:59, 05:49](1719 MB) + +PASS -- COMPILE 's2s_intel' [34:14, 33:57] ( 1 warnings 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [16:23, 12:49](2786 MB) + +PASS -- COMPILE 's2swa_faster_intel' [33:26, 33:08] ( 1 warnings 1608 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:53, 07:13](1825 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [53:18, 52:31] ( 1 warnings 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:40, 20:53](1684 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:38, 09:37](1036 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:45, 23:56](1668 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:12, 05:01] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:40, 32:15](1695 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [35:16, 34:17] ( 2 warnings 1151 remarks ) +PASS -- TEST 'control_flake_intel' [17:34, 04:30](643 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:20, 03:49](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:20, 04:08](1551 MB) +PASS -- TEST 'control_latlon_intel' [17:10, 03:54](1544 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:23, 04:04](1543 MB) +PASS -- TEST 'control_c48_intel' [14:22, 11:49](1735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:47, 10:08](846 MB) +PASS -- TEST 'control_c192_intel' [36:37, 14:19](1686 MB) +PASS -- TEST 'control_c384_intel' [41:27, 18:39](1813 MB) +PASS -- TEST 'control_c384gdas_intel' [38:04, 13:43](1019 MB) +PASS -- TEST 'control_stochy_intel' [12:33, 02:16](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [16:33, 01:20](434 MB) +PASS -- TEST 'control_lndp_intel' [15:32, 02:09](602 MB) +PASS -- TEST 'control_iovr4_intel' [14:35, 03:24](593 MB) +PASS -- TEST 'control_iovr5_intel' [14:37, 03:22](598 MB) +PASS -- TEST 'control_p8_intel' [21:42, 04:04](1587 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [32:59, 04:00](1572 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [22:56, 03:44](1575 MB) +PASS -- TEST 'control_restart_p8_intel' [20:27, 02:13](816 MB) +PASS -- TEST 'control_noqr_p8_intel' [21:47, 03:48](1564 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [20:21, 02:09](834 MB) +PASS -- TEST 'control_decomp_p8_intel' [19:42, 03:59](1570 MB) +PASS -- TEST 'control_2threads_p8_intel' [19:41, 03:47](1673 MB) +PASS -- TEST 'control_p8_lndp_intel' [26:18, 07:02](1574 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [19:59, 05:08](1642 MB) +PASS -- TEST 'control_p8_mynn_intel' [31:00, 04:02](1583 MB) +PASS -- TEST 'merra2_thompson_intel' [21:03, 04:27](1584 MB) +PASS -- TEST 'regional_control_intel' [21:58, 07:06](762 MB) +PASS -- TEST 'regional_restart_intel' [19:47, 03:46](934 MB) +PASS -- TEST 'regional_decomp_intel' [13:43, 07:33](760 MB) +PASS -- TEST 'regional_2threads_intel' [09:39, 04:29](757 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [13:52, 07:03](767 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [22:47, 07:00](766 MB) + +PASS -- COMPILE 'rrfs_intel' [33:13, 32:41] ( 4 warnings 1119 remarks ) +PASS -- TEST 'rap_control_intel' [31:42, 10:05](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [26:14, 05:51](1217 MB) +PASS -- TEST 'rap_decomp_intel' [32:09, 10:52](987 MB) +PASS -- TEST 'rap_2threads_intel' [32:08, 09:52](1082 MB) +PASS -- TEST 'rap_restart_intel' [08:37, 05:16](985 MB) +PASS -- TEST 'rap_sfcdiff_intel' [32:28, 10:21](994 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:01, 11:01](989 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:25, 07:30](999 MB) +PASS -- TEST 'hrrr_control_intel' [26:00, 05:16](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [26:01, 05:30](985 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [25:24, 04:46](1063 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:31, 02:48](920 MB) +PASS -- TEST 'rrfs_v1beta_intel' [29:38, 10:14](987 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [29:36, 12:43](1936 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [30:34, 12:24](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [33:13, 31:00] ( 2 warnings 1096 remarks ) +PASS -- TEST 'control_csawmg_intel' [23:44, 08:19](695 MB) +PASS -- TEST 'control_ras_intel' [18:30, 04:29](670 MB) + +PASS -- COMPILE 'wam_intel' [41:15, 29:55] ( 1 warnings 982 remarks ) +PASS -- TEST 'control_wam_intel' [08:25, 02:58](501 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [48:19, 31:41] ( 1 warnings 1295 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:32, 03:33](1576 MB) +PASS -- TEST 'regional_control_faster_intel' [08:44, 06:30](766 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [23:14, 05:37] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:50, 03:41](1562 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:53, 03:42](1578 MB) +PASS -- TEST 'control_stochy_debug_intel' [14:32, 03:46](763 MB) +PASS -- TEST 'control_lndp_debug_intel' [13:30, 03:23](766 MB) +PASS -- TEST 'control_csawmg_debug_intel' [16:52, 05:20](812 MB) +PASS -- TEST 'control_ras_debug_intel' [11:33, 03:24](775 MB) +PASS -- TEST 'control_diag_debug_intel' [10:59, 03:25](1624 MB) +PASS -- TEST 'control_debug_p8_intel' [11:54, 03:48](1589 MB) +PASS -- TEST 'regional_debug_intel' [26:52, 21:47](778 MB) +PASS -- TEST 'rap_control_debug_intel' [10:26, 06:02](1157 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:28, 05:54](1145 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [11:31, 06:02](1154 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:30, 06:05](1153 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:25, 06:02](1159 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:34, 06:25](1237 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:28, 06:12](1152 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:28, 06:11](1153 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:36, 06:12](1152 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:33, 06:03](1158 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:01](1152 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:04](1154 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:26, 09:55](1151 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:58](1145 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:25](1159 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:24, 06:04](1149 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:22, 10:33](1156 MB) + +PASS -- COMPILE 'wam_debug_intel' [22:15, 04:01] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [09:24, 06:11](441 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [37:18, 30:17] ( 4 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:17, 05:45](1073 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [17:09, 08:22](903 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:18, 04:26](869 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:09, 07:57](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [17:24, 04:03](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:18, 04:40](857 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:22, 06:16](903 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:36, 02:30](846 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:21, 42:35] ( 4 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [11:09, 02:56](1111 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:00, 01:21](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:59, 01:34](1026 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [36:13, 30:44] ( 4 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:58, 05:31](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:09] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 06:06](1031 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:52](1024 MB) +PASS -- TEST 'conus13km_debug_intel' [20:58, 18:22](1140 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:37](854 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:40](1082 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:55, 18:20](1204 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:10] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 06:06](1071 MB) + +PASS -- COMPILE 'hafsw_intel' [35:16, 34:59] ( 2 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:25, 07:14](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:38, 06:33](1079 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:52, 09:18](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [23:35, 16:10](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:54, 18:09](825 MB) +PASS -- TEST 'gnv1_nested_intel' [13:34, 05:41](773 MB) + +PASS -- COMPILE 'hafs_all_intel' [32:13, 31:42] ( 1 warnings 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:29, 09:08](770 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:33, 08:52](752 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:00] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:24, 03:36](1053 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:24, 02:12](1034 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:22, 03:34](923 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:24, 03:33](925 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 03:36](926 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:24, 03:37](1058 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:24, 03:37](1053 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:24, 03:31](922 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:25, 07:55](888 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:25, 08:18](839 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:21, 03:36](1066 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:25, 05:08](2344 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:05](2339 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:25] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:58](1006 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 08:00] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:25, 03:38](1067 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:11, 01:49] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:37, 01:35](231 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:34, 01:22](259 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:49](254 MB) + +PASS -- COMPILE 'atml_intel' [39:14, 34:04] ( 9 warnings 1189 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:43, 08:04](1602 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [16:49, 07:52](1598 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 04:22](865 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:12, 05:14] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:53, 07:27](1615 MB) + +PASS -- COMPILE 'atmw_intel' [38:14, 31:57] ( 1 warnings 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:29, 02:19](1615 MB) + +PASS -- COMPILE 'atmaero_intel' [36:17, 30:30] ( 1 warnings 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:29, 05:14](1697 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [13:31, 06:24](1725 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:16, 06:34](1726 MB) SYNOPSIS: -Starting Date/Time: 20240425 12:08:23 -Ending Date/Time: 20240425 12:58:47 -Total Time: 00h:50m:35s -Compiles Completed: 3/3 -Tests Completed: 3/3 +Starting Date/Time: 20240429 17:50:27 +Ending Date/Time: 20240429 21:45:18 +Total Time: 03h:55m:28s +Compiles Completed: 33/33 +Tests Completed: 159/159 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 65abf9421d..97ee167d89 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 +fc1d99cd44c4dfa5f95d34deede2a4e0ff81577b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,10 +21,10 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,311 +35,288 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_400870 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_453139 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:56] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:22, 05:18](3112 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:24] -PASS -- TEST 'cpld_control_gfsv17_intel' [18:54, 16:34](1744 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:01, 17:20](2026 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:09, 08:05](1112 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:51, 18:36](1644 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:18] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:56, 23:09](1683 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 15:26] -PASS -- TEST 'cpld_control_p8_intel' [08:02, 05:39](3210 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:22, 05:41](3211 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:07, 03:18](3253 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:02, 05:46](3237 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:07, 03:21](3272 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:06, 06:18](3556 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:02, 05:44](3199 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:50, 04:43](3072 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:26, 05:46](3212 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 10:01](3339 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:35, 06:13](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:57, 11:05](4120 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:22, 07:03](4371 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:07, 05:19](3176 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 12:53] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:04, 04:23](1734 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:30, 04:18](1780 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:16] -PASS -- TEST 'cpld_debug_p8_intel' [10:47, 08:41](3251 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:18] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:12, 06:02](1756 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 13:00] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:28, 04:26](1775 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 14:07] -PASS -- TEST 'cpld_control_c48_intel' [10:07, 08:09](2835 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:10] -PASS -- TEST 'cpld_control_p8_faster_intel' [07:43, 05:21](3152 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:59] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:27, 16:40](1764 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:27, 08:14](1177 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:18, 18:45](1685 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:24] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:12, 24:12](1720 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:33] -PASS -- TEST 'control_flake_intel' [04:32, 03:30](698 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:31, 06:00](872 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB) -PASS -- TEST 'control_c384gdas_intel' [12:18, 08:58](1359 MB) -PASS -- TEST 'control_stochy_intel' [02:25, 01:42](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:22, 00:59](502 MB) -PASS -- TEST 'control_lndp_intel' [02:26, 01:34](653 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:32](650 MB) -PASS -- TEST 'control_iovr5_intel' [03:26, 02:27](654 MB) -PASS -- TEST 'control_p8_intel' [04:43, 03:04](1626 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:43, 02:59](1638 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:40, 02:51](1626 MB) -PASS -- TEST 'control_restart_p8_intel' [03:35, 01:37](899 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:36, 02:59](1619 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:17, 01:37](934 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:20, 03:00](1608 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:19, 03:03](1719 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:59, 05:10](1634 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:55](1691 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:34, 02:59](1633 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB) -PASS -- TEST 'regional_control_intel' [06:52, 05:13](817 MB) -PASS -- TEST 'regional_restart_intel' [03:42, 02:45](987 MB) -PASS -- TEST 'regional_decomp_intel' [06:36, 05:33](851 MB) -PASS -- TEST 'regional_2threads_intel' [04:33, 03:47](847 MB) -PASS -- TEST 'regional_noquilt_intel' [05:47, 05:03](1369 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:50, 05:10](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 05:11](858 MB) -PASS -- TEST 'regional_wofs_intel' [07:45, 06:43](1923 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:29] -PASS -- TEST 'rap_control_intel' [09:34, 07:43](1106 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:48](1297 MB) -PASS -- TEST 'rap_decomp_intel' [09:00, 08:06](1024 MB) -PASS -- TEST 'rap_2threads_intel' [08:57, 07:52](1183 MB) -PASS -- TEST 'rap_restart_intel' [05:21, 04:03](1102 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:33, 07:40](1106 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:29, 08:07](1025 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:21, 05:50](1129 MB) -PASS -- TEST 'hrrr_control_intel' [05:10, 04:00](1035 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:09, 04:08](1028 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:03, 03:26](1111 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:10](994 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:22, 07:33](1091 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:33, 09:09](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 08:57](2071 MB) - -PASS -- COMPILE 'csawmg_intel' [11:10, 11:05] -PASS -- TEST 'control_csawmg_intel' [06:42, 05:59](750 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:21](735 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 11:04] -PASS -- TEST 'control_wam_intel' [02:22, 02:03](650 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 11:23] -PASS -- TEST 'control_p8_faster_intel' [04:29, 02:39](1623 MB) -PASS -- TEST 'regional_control_faster_intel' [05:47, 04:35](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:17] -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) -PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:01](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:50](819 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:13](863 MB) -PASS -- TEST 'control_ras_debug_intel' [03:23, 02:48](830 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB) -PASS -- TEST 'control_debug_p8_intel' [03:50, 02:45](1650 MB) -PASS -- TEST 'regional_debug_intel' [18:44, 17:17](810 MB) -PASS -- TEST 'rap_control_debug_intel' [05:24, 04:58](1198 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:51](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:52](1197 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:57](1205 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 05:03](1155 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:05](1280 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1210 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:55](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:52](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:59](1200 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:52](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 05:00](1206 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 08:04](1196 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:51](1194 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:04](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:23, 05:02](1205 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:24, 08:26](1206 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:13] -PASS -- TEST 'control_wam_debug_intel' [05:23, 05:00](507 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:32] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:06, 04:25](1165 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:15, 06:25](1051 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 03:22](986 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:57, 06:39](1043 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:18, 03:47](959 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 03:36](920 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:18, 04:51](996 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:52](928 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 14:26] -PASS -- TEST 'conus13km_control_intel' [02:55, 02:07](1203 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:23](1122 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:19](1109 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:26] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:13](998 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:26] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:50](1084 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:56](1075 MB) -PASS -- TEST 'conus13km_debug_intel' [14:49, 14:08](1230 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 14:41](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:34, 08:20](1159 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 14:21](1297 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:04] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:05](1128 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 13:30] -PASS -- TEST 'hafs_regional_atm_intel' [07:16, 05:36](744 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 06:05](1121 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:57](831 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:17, 12:41](862 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:35, 14:37](882 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 06:21](499 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:33](517 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 03:12](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:31, 08:01](474 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:10](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 04:01](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 05:19](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:26](400 MB) -PASS -- TEST 'gnv1_nested_intel' [05:59, 04:35](805 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:36] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:58, 13:08](569 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 14:08] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:02, 09:35](656 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:06, 09:41](741 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 14:00] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 07:03](731 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:11, 12:43] -PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:19](836 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:25](819 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 15:51](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:22, 02:44](1135 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:41](1092 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:36](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:40](1017 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:40](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:42](1117 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:45](1137 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:12, 05:54](1059 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:10, 05:51](1036 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:40](1126 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 03:37](2497 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:41](2442 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:42] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:16](1063 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:30] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:40](1126 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:44] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:50](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:50](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:33](309 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 14:20] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:32, 04:14](1615 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:13](1601 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:44, 02:20](893 MB) - -PASS -- COMPILE 'atmw_intel' [13:10, 12:19] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:18, 01:46](1661 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 11:33] -PASS -- TEST 'atmaero_control_p8_intel' [05:11, 03:57](3019 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:21, 04:43](3092 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:33] -PASS -- TEST 'regional_atmaq_debug_intel' [22:54, 20:29](4572 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:11, 14:24] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:09, 05:32](3175 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:33] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 17:22](1756 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 18:51](2032 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:23](1113 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:58, 19:27](1653 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:15] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:51, 23:02](1685 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 15:04] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:52, 05:47](3211 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 05:48](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:59, 03:26](3248 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 05:50](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:00, 03:25](3277 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:52, 06:12](3550 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:52, 05:48](3201 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:59, 04:49](3068 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:10, 05:47](3209 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:10, 10:25](3343 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:33, 06:33](3630 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:06, 11:03](4125 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:33, 06:54](4372 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:59, 05:35](3173 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 14:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 04:46](1742 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:59, 04:30](1779 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 04:32] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:59, 08:34](3246 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:15] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:13, 06:03](1751 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 04:41](1778 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 13:22] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:55, 08:12](2831 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:37, 05:19](3213 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 16:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:11, 17:31](1765 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:34, 08:30](1168 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 19:47](1679 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 04:00] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:15, 24:43](1709 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:54] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:26, 03:34](700 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:53, 02:53](1605 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:57, 03:03](1606 MB) +PASS -- TEST 'control_latlon_intel' [07:49, 02:54](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:57, 03:00](1598 MB) +PASS -- TEST 'control_c48_intel' [11:57, 07:09](1757 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:34, 06:02](868 MB) +PASS -- TEST 'control_c192_intel' [12:09, 10:41](1743 MB) +PASS -- TEST 'control_c384_intel' [16:17, 11:37](2003 MB) +PASS -- TEST 'control_c384gdas_intel' [15:28, 09:10](1361 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:43](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:24, 01:06](504 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 01:41](652 MB) +PASS -- TEST 'control_iovr4_intel' [03:27, 02:36](659 MB) +PASS -- TEST 'control_iovr5_intel' [03:28, 02:33](652 MB) +PASS -- TEST 'control_p8_intel' [04:15, 03:01](1631 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:15, 03:02](1635 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:38, 02:57](1636 MB) +PASS -- TEST 'control_restart_p8_intel' [03:16, 01:41](890 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:28, 02:52](1621 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:38](928 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:24, 03:01](1617 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:19, 03:05](1713 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:17](1628 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 03:57](1699 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:36, 03:01](1637 MB) +PASS -- TEST 'merra2_thompson_intel' [06:40, 03:20](1635 MB) +PASS -- TEST 'regional_control_intel' [06:44, 05:13](859 MB) +PASS -- TEST 'regional_restart_intel' [08:47, 02:46](1025 MB) +PASS -- TEST 'regional_decomp_intel' [06:40, 05:34](851 MB) +PASS -- TEST 'regional_2threads_intel' [05:42, 03:44](852 MB) +PASS -- TEST 'regional_noquilt_intel' [06:43, 05:09](1364 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:47, 05:11](859 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:14](858 MB) +PASS -- TEST 'regional_wofs_intel' [07:45, 06:40](1922 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:36] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:32, 07:45](1110 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:44](1290 MB) +PASS -- TEST 'rap_decomp_intel' [10:01, 08:07](1030 MB) +PASS -- TEST 'rap_2threads_intel' [10:04, 07:57](1191 MB) +PASS -- TEST 'rap_restart_intel' [06:24, 04:13](1102 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:27, 07:46](1110 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:58, 08:48](1038 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:28, 05:50](1132 MB) +PASS -- TEST 'hrrr_control_intel' [06:00, 04:03](1039 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:00, 04:06](1028 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:23](1104 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:28, 02:10](999 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:29, 07:38](1095 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:13](1998 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:01](2068 MB) + +PASS -- COMPILE 'csawmg_intel' [13:12, 10:59] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:41, 06:06](748 MB) +PASS -- TEST 'control_ras_intel' [05:25, 03:19](738 MB) + +PASS -- COMPILE 'wam_intel' [12:12, 10:36] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [04:28, 02:06](659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 11:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:41, 02:40](1628 MB) +PASS -- TEST 'regional_control_faster_intel' [10:45, 04:40](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 04:22] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:56, 02:41](1620 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:58, 02:44](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:10](815 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:24, 02:55](819 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:45, 04:21](811 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:51](826 MB) +PASS -- TEST 'control_diag_debug_intel' [05:56, 02:43](1673 MB) +PASS -- TEST 'control_debug_p8_intel' [06:47, 02:52](1651 MB) +PASS -- TEST 'regional_debug_intel' [20:48, 17:26](849 MB) +PASS -- TEST 'rap_control_debug_intel' [07:24, 04:47](1198 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:23, 04:50](1202 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 04:56](1195 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:56](1201 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 04:56](1200 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:11](1290 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 04:55](1209 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 04:59](1209 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:01](1205 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 04:53](1206 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:52](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:54](1198 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:55](1205 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:53](1138 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 05:49](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:28, 04:49](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:31, 08:31](1209 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:10, 04:09] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:21, 04:59](525 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:34] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:28](1166 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 06:31](1047 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:16, 03:32](987 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 07:08](1089 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:14, 03:00](969 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 03:37](922 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:24, 04:52](1033 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:24, 01:53](933 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 13:55] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:55, 02:09](1198 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:46, 01:01](1122 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:39, 01:16](1114 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 10:44] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:48, 04:17](1002 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:03] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:53](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:50](1076 MB) +PASS -- TEST 'conus13km_debug_intel' [15:53, 14:33](1227 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:46](931 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:26](1101 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:38](1297 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:07] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:00](1114 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 12:04] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:29](743 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:26, 06:00](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:59](831 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:15](864 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:36, 14:56](882 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 06:19](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:31](516 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:48, 03:12](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 08:06](475 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:14](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:52, 04:05](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:53, 05:19](581 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:27, 01:27](396 MB) +PASS -- TEST 'gnv1_nested_intel' [07:51, 04:36](803 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:06] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:05, 12:54](568 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:28] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:59, 09:45](651 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:07, 09:54](710 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:14] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 07:06](696 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 11:50] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:19, 06:30](778 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 06:28](815 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 15:54](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:05] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 02:37](1133 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:42](1080 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:33](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:35](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:35](1016 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:40](1120 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:38](1134 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:32](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 05:58](1061 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 05:54](1034 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:37](1122 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:32](2488 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:32](2500 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 03:05] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:14](1063 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:29] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1141 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:21] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:49](259 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:52](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:31](321 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 12:30] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 04:15](1608 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:15](1608 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:46, 02:22](896 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:04] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [35:33, 33:19](1629 MB) + +PASS -- COMPILE 'atmw_intel' [17:11, 12:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:45](1675 MB) + +PASS -- COMPILE 'atmaero_intel' [16:11, 12:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:30, 04:03](3023 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:25, 04:52](3089 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:04, 05:00](3114 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:06] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:43, 21:34](4320 MB) SYNOPSIS: -Starting Date/Time: 20240422 07:29:19 -Ending Date/Time: 20240422 08:52:50 -Total Time: 01h:23m:58s -Compiles Completed: 37/37 -Tests Completed: 167/179 -Failed Tests: -* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_intel.log -* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_parallel_intel.log -* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_latlon_intel.log -* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_wrtGauss_netcdf_parallel_intel.log -* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c48_intel.log -* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c192_intel.log -* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c384_intel.log -* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_merra2_thompson_intel.log -* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_debug_intel.log -* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_wrtGauss_netcdf_parallel_debug_intel.log -* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_diag_debug_intel.log -* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_atmaero_control_p8_rad_micro_intel.log +Starting Date/Time: 20240429 07:54:50 +Ending Date/Time: 20240429 09:33:25 +Total Time: 01h:39m:22s +Compiles Completed: 38/38 +Tests Completed: 180/180 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. +A file 'test_changes.list' was generated but is empty. If you are using this log as a pull request verification, please commit 'test_changes.list'. -Result: FAILURE +Result: SUCCESS ====END OF ORION REGRESSION TESTING LOG==== ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -d47726e50be21a6b878bfb05f03b0b9fbe725775 +d35f6da7caf2a4d320aeb75613de67533a11d1b7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -359,10 +336,10 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -373,38 +350,22 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_141822 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_205619 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:33] -PASS -- TEST 'control_CubedSphereGrid_intel' [03:49, 02:56](1598 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:51, 04:16](1604 MB) -PASS -- TEST 'control_latlon_intel' [03:46, 02:54](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:55, 03:00](1599 MB) -PASS -- TEST 'control_c48_intel' [08:50, 07:10](1774 MB) -PASS -- TEST 'control_c192_intel' [11:58, 10:27](1749 MB) -PASS -- TEST 'control_c384_intel' [13:55, 11:23](2001 MB) -PASS -- TEST 'merra2_thompson_intel' [05:39, 03:14](1640 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 05:06] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:50](1606 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:47](1612 MB) -PASS -- TEST 'control_diag_debug_intel' [03:52, 02:58](1664 MB) -PASS -- COMPILE 'atmaero_intel' [12:11, 11:46] -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:03, 04:48](3109 MB) +PASS -- COMPILE 'atml_debug_intel' [09:11, 04:19] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:13, 05:46](1632 MB) SYNOPSIS: -Starting Date/Time: 20240422 10:08:06 -Ending Date/Time: 20240422 10:36:28 -Total Time: 00h:28m:37s -Compiles Completed: 3/3 -Tests Completed: 12/12 +Starting Date/Time: 20240429 11:52:48 +Ending Date/Time: 20240429 12:14:12 +Total Time: 00h:21m:32s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index f6db2418d3..7d7cd4c611 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,30 +1,30 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -bcc92327e9e244c4ca9db1707f4df177799426b2 +d35f6da7caf2a4d320aeb75613de67533a11d1b7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.6.2-89-g3d7067a) c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps0.9.2-32-g4e19850c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (da95cc4) + da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (remotes/origin/HEAD-11-gda95cc4) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4226-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,300 +35,237 @@ 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-20240419 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_185658 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240426 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_121661 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [27:46, 27:26] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:19, 01:21](2970 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:51] -PASS -- TEST 'cpld_control_gfsv17_intel' [14:36, 02:00](1594 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [56:37, 01:52](1717 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [56:37, 01:31](850 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [55:44, 01:30](1569 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:29] -PASS -- TEST 'cpld_debug_gfsv17_intel' [21:46, 01:50](1601 MB) - -PASS -- COMPILE 's2swa_intel' [16:34, 15:27] -PASS -- TEST 'cpld_control_p8_intel' [10:29, 01:22](3007 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:29, 01:47](3002 MB) -PASS -- TEST 'cpld_restart_p8_intel' [02:08, 01:43](3066 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:29, 01:20](3027 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [02:10, 01:40](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:29, 01:07](3314 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:29, 01:17](3002 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:30, 01:27](2928 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:29, 01:49](3003 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [10:38, 03:00](3952 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [53:25, 03:56](4251 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 01:53](2967 MB) - -PASS -- COMPILE 's2sw_intel' [14:29, 13:58] -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:36, 00:47](1582 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:36, 01:52](1639 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 10:10] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:40, 00:56](1638 MB) - -PASS -- COMPILE 's2s_intel' [25:45, 24:32] -PASS -- TEST 'cpld_control_c48_intel' [01:18, 00:40](2654 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:46, 26:37] -PASS -- TEST 'cpld_control_p8_faster_intel' [59:19, 01:33](3003 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:29, 12:08] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:35, 01:13](1605 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [57:05, 00:41](902 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [57:06, 01:40](1582 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:35, 15:50] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [10:30, 01:38](1613 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [26:42, 25:46] -PASS -- TEST 'control_flake_intel' [55:02, 00:29](571 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [55:01, 00:24](1477 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [51:16, 01:19](1474 MB) -PASS -- TEST 'control_latlon_intel' [55:01, 00:22](1475 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [55:01, 00:31](1467 MB) -PASS -- TEST 'control_c48_intel' [55:00, 00:50](1594 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [55:00, 00:50](714 MB) -PASS -- TEST 'control_c192_intel' [55:01, 01:22](1584 MB) -PASS -- TEST 'control_c384_intel' [55:05, 01:59](1911 MB) -PASS -- TEST 'control_c384gdas_intel' [55:05, 02:25](1089 MB) -PASS -- TEST 'control_stochy_intel' [55:01, 00:31](527 MB) -PASS -- TEST 'control_stochy_restart_intel' [52:32, 00:56](336 MB) -PASS -- TEST 'control_lndp_intel' [55:01, 00:36](526 MB) -PASS -- TEST 'control_iovr4_intel' [55:01, 00:49](523 MB) -PASS -- TEST 'control_iovr5_intel' [55:01, 00:50](527 MB) -PASS -- TEST 'control_p8_intel' [55:01, 01:55](1502 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [55:01, 01:52](1513 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [55:01, 01:57](1511 MB) -PASS -- TEST 'control_restart_p8_intel' [49:30, 00:48](693 MB) -PASS -- TEST 'control_noqr_p8_intel' [55:01, 01:54](1499 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [49:30, 00:52](700 MB) -PASS -- TEST 'control_decomp_p8_intel' [54:34, 01:25](1499 MB) -PASS -- TEST 'control_2threads_p8_intel' [53:10, 01:22](1589 MB) -PASS -- TEST 'control_p8_lndp_intel' [52:33, 01:24](1501 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [51:35, 02:02](1556 MB) -PASS -- TEST 'control_p8_mynn_intel' [51:29, 01:57](1513 MB) -PASS -- TEST 'merra2_thompson_intel' [51:29, 01:44](1513 MB) -PASS -- TEST 'regional_control_intel' [51:20, 00:20](608 MB) -PASS -- TEST 'regional_restart_intel' [45:35, 00:13](778 MB) -PASS -- TEST 'regional_decomp_intel' [51:14, 00:54](608 MB) -PASS -- TEST 'regional_2threads_intel' [51:11, 00:56](665 MB) -PASS -- TEST 'regional_noquilt_intel' [51:03, 00:23](1141 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [50:46, 00:28](609 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [50:29, 00:22](609 MB) -PASS -- TEST 'regional_wofs_intel' [49:33, 00:58](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [30:47, 30:16] -PASS -- TEST 'rap_control_intel' [45:48, 01:46](921 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:21, 00:33](1099 MB) -PASS -- TEST 'rap_decomp_intel' [44:57, 01:11](917 MB) -PASS -- TEST 'rap_2threads_intel' [44:56, 00:45](1012 MB) -PASS -- TEST 'rap_restart_intel' [36:22, 01:12](789 MB) -PASS -- TEST 'rap_sfcdiff_intel' [44:45, 01:26](914 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:32, 01:40](915 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [33:21, 01:20](783 MB) -PASS -- TEST 'hrrr_control_intel' [44:26, 01:23](910 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [43:32, 01:19](911 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [43:14, 01:36](993 MB) -PASS -- TEST 'hrrr_control_restart_intel' [36:15, 01:05](741 MB) -PASS -- TEST 'rrfs_v1beta_intel' [42:58, 01:44](912 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [42:56, 01:16](1874 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [42:27, 01:03](1863 MB) - -PASS -- COMPILE 'csawmg_intel' [15:30, 14:57] -PASS -- TEST 'control_csawmg_intel' [59:06, 00:32](602 MB) -PASS -- TEST 'control_ras_intel' [59:06, 00:51](560 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 08:32] -PASS -- TEST 'control_wam_intel' [05:11, 00:58](270 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [24:39, 23:52] -PASS -- TEST 'control_p8_faster_intel' [47:51, 01:29](1507 MB) -PASS -- TEST 'regional_control_faster_intel' [46:59, 00:57](610 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [34:51, 33:49] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:59, 00:41](1488 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:54, 00:51](1492 MB) -PASS -- TEST 'control_stochy_debug_intel' [33:54, 00:41](690 MB) -PASS -- TEST 'control_lndp_debug_intel' [33:42, 00:24](694 MB) -PASS -- TEST 'control_csawmg_debug_intel' [33:41, 01:08](733 MB) -PASS -- TEST 'control_ras_debug_intel' [33:14, 00:41](703 MB) -PASS -- TEST 'control_diag_debug_intel' [32:47, 01:14](1542 MB) -PASS -- TEST 'control_debug_p8_intel' [32:38, 01:05](1518 MB) -PASS -- TEST 'regional_debug_intel' [32:28, 00:45](630 MB) -PASS -- TEST 'rap_control_debug_intel' [32:19, 00:54](1073 MB) -PASS -- TEST 'hrrr_control_debug_intel' [32:07, 00:57](1067 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [32:00, 00:57](1075 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [31:54, 00:50](1071 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [31:36, 00:47](1075 MB) -PASS -- TEST 'rap_diag_debug_intel' [31:33, 00:44](1155 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [31:22, 00:49](1072 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [31:04, 00:50](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [30:09, 00:53](1076 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [30:03, 00:53](1072 MB) -PASS -- TEST 'rap_noah_debug_intel' [29:55, 01:00](1076 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [29:53, 00:54](1071 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:28, 00:49](1076 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [29:17, 01:00](1072 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [29:17, 01:07](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [28:54, 00:52](1076 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [28:47, 01:13](1081 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:18, 05:00] -PASS -- TEST 'control_wam_debug_intel' [05:10, 01:00](298 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:29, 15:03] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:33, 01:15](955 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:30, 01:07](790 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [48:59, 02:19](788 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:22, 01:13](856 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [46:58, 01:07](837 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [46:30, 00:57](787 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:14, 01:36](690 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:50, 00:49](668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:33, 17:53] -PASS -- TEST 'conus13km_control_intel' [46:28, 00:31](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [41:50, 00:30](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [41:34, 00:36](881 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 12:22] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [46:22, 00:53](811 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 04:47] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [46:19, 00:33](953 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [46:20, 00:43](948 MB) -PASS -- TEST 'conus13km_debug_intel' [45:54, 01:09](1038 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [41:30, 01:03](709 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [41:25, 00:26](1036 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:38, 01:16](1103 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 05:25] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:07, 00:58](980 MB) - -PASS -- COMPILE 'hafsw_intel' [16:31, 16:09] -PASS -- TEST 'hafs_regional_atm_intel' [40:40, 02:04](618 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [40:16, 00:33](965 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [39:45, 01:29](662 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [39:45, 02:14](696 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [39:41, 02:04](712 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:06, 00:54](387 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [38:59, 02:13](413 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [38:56, 01:22](281 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:28, 02:17](370 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:30, 01:18](419 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:11, 00:49](415 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [36:58, 01:32](488 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:46, 01:11](312 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:20, 05:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [36:18, 01:32](494 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:23, 10:01] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:59, 01:35](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:59, 01:37](710 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:28] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:18, 00:55](709 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:24, 09:42] -PASS -- TEST 'hafs_regional_docn_intel' [35:44, 01:23](665 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:02, 01:19](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:56, 00:25](881 MB) - -PASS -- COMPILE 'atml_intel' [22:38, 20:33] -FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_atmlnd_sbs_intel' [, ]( MB) -PASS -- TEST 'control_p8_atmlnd_intel' [25:20, 01:16](1543 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [18:46, 00:23](739 MB) - -PASS -- COMPILE 'atmaero_intel' [18:35, 16:03] -PASS -- TEST 'atmaero_control_p8_intel' [27:13, 01:30](2853 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [27:11, 00:52](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:00, 01:50](2920 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:18, 04:27] -PASS -- TEST 'regional_atmaq_debug_intel' [25:58, 01:23](4432 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:30, 11:28] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:29, 01:21](2971 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:50, 29:44] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [53:09, 02:07](1559 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:00, 02:00](1718 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [34:38, 01:33](847 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [53:10, 01:47](1579 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:36, 15:28] ( 1506 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [07:24, 02:13](1600 MB) + +PASS -- COMPILE 's2swa_intel' [22:41, 22:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [01:18, 01:31](3006 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [01:18, 01:56](3005 MB) +PASS -- TEST 'cpld_restart_p8_intel' [52:55, 00:55](3059 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [01:18, 01:32](3029 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [52:56, 00:51](3082 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [01:18, 01:15](3316 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [01:18, 01:39](3000 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [01:19, 01:37](2930 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [01:18, 01:56](3004 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [01:27, 03:22](3953 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:47, 03:18](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [01:18, 01:02](2965 MB) + +PASS -- COMPILE 's2sw_intel' [22:43, 22:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [01:16, 01:08](1585 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [01:16, 01:14](1636 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:25, 11:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:34, 01:08](1632 MB) + +PASS -- COMPILE 's2s_intel' [14:33, 13:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:25, 00:54](2654 MB) + +PASS -- COMPILE 's2swa_faster_intel' [31:52, 31:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [52:07, 01:49](3002 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:30, 11:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:29, 01:06](1574 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [54:08, 00:52](901 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [54:09, 00:58](1583 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:33, 13:28] ( 1542 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:27, 00:50](1611 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [22:35, 21:59] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [48:58, 00:33](571 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [48:58, 00:36](1476 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:58, 00:34](1475 MB) +PASS -- TEST 'control_latlon_intel' [48:58, 00:32](1461 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:58, 00:43](1481 MB) +PASS -- TEST 'control_c48_intel' [48:18, 01:08](1593 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [47:25, 01:06](714 MB) +PASS -- TEST 'control_c192_intel' [47:20, 00:47](1587 MB) +PASS -- TEST 'control_c384_intel' [47:24, 01:38](1909 MB) +PASS -- TEST 'control_c384gdas_intel' [46:09, 02:15](1093 MB) +PASS -- TEST 'control_stochy_intel' [45:21, 00:36](530 MB) +PASS -- TEST 'control_stochy_restart_intel' [42:56, 00:15](333 MB) +PASS -- TEST 'control_lndp_intel' [45:17, 00:40](528 MB) +PASS -- TEST 'control_iovr4_intel' [45:15, 00:54](524 MB) +PASS -- TEST 'control_iovr5_intel' [45:09, 00:55](523 MB) +PASS -- TEST 'control_p8_intel' [44:41, 00:56](1512 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [44:38, 01:08](1502 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [44:38, 01:10](1512 MB) +PASS -- TEST 'control_restart_p8_intel' [40:22, 01:07](696 MB) +PASS -- TEST 'control_noqr_p8_intel' [44:38, 00:56](1490 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [40:22, 01:07](698 MB) +PASS -- TEST 'control_decomp_p8_intel' [44:33, 00:46](1500 MB) +PASS -- TEST 'control_2threads_p8_intel' [44:33, 01:07](1587 MB) +PASS -- TEST 'control_p8_lndp_intel' [43:35, 00:26](1508 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [42:58, 01:26](1565 MB) +PASS -- TEST 'control_p8_mynn_intel' [42:55, 01:08](1510 MB) +PASS -- TEST 'merra2_thompson_intel' [41:48, 01:59](1513 MB) +PASS -- TEST 'regional_control_intel' [41:41, 00:24](609 MB) +PASS -- TEST 'regional_restart_intel' [35:59, 00:33](778 MB) +PASS -- TEST 'regional_decomp_intel' [35:58, 01:07](608 MB) +PASS -- TEST 'regional_2threads_intel' [41:36, 00:13](672 MB) +PASS -- TEST 'regional_noquilt_intel' [41:35, 00:31](1145 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [41:27, 00:34](607 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [41:18, 00:24](609 MB) +PASS -- TEST 'regional_wofs_intel' [41:17, 01:00](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [21:43, 21:04] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [49:45, 01:00](920 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:46, 00:24](1096 MB) +PASS -- TEST 'rap_decomp_intel' [49:45, 00:49](919 MB) +PASS -- TEST 'rap_2threads_intel' [49:45, 01:37](1008 MB) +PASS -- TEST 'rap_restart_intel' [41:18, 01:25](789 MB) +PASS -- TEST 'rap_sfcdiff_intel' [49:45, 01:21](915 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:45, 01:07](918 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [41:12, 01:54](784 MB) +PASS -- TEST 'hrrr_control_intel' [49:45, 01:20](910 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [49:45, 01:15](911 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [49:46, 01:37](996 MB) +PASS -- TEST 'hrrr_control_restart_intel' [41:05, 00:14](744 MB) +PASS -- TEST 'rrfs_v1beta_intel' [49:45, 01:32](914 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [49:45, 00:15](1876 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [49:45, 00:31](1860 MB) + +PASS -- COMPILE 'csawmg_intel' [13:35, 12:53] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [57:54, 00:45](602 MB) +PASS -- TEST 'control_ras_intel' [57:54, 01:06](562 MB) + +PASS -- COMPILE 'wam_intel' [17:43, 17:30] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [51:43, 01:04](274 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:39, 17:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [51:46, 01:07](1502 MB) +PASS -- TEST 'regional_control_faster_intel' [51:45, 00:31](609 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [21:35, 20:40] ( 871 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [41:02, 00:26](1487 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:40, 00:38](1490 MB) +PASS -- TEST 'control_stochy_debug_intel' [40:22, 01:01](693 MB) +PASS -- TEST 'control_lndp_debug_intel' [40:22, 00:19](692 MB) +PASS -- TEST 'control_csawmg_debug_intel' [40:17, 00:47](731 MB) +PASS -- TEST 'control_ras_debug_intel' [40:07, 00:17](701 MB) +PASS -- TEST 'control_diag_debug_intel' [40:07, 00:28](1555 MB) +PASS -- TEST 'control_debug_p8_intel' [34:35, 00:11](1518 MB) +PASS -- TEST 'regional_debug_intel' [38:21, 01:01](631 MB) +PASS -- TEST 'rap_control_debug_intel' [37:56, 01:04](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [37:37, 00:18](1068 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [37:13, 01:08](1074 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [31:34, 01:06](1077 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [37:03, 00:10](1072 MB) +PASS -- TEST 'rap_diag_debug_intel' [37:03, 01:10](1157 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [36:57, 00:59](1076 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [36:49, 00:58](1076 MB) +PASS -- TEST 'rap_lndp_debug_intel' [36:42, 01:05](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [36:17, 01:06](1073 MB) +PASS -- TEST 'rap_noah_debug_intel' [36:10, 00:14](1069 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [36:03, 00:12](1070 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [35:56, 00:57](1074 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [35:55, 00:14](1072 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [35:46, 00:16](1078 MB) +PASS -- TEST 'rap_flake_debug_intel' [35:34, 00:11](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [35:26, 01:24](1082 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:17, 04:21] ( 843 warnings ) +PASS -- TEST 'control_wam_debug_intel' [56:00, 00:08](299 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:39, 18:00] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [34:33, 00:30](958 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [34:30, 01:32](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [34:20, 02:39](780 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [33:35, 01:27](853 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [33:24, 02:01](841 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [32:57, 02:07](792 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:05, 01:28](685 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [28:25, 00:28](668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:38, 16:24] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [32:14, 01:12](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [28:28, 01:04](1005 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [28:25, 00:52](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:38, 15:20] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:59, 00:30](810 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:17, 03:27] ( 774 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:33, 00:14](952 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [31:27, 00:19](955 MB) +PASS -- TEST 'conus13km_debug_intel' [30:56, 00:43](1035 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [30:43, 00:31](703 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [30:41, 00:46](1036 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [30:31, 00:44](1103 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:40, 16:45] ( 774 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [30:29, 01:08](979 MB) + +PASS -- COMPILE 'hafsw_intel' [14:35, 13:43] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [30:27, 01:23](620 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [30:23, 00:53](966 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [30:21, 02:06](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:13, 01:59](699 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:59, 01:49](705 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:51, 01:18](387 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [29:33, 01:27](407 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [29:18, 00:42](294 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:18, 02:43](372 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [27:46, 00:45](413 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [27:28, 01:04](415 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [27:22, 01:11](488 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [26:44, 00:34](311 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:20, 05:53] ( 1450 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:27, 00:50](501 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:35, 14:05] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:08, 00:56](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [26:04, 00:56](710 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:32, 15:16] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:01, 01:11](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:35, 16:01] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [25:47, 01:37](664 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:46, 01:33](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:13, 00:35](880 MB) + +PASS -- COMPILE 'atml_intel' [20:38, 20:07] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [25:04, 01:14](1548 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [24:55, 01:09](1548 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [18:28, 00:38](740 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:24, 04:33] ( 867 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [24:38, 01:48](1566 MB) + +PASS -- COMPILE 'atmaero_intel' [11:35, 10:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [24:11, 01:34](2852 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [23:58, 01:01](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [23:46, 00:56](2925 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:24, 09:51] ( 871 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:54, 00:50](4433 MB) SYNOPSIS: -Starting Date/Time: 20240423 18:32:37 -Ending Date/Time: 20240423 20:00:11 -Total Time: 01h:28m:12s -Compiles Completed: 30/30 -Tests Completed: 154/155 -Failed Tests: -* TEST control_p8_atmlnd_sbs_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_wcoss2/run_control_p8_atmlnd_sbs_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: -bcc92327e9e244c4ca9db1707f4df177799426b2 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (da95cc4) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -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-20240419 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66976 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atml_intel' [10:25, 10:08] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:51, 01:10](1543 MB) - -SYNOPSIS: -Starting Date/Time: 20240423 20:04:01 -Ending Date/Time: 20240423 20:27:55 -Total Time: 00h:24m:14s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Starting Date/Time: 20240429 16:35:39 +Ending Date/Time: 20240429 18:02:24 +Total Time: 01h:27m:18s +Compiles Completed: 31/31 +Tests Completed: 156/156 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/rt.conf b/tests/rt.conf index 626d29a6bc..1af875400f 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -298,6 +298,9 @@ RUN | control_p8_atmlnd_sbs | - noaacloud | baseline RUN | control_p8_atmlnd | - noaacloud | baseline | RUN | control_restart_p8_atmlnd | - noaacloud | | control_p8_atmlnd +COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON | | fv3 | +RUN | control_p8_atmlnd_debug | - noaacloud | baseline | + ### ATM-WAV tests ### #mediator (cmeps) COMPILE | atmw | intel | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 5279f68ff8..790fd85843 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -36,7 +36,7 @@ usage() { update_rtconf() { echo "rt.sh: Checking & Updating test configuration..." find_match() { - # This function finds if a test in $TESTS_FILE matches one + # This function finds if a test in $TESTS_FILE matches one # in our list of tests to be run. THIS_TEST_WITH_COMPILER=$1 shift @@ -78,7 +78,7 @@ update_rtconf() { [[ -n "${line}" ]] || continue [[ ${#line} == 0 ]] && continue [[ ${line} == \#* ]] && continue - + if [[ ${line} =~ COMPILE ]] ; then MACHINES=$(cut -d'|' -f5 <<< "${line}") MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}") @@ -86,7 +86,7 @@ update_rtconf() { RT_COMPILER_IN=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RT_COMPILER_IN}") if [[ ${MACHINES} == '' ]]; then compile_line=${line} - COMPILE_LINE_USED=false + COMPILE_LINE_USED=false elif [[ ${MACHINES} == -* ]]; then [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=${line}; COMPILE_LINE_USED=false elif [[ ${MACHINES} == +* ]]; then @@ -110,10 +110,10 @@ update_rtconf() { fi if [[ ${to_run_test} == true ]]; then TEST_IDX=$(set -e; find_match "${tmp_test} ${RT_COMPILER_IN}" "${TEST_WITH_COMPILE[@]}") - + if [[ ${TEST_IDX} != -1 ]]; then if [[ ${COMPILE_LINE_USED} == false ]]; then - echo -en '\n' >> "${RT_TEMP_CONF}" + echo -en '\n' >> "${RT_TEMP_CONF}" echo "${compile_line}" >> "${RT_TEMP_CONF}" COMPILE_LINE_USED=true @@ -121,7 +121,7 @@ update_rtconf() { dep_test=$(grep -w "${tmp_test}" <<< "${line}") dep_test=$(cut -d'|' -f5 <<< "${dep_test}") dep_test=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${dep_test}") - + if [[ ${dep_test} != '' ]]; then find_match_result=$(set -e; find_match "${dep_test} ${RT_COMPILER_IN}" "${TEST_WITH_COMPILE[@]}") if [[ ${find_match_result} == -1 ]]; then @@ -131,7 +131,7 @@ update_rtconf() { dep_line=$(tr -d '\n' <<< "${dep_line}") CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "${dep_line}") CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "${dep_line}") - + if [[ ${RT_COMPILER_IN} == "intel" ]]; then echo "RUN ${CORRECT_LINE[1]}" >> "${RT_TEMP_CONF}" elif [[ ${RT_COMPILER_IN} == "gnu" ]]; then @@ -140,7 +140,7 @@ update_rtconf() { fi fi echo "${line}" >> "${RT_TEMP_CONF}" - fi + fi fi fi done < "${TESTS_FILE}" @@ -155,6 +155,7 @@ update_rtconf() { generate_log() { echo "rt.sh: Generating Regression Testing Log..." + set -x COMPILE_COUNTER=0 FAILED_COMPILES=() TEST_COUNTER=0 @@ -181,7 +182,7 @@ EOF fi echo; echo >> "${REGRESSIONTEST_LOG}" cd tests - + cat << EOF >> "${REGRESSIONTEST_LOG}" NOTES: @@ -222,10 +223,10 @@ EOF local valid_test=false if [[ ${line} == COMPILE* ]] ; then - + CMACHINES=$(cut -d'|' -f5 <<< "${line}") CMACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${CMACHINES}") - + COMPILER=$(cut -d'|' -f3 <<< "${line}") COMPILER=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILER}") @@ -233,7 +234,7 @@ EOF COMPILE_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILE_NAME}") COMPILE_ID=${COMPILE_NAME}_${COMPILER} - + if [[ ${CMACHINES} == '' ]]; then valid_compile=true elif [[ ${CMACHINES} == -* ]]; then @@ -249,6 +250,7 @@ EOF TIME_FILE="" COMPILE_TIME="" RT_COMPILE_TIME="" + COMPILE_WARNINGS="" if [[ ! -f "${LOG_DIR}/compile_${COMPILE_ID}.log" ]]; then COMPILE_RESULT="FAILED: UNABLE TO START COMPILE" FAIL_LOG="N/A" @@ -262,8 +264,18 @@ EOF COMPILE_RESULT="FAILED: TEST TIMED OUT" FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" fi - else + else COMPILE_RESULT="PASS" + if [[ ${COMPILER} == "intel" ]]; then + COMPILE_NUM_WARNINGS=$(grep -c ": warning #" "${RUNDIR_ROOT}/compile_${COMPILE_ID}/err" || true) + COMPILE_NUM_REMARKS=$(grep -c ": remark #" "${RUNDIR_ROOT}/compile_${COMPILE_ID}/err" || true) + if [[ ${COMPILE_NUM_WARNINGS} -gt 0 || ${COMPILE_NUM_REMARKS} -gt 0 ]]; then + COMPILE_WARNINGS+=" (" + [[ ${COMPILE_NUM_WARNINGS} -gt 0 ]] && COMPILE_WARNINGS+=" ${COMPILE_NUM_WARNINGS} warnings" + [[ ${COMPILE_NUM_REMARKS} -gt 0 ]] && COMPILE_WARNINGS+=" ${COMPILE_NUM_REMARKS} remarks" + COMPILE_WARNINGS+=" )" + fi + fi TIME_FILE="${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt" if [[ -f "${TIME_FILE}" ]]; then while read -r times || [[ -n "${times}" ]]; do @@ -278,11 +290,11 @@ EOF RT_COMPILE_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S') done < "${TIME_FILE}" - + fi fi echo >> "${REGRESSIONTEST_LOG}" - echo "${COMPILE_RESULT} -- COMPILE '${COMPILE_ID}' [${RT_COMPILE_TIME}, ${COMPILE_TIME}]" >> "${REGRESSIONTEST_LOG}" + echo "${COMPILE_RESULT} -- COMPILE '${COMPILE_ID}' [${RT_COMPILE_TIME}, ${COMPILE_TIME}]${COMPILE_WARNINGS}" >> "${REGRESSIONTEST_LOG}" [[ -n ${FAIL_LOG} ]] && FAILED_COMPILES+=("COMPILE ${COMPILE_ID}: ${COMPILE_RESULT}") [[ -n ${FAIL_LOG} ]] && FAILED_COMPILE_LOGS+=("${FAIL_LOG}") fi @@ -299,7 +311,7 @@ EOF TEST_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${TEST_NAME}") GEN_BASELINE=$(cut -d '|' -f4 <<< "${line}") GEN_BASELINE=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${GEN_BASELINE}") - + if [[ ${RMACHINES} == '' ]]; then valid_test=true elif [[ ${RMACHINES} == -* ]]; then @@ -328,7 +340,7 @@ EOF TEST_RESULT="FAILED: UNABLE TO RUN COMPARISON" FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" # We need to catch a "PASS" in rt_*.log even if a fail_test_* files exists - # I'm not sure why this can happen. + # I am not sure why this can happen. elif grep -q "PASS" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"; then TEST_RESULT="PASS" else @@ -377,9 +389,9 @@ EOF fi fi done < "${TESTS_FILE}" - + elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) ) - + cat << EOF >> "${REGRESSIONTEST_LOG}" SYNOPSIS: @@ -397,18 +409,18 @@ EOF echo "-- LOG: ${FAILED_COMPILE_LOGS[${i}]}" >> "${REGRESSIONTEST_LOG}" done fi - + # PRINT FAILED TESTS if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then - + echo "Failed Tests:" >> "${REGRESSIONTEST_LOG}" for j in "${!FAILED_TESTS[@]}"; do echo "* ${FAILED_TESTS[${j}]}" >> "${REGRESSIONTEST_LOG}" echo "-- LOG: ${FAILED_TEST_LOGS[${j}]}" >> "${REGRESSIONTEST_LOG}" done - + fi - + # WRITE FAILED_TEST_ID LIST TO TEST_CHANGES_LOG if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then for item in "${FAILED_TEST_ID[@]}"; do @@ -721,7 +733,7 @@ case ${MACHINE_ID} in # ROCOTOCOMPLETE=$(command -v rocotocomplete) ROCOTO_SCHEDULER="slurm" fi - + export LD_PRELOAD=/opt/cray/pe/gcc/12.2.0/snos/lib64/libstdc++.so.6 module load PrgEnv-intel/8.3.3 module load intel-classic/2023.1.0 @@ -806,7 +818,7 @@ case ${MACHINE_ID} in COMPILE_QUEUE="batch" PARTITION="orion" dprefix="/work/noaa/stmp/${USER}" - DISKNM=/"work/noaa/epic/UFS-WM_RT" + DISKNM="/work/noaa/epic/UFS-WM_RT" STMP="${dprefix}/stmp" PTMP="${dprefix}/stmp" @@ -854,7 +866,7 @@ case ${MACHINE_ID} in echo "=======Please, move to Rocky8 node fe[5-8]=======" exit 1 fi - + if [[ "${ROCOTO:-false}" == true ]] ; then module load rocoto # ROCOTORUN=$(command -v rocotorun) @@ -955,7 +967,7 @@ case ${MACHINE_ID} in cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN - + if [[ "${ROCOTO:-false}" == true ]] ; then # ROCOTORUN=$(command -v rocotorun) # ROCOTOSTAT=$(command -v rocotostat) @@ -1110,9 +1122,9 @@ rm -rf "${LOG_DIR}" mkdir -p "${LOG_DIR}" if [[ ${ROCOTO} == true ]]; then - + echo "rt.sh: Verifying ROCOTO support..." - + case ${MACHINE_ID} in wcoss2|acorn|expanse|stampede) die "Rocoto not supported on this machine, please do not use '-r'." @@ -1125,7 +1137,7 @@ if [[ ${ROCOTO} == true ]]; then ROCOTOSTAT="$(command -v rocotostat)" ROCOTOCOMPLETE="$(command -v rocotocomplete)" export ROCOTOCOMPLETE ROCOTOSTAT ROCOTORUN - + ROCOTO_XML=${PATHRT}/rocoto_workflow.xml ROCOTO_STATE=${PATHRT}/rocoto_workflow.state ROCOTO_DB=${PATHRT}/rocoto_workflow.db diff --git a/tests/test_changes.list b/tests/test_changes.list index bce4315fbb..41e638ce0e 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,14 +1,4 @@ -control_c192 intel -control_c384 intel -control_c48 intel -control_CubedSphereGrid_debug intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_diag_debug intel -control_latlon intel -control_wrtGauss_netcdf_parallel_debug intel -control_wrtGauss_netcdf_parallel intel -merra2_thompson intel -atmaero_control_p8_rad_micro intel -control_c48 gnu -control_diag_debug gnu +control_p8_atmlnd_sbs intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel diff --git a/tests/tests/control_p8_atmlnd b/tests/tests/control_p8_atmlnd index aecdf87e6f..68b65d0e5b 100644 --- a/tests/tests/control_p8_atmlnd +++ b/tests/tests/control_p8_atmlnd @@ -204,6 +204,7 @@ export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN +export V2_SFC_FILE=true # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/control_p8_atmlnd_debug b/tests/tests/control_p8_atmlnd_debug new file mode 100644 index 0000000000..1f5d4eb2d7 --- /dev/null +++ b/tests/tests/control_p8_atmlnd_debug @@ -0,0 +1,84 @@ +############################################################################### +# +# Global control debug test GFSv16 atmosphere-land only at C96L127, P8 configuration +# +############################################################################### + +source tests/control_p8_atmlnd + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_atmlnd_debug + +export LIST_FILES="sfcf000.tile1.nc \ + sfcf000.tile2.nc \ + sfcf000.tile3.nc \ + sfcf000.tile4.nc \ + sfcf000.tile5.nc \ + sfcf000.tile6.nc \ + sfcf003.tile1.nc \ + sfcf003.tile2.nc \ + sfcf003.tile3.nc \ + sfcf003.tile4.nc \ + sfcf003.tile5.nc \ + sfcf003.tile6.nc \ + atmf000.tile1.nc \ + atmf000.tile2.nc \ + atmf000.tile3.nc \ + atmf000.tile4.nc \ + atmf000.tile5.nc \ + atmf000.tile6.nc \ + atmf003.tile1.nc \ + atmf003.tile2.nc \ + atmf003.tile3.nc \ + atmf003.tile4.nc \ + atmf003.tile5.nc \ + atmf003.tile6.nc \ + RESTART/20210322.090000.ca_data.tile1.nc \ + RESTART/20210322.090000.ca_data.tile2.nc \ + RESTART/20210322.090000.ca_data.tile3.nc \ + RESTART/20210322.090000.ca_data.tile4.nc \ + RESTART/20210322.090000.ca_data.tile5.nc \ + RESTART/20210322.090000.ca_data.tile6.nc \ + RESTART/20210322.090000.coupler.res \ + RESTART/20210322.090000.fv_core.res.nc \ + RESTART/20210322.090000.fv_core.res.tile1.nc \ + RESTART/20210322.090000.fv_core.res.tile2.nc \ + RESTART/20210322.090000.fv_core.res.tile3.nc \ + RESTART/20210322.090000.fv_core.res.tile4.nc \ + RESTART/20210322.090000.fv_core.res.tile5.nc \ + RESTART/20210322.090000.fv_core.res.tile6.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.090000.fv_tracer.res.tile1.nc \ + RESTART/20210322.090000.fv_tracer.res.tile2.nc \ + RESTART/20210322.090000.fv_tracer.res.tile3.nc \ + RESTART/20210322.090000.fv_tracer.res.tile4.nc \ + RESTART/20210322.090000.fv_tracer.res.tile5.nc \ + RESTART/20210322.090000.fv_tracer.res.tile6.nc \ + RESTART/20210322.090000.phy_data.tile1.nc \ + RESTART/20210322.090000.phy_data.tile2.nc \ + RESTART/20210322.090000.phy_data.tile3.nc \ + RESTART/20210322.090000.phy_data.tile4.nc \ + RESTART/20210322.090000.phy_data.tile5.nc \ + RESTART/20210322.090000.phy_data.tile6.nc \ + RESTART/20210322.090000.sfc_data.tile1.nc \ + RESTART/20210322.090000.sfc_data.tile2.nc \ + RESTART/20210322.090000.sfc_data.tile3.nc \ + RESTART/20210322.090000.sfc_data.tile4.nc \ + RESTART/20210322.090000.sfc_data.tile5.nc \ + RESTART/20210322.090000.sfc_data.tile6.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile1.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile2.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile3.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile4.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile5.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile6.nc" + +export RESTART_INTERVAL="3 -1" +export OUTPUT_FH='0 3' +export FHMAX=3 diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs index 33be5a8b0c..56a3a888f8 100644 --- a/tests/tests/control_p8_atmlnd_sbs +++ b/tests/tests/control_p8_atmlnd_sbs @@ -202,6 +202,7 @@ export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN +export V2_SFC_FILE=true # RRTMGP export DO_RRTMGP=.false. diff --git a/tests/tests/control_restart_p8_atmlnd b/tests/tests/control_restart_p8_atmlnd index 2eaa04f779..a52c955dbe 100644 --- a/tests/tests/control_restart_p8_atmlnd +++ b/tests/tests/control_restart_p8_atmlnd @@ -142,6 +142,7 @@ export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN +export V2_SFC_FILE=true # RRTMGP export DO_RRTMGP=.false. From 26cb9e60479958c4109a826c834333dcdd728a92 Mon Sep 17 00:00:00 2001 From: AnningCheng-NOAA <48297505+AnningCheng-NOAA@users.noreply.github.com> Date: Thu, 2 May 2024 07:53:47 -0400 Subject: [PATCH 06/16] fixed excessive evaporation when both innerloop and mraerosol=T (#2221) * NWFA Induced evaporation is turn off , but evaporation not related to aerosol is turned on to prevent excessive evaporation when Inner loop and mraerosol=T * ccpp/framework hash update * Cleanup unused code and variables, fix wcoss2 issue starting ecflow * Bring in @DusanJovic-NOAA trap changes * Merge some machine ecflow starts together and move to case statements --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 68 +- tests/logs/RegressionTests_acorn.log | 554 ++++++------- tests/logs/RegressionTests_derecho.log | 626 +++++++------- tests/logs/RegressionTests_gaea.log | 592 ++++++-------- tests/logs/RegressionTests_hera.log | 767 ++++++++---------- tests/logs/RegressionTests_hercules.log | 765 ++++++++--------- tests/logs/RegressionTests_jet.log | 472 +++++------ tests/logs/RegressionTests_orion.log | 589 ++++++-------- tests/logs/RegressionTests_wcoss2.log | 458 +++++------ tests/rt.sh | 69 +- tests/rt_utils.sh | 77 +- tests/test_changes.list | 6 +- 16 files changed, 2377 insertions(+), 2742 deletions(-) diff --git a/FV3 b/FV3 index da95cc428d..683061b3fd 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit da95cc428d8b626e99250fd57a4279b4980044f8 +Subproject commit 683061b3fd58716625eed61d7a7143e985f733d4 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index ba022070b2..40b36bd83a 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240426 +export BL_DATE=20240430 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 1390b3f6f6..98af0db899 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Apr 29 18:57:13 UTC 2024 +Wed May 1 16:47:10 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/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 = 269.680202 - 0: The maximum resident set size (KB) = 1266668 + 0: The total amount of wall time = 273.804433 + 0: The maximum resident set size (KB) = 1253420 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/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 = 949.326805 - 0: The maximum resident set size (KB) = 1255152 + 0: The total amount of wall time = 960.167656 + 0: The maximum resident set size (KB) = 1231384 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/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 = 240.344326 - 0: The maximum resident set size (KB) = 1245676 + 0: The total amount of wall time = 247.343877 + 0: The maximum resident set size (KB) = 1232416 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/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 = 237.351607 - 0: The maximum resident set size (KB) = 1245716 + 0: The total amount of wall time = 245.896195 + 0: The maximum resident set size (KB) = 1231104 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/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 = 242.201971 - 0: The maximum resident set size (KB) = 1246024 + 0: The total amount of wall time = 251.053244 + 0: The maximum resident set size (KB) = 1228068 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/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 = 238.461943 - 0: The maximum resident set size (KB) = 1245616 + 0: The total amount of wall time = 253.154960 + 0: The maximum resident set size (KB) = 1233000 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 249.430767 - 0: The maximum resident set size (KB) = 1247248 + 0: The total amount of wall time = 242.649383 + 0: The maximum resident set size (KB) = 1233424 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Apr 29 20:17:04 UTC 2024 -Elapsed time: 01h:19m:51s. Have a nice day! +Wed May 1 17:54:31 UTC 2024 +Elapsed time: 01h:07m:25s. 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 4e0876efed..24258447f8 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Apr 29 23:05:39 UTC 2024 +Wed May 1 15:19:59 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/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 = 1323.060262 - 0: The maximum resident set size (KB) = 1364380 + 0: The total amount of wall time = 1448.267808 + 0: The maximum resident set size (KB) = 1364020 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/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 = 393.654864 - 0: The maximum resident set size (KB) = 1360348 + 0: The total amount of wall time = 444.246604 + 0: The maximum resident set size (KB) = 1359328 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/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 = 398.993468 - 0: The maximum resident set size (KB) = 1358812 + 0: The total amount of wall time = 448.797587 + 0: The maximum resident set size (KB) = 1359444 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Apr 30 00:03:24 UTC 2024 -Elapsed time: 00h:57m:46s. Have a nice day! +Wed May 1 16:30:01 UTC 2024 +Elapsed time: 01h:10m:03s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 6e16879d1f..653742ca0c 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,28 @@ -Tue Apr 30 00:26:07 UTC 2024 +Wed May 1 12:44:33 UTC 2024 Start Operation Requirement Test +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 1265.539423 + 0: The maximum resident set size (KB) = 593464 + +Test bit_base PASS + + baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -14,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 = 2131.450659 - 0: The maximum resident set size (KB) = 555224 + 0: The total amount of wall time = 2156.871537 + 0: The maximum resident set size (KB) = 548144 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -33,14 +52,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2150.481127 - 0: The maximum resident set size (KB) = 553380 + 0: The total amount of wall time = 2145.775444 + 0: The maximum resident set size (KB) = 556196 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -51,36 +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 = 2147.836334 - 0: The maximum resident set size (KB) = 554792 + 0: The total amount of wall time = 2148.252094 + 0: The maximum resident set size (KB) = 561788 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Apr 30 02:20:21 UTC 2024 -Elapsed time: 01h:54m:14s. Have a nice day! -Tue Apr 30 16:20:31 UTC 2024 -Start Operation Requirement Test - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1270533/bit_base_bit_base -Checking test bit_base results .... -Moving baseline bit_base files .... - Moving dynf000.nc .........OK - Moving dynf006.nc .........OK - Moving phyf000.nc .........OK - Moving phyf006.nc .........OK - Moving PRSLEV.GrbF00 .........OK - Moving PRSLEV.GrbF06 .........OK - Moving NATLEV.GrbF00 .........OK - Moving NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 1420.618445 - 0: The maximum resident set size (KB) = 583292 - -Test bit_base PASS - -OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Apr 30 16:49:13 UTC 2024 -Elapsed time: 00h:28m:43s. Have a nice day! +Wed May 1 15:05:29 UTC 2024 +Elapsed time: 02h:20m:57s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 4f9b548922..0f9cea2320 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -d35f6da7caf2a4d320aeb75613de67533a11d1b7 +185711d25b9d234f2d48a5cfb21b8e8295193f61 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) + cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,268 +35,275 @@ 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-20240426 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_105869 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240430 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_5114 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:06, 02:05](3043 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:32, 18:17] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [05:54, 02:49](1652 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:21, 03:29](1773 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [33:36, 02:54](900 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:27, 02:54](1623 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:11] ( 1527 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [19:13, 02:28](1679 MB) - -PASS -- COMPILE 's2swa_intel' [11:25, 10:33] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:05, 01:37](3067 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:05, 01:56](3064 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:03, 02:05](3121 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:05, 01:33](3089 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:03, 02:02](3142 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_2threads_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:05, 02:13](3063 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:06, 01:59](2993 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:05, 02:05](3067 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:05, 02:18](3035 MB) - -PASS -- COMPILE 's2sw_intel' [10:24, 09:55] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [03:42, 01:10](1642 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [03:33, 02:25](1696 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:33] ( 2 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [14:07, 01:32](1695 MB) - -PASS -- COMPILE 's2s_intel' [10:23, 09:33] ( 2 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:06, 01:04](2673 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:06] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:01, 02:16](3070 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:34] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [03:33, 01:04](1669 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:28, 01:00](965 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:58, 01:40](1639 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 03:57] ( 1562 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:13, 01:19](1686 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:39] ( 3 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:48, 00:55](634 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:48, 00:42](1528 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:48, 01:07](1541 MB) -PASS -- TEST 'control_latlon_intel' [09:48, 00:57](1539 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:48, 00:56](1538 MB) -PASS -- TEST 'control_c48_intel' [09:47, 01:24](1611 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:47, 00:54](737 MB) -PASS -- TEST 'control_c192_intel' [09:48, 01:08](1649 MB) -PASS -- TEST 'control_c384_intel' [09:52, 01:49](1968 MB) -PASS -- TEST 'control_c384gdas_intel' [09:52, 03:15](1152 MB) -PASS -- TEST 'control_stochy_intel' [09:48, 00:38](591 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:09, 00:28](390 MB) -PASS -- TEST 'control_lndp_intel' [09:48, 00:19](588 MB) -PASS -- TEST 'control_iovr4_intel' [09:48, 01:14](586 MB) -PASS -- TEST 'control_iovr5_intel' [09:48, 01:04](584 MB) -PASS -- TEST 'control_p8_intel' [02:34, 02:53](1561 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [02:33, 02:22](1561 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [01:41, 02:07](1573 MB) -PASS -- TEST 'control_restart_p8_intel' [48:46, 02:57](751 MB) -PASS -- TEST 'control_noqr_p8_intel' [00:05, 02:21](1557 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [48:46, 02:59](754 MB) -PASS -- TEST 'control_decomp_p8_intel' [59:06, 01:27](1563 MB) -PASS -- TEST 'control_2threads_p8_intel' [58:06, 01:43](1645 MB) -PASS -- TEST 'control_p8_lndp_intel' [58:02, 00:59](1564 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [57:20, 02:21](1619 MB) -PASS -- TEST 'control_p8_mynn_intel' [56:28, 01:48](1577 MB) -PASS -- TEST 'merra2_thompson_intel' [55:21, 03:08](1576 MB) -PASS -- TEST 'regional_control_intel' [55:16, 01:09](629 MB) -PASS -- TEST 'regional_restart_intel' [48:11, 00:32](798 MB) -PASS -- TEST 'regional_decomp_intel' [55:12, 00:59](632 MB) -PASS -- TEST 'regional_2threads_intel' [55:07, 01:01](726 MB) -PASS -- TEST 'regional_noquilt_intel' [53:10, 01:05](1165 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [52:47, 00:36](630 MB) -PASS -- TEST 'regional_wofs_intel' [52:46, 00:52](1602 MB) - -PASS -- COMPILE 'ifi_intel' [09:22, 08:16] ( 2 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [09:48, 00:34](630 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [09:48, 00:37](629 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [09:49, 01:14](723 MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 09:03] ( 5 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [52:32, 02:28](973 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [52:28, 00:43](1147 MB) -PASS -- TEST 'rap_decomp_intel' [49:47, 02:06](974 MB) -PASS -- TEST 'rap_2threads_intel' [49:38, 02:50](1060 MB) -PASS -- TEST 'rap_restart_intel' [40:07, 02:54](844 MB) -PASS -- TEST 'rap_sfcdiff_intel' [49:25, 02:15](968 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:25, 03:01](972 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [00:16, 02:41](843 MB) -PASS -- TEST 'hrrr_control_intel' [49:03, 02:59](966 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [48:52, 02:15](965 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [48:18, 02:34](1045 MB) -PASS -- TEST 'hrrr_control_restart_intel' [20:58, 00:19](794 MB) -PASS -- TEST 'rrfs_v1beta_intel' [48:09, 03:06](965 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [47:29, 01:28](1923 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [46:56, 00:57](1918 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:41] ( 3 warnings ) -PASS -- TEST 'control_csawmg_intel' [14:28, 00:52](656 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 08:28] ( 2 warnings ) -PASS -- TEST 'control_wam_intel' [46:07, 00:40](329 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 09:05] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [46:06, 02:38](1560 MB) -PASS -- TEST 'regional_control_faster_intel' [46:02, 00:35](627 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:21, 04:25] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:50, 01:13](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:39, 00:30](1558 MB) -PASS -- TEST 'control_stochy_debug_intel' [44:12, 01:07](758 MB) -PASS -- TEST 'control_lndp_debug_intel' [44:10, 01:14](759 MB) -PASS -- TEST 'control_csawmg_debug_intel' [42:59, 01:05](800 MB) -PASS -- TEST 'control_ras_debug_intel' [42:46, 01:09](768 MB) -PASS -- TEST 'control_diag_debug_intel' [42:05, 01:08](1624 MB) -PASS -- TEST 'control_debug_p8_intel' [41:56, 00:52](1588 MB) -PASS -- TEST 'regional_debug_intel' [40:40, 01:06](688 MB) -PASS -- TEST 'rap_control_debug_intel' [40:07, 00:53](1147 MB) -PASS -- TEST 'hrrr_control_debug_intel' [40:07, 00:58](1139 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [40:04, 01:30](1146 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [38:54, 01:08](1140 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [38:22, 00:24](1145 MB) -PASS -- TEST 'rap_diag_debug_intel' [20:24, 01:26](1231 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:30, 01:08](1146 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:30, 01:05](1145 MB) -PASS -- TEST 'rap_lndp_debug_intel' [18:13, 00:29](1152 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [16:21, 00:59](1145 MB) -PASS -- TEST 'rap_noah_debug_intel' [15:02, 00:46](1144 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [14:14, 00:39](1143 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:00, 00:56](1142 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [13:54, 01:03](1139 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [13:24, 00:34](1145 MB) -PASS -- TEST 'rap_flake_debug_intel' [13:15, 00:35](1149 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:11, 02:40](1149 MB) - -PASS -- COMPILE 'wam_debug_intel' [28:43, 03:10] ( 857 warnings ) -PASS -- TEST 'control_wam_debug_intel' [11:49, 00:33](370 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [36:53, 08:31] ( 5 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:32, 01:23](1018 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:27, 02:22](850 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:33, 03:40](846 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 01:26](912 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:03, 03:22](898 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:00, 02:44](847 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [44:44, 02:20](744 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [44:52, 00:23](731 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:59, 10:38] ( 5 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:06, 01:00](1053 MB) -PASS -- TEST 'conus13km_2threads_intel' [47:36, 00:20](1035 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [44:52, 00:42](934 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [41:55, 08:34] ( 5 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:23, 01:18](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [44:00, 03:16] ( 789 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:52, 00:20](1021 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [03:14, 00:49](1021 MB) -PASS -- TEST 'conus13km_debug_intel' [03:09, 00:35](1111 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [02:58, 00:25](808 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [01:15, 00:22](1090 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:43, 00:56](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [45:02, 03:15] ( 789 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:43, 00:33](1043 MB) - -PASS -- COMPILE 'hafsw_intel' [10:29, 09:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [53:18, 01:39](670 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [53:18, 01:12](1023 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [53:16, 01:53](715 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [53:16, 01:53](761 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:17, 01:36](909 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:16, 00:53](443 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [52:08, 01:54](458 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [51:09, 01:54](332 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [50:39, 03:13](436 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [50:27, 01:27](468 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [49:08, 01:40](469 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [48:13, 01:42](540 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [48:03, 01:17](368 MB) -PASS -- TEST 'gnv1_nested_intel' [44:22, 01:45](732 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:35, 03:51] ( 1469 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:09, 01:38](632 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [25:47, 09:58] ( 2 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:57, 01:51](580 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:57, 01:30](745 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [33:49, 09:57] ( 2 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [27:40, 01:27](747 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:38, 09:30] ( 2 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [20:27, 02:00](710 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:27, 01:59](693 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:25, 01:10](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:31, 08:53] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:34, 00:30](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [10:07, 00:49](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:34, 00:18](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:29, 00:38](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:48, 01:00](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:04, 00:28](758 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:39, 00:21](758 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:38, 00:37](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [01:23, 01:46](647 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [01:17, 01:00](631 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [59:42, 00:42](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [58:40, 00:47](2015 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [56:12, 00:33](2016 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 08:52] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [53:19, 01:06](762 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:17, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [22:43, 00:47](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [22:43, 00:39](413 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [29:17, 00:22](412 MB) - -PASS -- COMPILE 'atml_intel' [07:26, 10:04] ( 10 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [53:16, 02:22](1597 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [52:59, 02:29](1602 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:58, 01:09](805 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:31, 04:08] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [49:50, 02:34](1630 MB) - -PASS -- COMPILE 'atmw_intel' [13:28, 09:09] ( 2 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [39:47, 02:00](1610 MB) - -PASS -- COMPILE 'atmaero_intel' [09:27, 08:54] ( 2 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [39:40, 02:14](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [39:40, 01:35](2970 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [39:40, 02:18](2988 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [54:08, 03:23] ( 886 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:47, 01:48](4484 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:09, 01:58](2991 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [01:02, 03:28](1617 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:22, 03:20](1739 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [27:46, 02:21](877 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:03, 03:01](1594 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:14] ( 1527 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [13:16, 03:04](1645 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 10:31] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:09, 01:31](3020 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:09, 02:04](3020 MB) +PASS -- TEST 'cpld_restart_p8_intel' [58:06, 02:30](3077 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:09, 01:43](3043 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [39:37, 02:22](3096 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:09, 01:56](3328 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:09, 01:30](3016 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:10, 01:55](2944 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:09, 02:00](3020 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 02:17](2986 MB) + +PASS -- COMPILE 's2sw_intel' [10:23, 10:10] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:10, 01:07](1614 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:10, 01:32](1643 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:40] ( 2 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:09, 01:32](1645 MB) + +PASS -- COMPILE 's2s_intel' [10:24, 09:37] ( 2 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:08, 01:00](2638 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:47] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [02:03, 01:59](3020 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 16:17] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [02:03, 01:50](1630 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:52, 01:09](934 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:38, 01:06](1603 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:03] ( 1562 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [14:16, 01:20](1659 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [36:55, 09:46] ( 3 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [36:59, 01:13](610 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [34:46, 00:44](1500 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:45, 00:56](1508 MB) +PASS -- TEST 'control_latlon_intel' [32:46, 00:42](1504 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:42, 00:55](1503 MB) +PASS -- TEST 'control_c48_intel' [32:41, 01:06](1585 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [32:41, 00:46](713 MB) +PASS -- TEST 'control_c192_intel' [32:42, 00:44](1620 MB) +PASS -- TEST 'control_c384_intel' [32:46, 02:19](1932 MB) +PASS -- TEST 'control_c384gdas_intel' [32:34, 03:43](1118 MB) +PASS -- TEST 'control_stochy_intel' [31:41, 00:54](567 MB) +PASS -- TEST 'control_stochy_restart_intel' [27:08, 00:18](372 MB) +PASS -- TEST 'control_lndp_intel' [31:40, 01:00](565 MB) +PASS -- TEST 'control_iovr4_intel' [30:50, 00:34](561 MB) +PASS -- TEST 'control_iovr5_intel' [30:09, 01:16](561 MB) +PASS -- TEST 'control_p8_intel' [30:02, 02:49](1534 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:59, 02:30](1535 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [29:36, 02:15](1537 MB) +PASS -- TEST 'control_restart_p8_intel' [21:20, 02:07](726 MB) +PASS -- TEST 'control_noqr_p8_intel' [29:04, 01:28](1525 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [20:10, 01:37](732 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:04, 01:21](1529 MB) +PASS -- TEST 'control_2threads_p8_intel' [27:44, 01:18](1621 MB) +PASS -- TEST 'control_p8_lndp_intel' [27:08, 01:04](1535 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [26:37, 02:08](1588 MB) +PASS -- TEST 'control_p8_mynn_intel' [26:37, 02:31](1539 MB) +PASS -- TEST 'merra2_thompson_intel' [26:36, 01:41](1539 MB) +PASS -- TEST 'regional_control_intel' [26:33, 01:02](606 MB) +PASS -- TEST 'regional_restart_intel' [14:19, 00:23](776 MB) +PASS -- TEST 'regional_decomp_intel' [26:22, 01:09](605 MB) +PASS -- TEST 'regional_2threads_intel' [26:19, 00:28](695 MB) +PASS -- TEST 'regional_noquilt_intel' [26:17, 00:26](1139 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [25:53, 00:51](606 MB) +PASS -- TEST 'regional_wofs_intel' [25:46, 00:12](1573 MB) + +PASS -- COMPILE 'ifi_intel' [34:51, 08:24] ( 2 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [37:50, 00:55](606 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [37:49, 00:26](606 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [37:49, 00:56](695 MB) + +PASS -- COMPILE 'rrfs_intel' [29:47, 09:09] ( 5 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [24:15, 02:56](943 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:43, 01:34](1112 MB) +PASS -- TEST 'rap_decomp_intel' [23:33, 02:24](943 MB) +PASS -- TEST 'rap_2threads_intel' [22:33, 02:18](1027 MB) +PASS -- TEST 'rap_restart_intel' [07:49, 02:20](814 MB) +PASS -- TEST 'rap_sfcdiff_intel' [21:57, 03:13](940 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:13, 02:50](943 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 03:06](813 MB) +PASS -- TEST 'hrrr_control_intel' [12:29, 02:24](935 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [19:12, 02:58](937 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [16:44, 01:28](1013 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:58, 00:25](769 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:16, 02:48](936 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:14, 00:42](1902 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:52, 00:26](1891 MB) + +PASS -- COMPILE 'csawmg_intel' [29:47, 08:45] ( 3 warnings ) +PASS -- TEST 'control_csawmg_intel' [14:48, 01:24](632 MB) + +PASS -- COMPILE 'wam_intel' [29:47, 08:30] ( 2 warnings ) +PASS -- TEST 'control_wam_intel' [14:39, 01:13](309 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [28:42, 09:05] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [14:11, 02:01](1533 MB) +PASS -- TEST 'regional_control_faster_intel' [14:08, 00:26](605 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [24:38, 04:30] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [42:30, 00:37](1532 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:21, 00:53](1533 MB) +PASS -- TEST 'control_stochy_debug_intel' [42:30, 00:56](741 MB) +PASS -- TEST 'control_lndp_debug_intel' [42:30, 01:15](742 MB) +PASS -- TEST 'control_csawmg_debug_intel' [42:30, 00:56](777 MB) +PASS -- TEST 'control_ras_debug_intel' [42:30, 01:15](752 MB) +PASS -- TEST 'control_diag_debug_intel' [42:30, 00:26](1594 MB) +PASS -- TEST 'control_debug_p8_intel' [42:30, 01:09](1564 MB) +PASS -- TEST 'regional_debug_intel' [42:29, 00:17](645 MB) +PASS -- TEST 'rap_control_debug_intel' [42:30, 00:47](1120 MB) +PASS -- TEST 'hrrr_control_debug_intel' [42:30, 00:50](1113 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [42:30, 00:24](1116 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [42:30, 00:23](1117 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [42:30, 01:10](1120 MB) +PASS -- TEST 'rap_diag_debug_intel' [42:30, 00:43](1202 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:30, 00:16](1120 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [42:30, 00:51](1119 MB) +PASS -- TEST 'rap_lndp_debug_intel' [42:30, 00:28](1122 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:30, 01:00](1120 MB) +PASS -- TEST 'rap_noah_debug_intel' [42:30, 00:53](1118 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [42:30, 00:51](1117 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:30, 00:44](1118 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [41:20, 01:03](1112 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [39:28, 00:33](1120 MB) +PASS -- TEST 'rap_flake_debug_intel' [39:17, 00:44](1120 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:44, 02:29](1122 MB) + +PASS -- COMPILE 'wam_debug_intel' [18:33, 03:15] ( 857 warnings ) +PASS -- TEST 'control_wam_debug_intel' [43:29, 01:00](353 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:38, 08:33] ( 5 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:20, 01:00](980 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:50, 02:48](822 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:47, 03:22](821 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:14, 02:35](878 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:12, 02:13](868 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:08, 02:27](818 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [01:21, 01:30](718 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 00:34](700 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:38, 10:46] ( 5 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:38, 01:08](1030 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:20, 00:42](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:19, 00:24](911 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 08:39] ( 5 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:08, 00:56](845 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:16, 03:17] ( 789 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:49, 01:06](997 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:49, 01:03](996 MB) +PASS -- TEST 'conus13km_debug_intel' [07:34, 00:42](1084 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [07:34, 00:26](758 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [06:23, 00:20](1059 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:58, 01:16](1151 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:55, 03:20] ( 789 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [00:30, 00:43](1017 MB) + +PASS -- COMPILE 'hafsw_intel' [45:01, 09:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [53:25, 01:37](643 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [53:25, 00:45](989 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [53:23, 01:29](693 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [53:23, 01:42](726 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:24, 01:44](744 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:23, 00:57](412 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [53:24, 02:24](435 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [53:24, 01:52](310 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [53:27, 02:53](375 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [53:23, 01:22](445 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:23, 01:41](446 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:25, 00:45](512 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:24, 00:30](339 MB) +PASS -- TEST 'gnv1_nested_intel' [53:24, 01:53](699 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [38:54, 03:46] ( 1469 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [59:31, 00:42](540 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [45:00, 10:02] ( 2 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:24, 00:56](552 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [53:24, 01:12](723 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [45:00, 09:53] ( 2 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:23, 01:18](723 MB) + +PASS -- COMPILE 'hafs_all_intel' [45:00, 09:29] ( 2 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [53:21, 02:04](684 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:21, 02:08](672 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:19, 00:49](888 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [47:01, 09:07] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:10, 00:14](756 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [44:43, 00:33](745 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:10, 00:53](634 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [44:45, 00:58](636 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [51:10, 00:16](634 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [50:40, 00:55](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [50:11, 00:19](756 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [50:11, 00:30](634 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:16, 01:51](641 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [48:01, 01:15](622 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [46:53, 00:18](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [46:47, 00:39](2010 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [46:47, 00:43](2010 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [46:01, 08:56] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [51:17, 00:53](745 MB) + +FAILED: UNABLE TO COMPILE -- COMPILE 'datm_cdeps_land_intel' [, ] +FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_gswp3_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_era5_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_era5_rst_intel' [, ]( MB) + +PASS -- COMPILE 'atml_intel' [44:00, 09:57] ( 10 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [45:28, 02:13](1572 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [44:45, 02:39](1573 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:46, 01:10](779 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:17, 04:06] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [55:13, 02:31](1605 MB) + +PASS -- COMPILE 'atmw_intel' [09:23, 09:02] ( 2 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [44:02, 02:38](1574 MB) + +PASS -- COMPILE 'atmaero_intel' [09:21, 08:59] ( 2 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [43:04, 01:50](2870 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [41:45, 02:07](2930 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [41:44, 01:46](2942 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:16, 03:27] ( 886 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [41:33, 02:19](4338 MB) SYNOPSIS: -Starting Date/Time: 20240429 16:35:18 -Ending Date/Time: 20240429 19:55:24 -Total Time: 03h:20m:22s -Compiles Completed: 36/36 -Tests Completed: 173/174 +Starting Date/Time: 20240501 14:40:58 +Ending Date/Time: 20240501 17:04:01 +Total Time: 02h:23m:30s +Compiles Completed: 35/36 +Tests Completed: 171/174 +Failed Compiles: +* COMPILE datm_cdeps_land_intel: FAILED: UNABLE TO COMPILE +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/AnningCheng-NOAA/ufs-weather-model/tests/logs/log_acorn/compile_datm_cdeps_land_intel.log Failed Tests: -* TEST cpld_2threads_p8_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/uturuncoglu/ufs-weather-model/tests/logs/log_acorn/run_cpld_2threads_p8_intel.log +* TEST datm_cdeps_lnd_gswp3_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST datm_cdeps_lnd_era5_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST datm_cdeps_lnd_era5_rst_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -309,7 +316,7 @@ Result: FAILURE ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -d35f6da7caf2a4d320aeb75613de67533a11d1b7 +185711d25b9d234f2d48a5cfb21b8e8295193f61 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -319,10 +326,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) + cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -332,7 +339,7 @@ Submodule hashes used in testing: 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -343,22 +350,25 @@ 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-20240426 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_142305 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240430 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29444 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_intel' [11:24, 10:39] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_2threads_p8_intel' [50:22, 00:56](3379 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [15:28, 01:07] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [34:25, 00:50](269 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [34:25, 00:43](407 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [31:53, 01:01](408 MB) SYNOPSIS: -Starting Date/Time: 20240429 19:58:16 -Ending Date/Time: 20240429 20:16:53 -Total Time: 00h:18m:42s +Starting Date/Time: 20240501 17:09:54 +Ending Date/Time: 20240501 17:31:57 +Total Time: 00h:22m:12s Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 3/3 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 d871a84370..5e21b08bec 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -aef829f3311f718f3cef6b1102e849370da1a983 +521f9348ebc590effdc0b5054b94946e209679d4 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) + cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,283 +35,272 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_44306 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240430 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_24021 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:14, 19:15] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:07, 04:52](3076 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:14, 20:33] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:55, 13:44](1689 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:23, 14:55](1829 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:33, 07:00](958 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:02, 15:45](1659 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:14, 09:05] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 21:20](1705 MB) - -PASS -- COMPILE 's2swa_intel' [20:15, 19:14] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:52, 05:33](3097 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:00, 05:34](3090 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:27, 03:14](3149 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:52, 05:33](3129 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:27, 03:14](3182 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:38, 05:27](3091 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:24, 04:30](3384 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:56, 05:33](3099 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:39, 08:40](3635 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:27, 05:40](3613 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:39, 09:36](4345 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 06:47](4648 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:16](3070 MB) - -PASS -- COMPILE 's2sw_intel' [19:15, 18:31] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:41, 04:08](1681 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:55, 04:11](1736 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:13, 08:59] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:46, 07:43](3156 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:14, 08:31] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:26, 05:16](1704 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:09] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:56, 04:13](1733 MB) - -PASS -- COMPILE 's2s_intel' [15:15, 14:08] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:00, 06:31](2668 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:16, 22:40] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:29](3101 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:18, 19:41] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:35, 14:00](1707 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:57, 07:04](1017 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:45, 15:58](1675 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:33] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:39, 22:59](1714 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:17, 12:28] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:42, 03:22](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:24](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 02:25](1573 MB) -PASS -- TEST 'control_latlon_intel' [04:29, 02:22](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:30, 02:23](1563 MB) -PASS -- TEST 'control_c48_intel' [08:30, 06:14](1612 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:41, 05:15](739 MB) -PASS -- TEST 'control_c192_intel' [11:06, 08:38](1690 MB) -PASS -- TEST 'control_c384_intel' [15:32, 08:50](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [15:15, 07:13](1200 MB) -PASS -- TEST 'control_stochy_intel' [02:37, 01:23](625 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_stochy_restart_intel' [, ]( MB) -PASS -- TEST 'control_lndp_intel' [02:35, 01:19](627 MB) -PASS -- TEST 'control_iovr4_intel' [03:37, 02:03](619 MB) -PASS -- TEST 'control_iovr5_intel' [03:34, 02:03](622 MB) -PASS -- TEST 'control_p8_intel' [04:33, 02:27](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:29, 02:27](1596 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:23, 02:25](1599 MB) -PASS -- TEST 'control_restart_p8_intel' [03:15, 01:23](801 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:34, 02:26](1585 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:21](808 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:33, 02:31](1598 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:33, 04:19](1594 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:35, 03:16](1653 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:36, 02:31](1606 MB) -PASS -- TEST 'merra2_thompson_intel' [04:36, 02:47](1607 MB) -PASS -- TEST 'regional_control_intel' [06:01, 04:29](631 MB) -PASS -- TEST 'regional_restart_intel' [04:12, 02:28](798 MB) -PASS -- TEST 'regional_decomp_intel' [06:04, 04:41](628 MB) -PASS -- TEST 'regional_noquilt_intel' [06:01, 04:23](1160 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 04:26](625 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:59, 04:28](632 MB) -PASS -- TEST 'regional_wofs_intel' [06:53, 05:36](1603 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 11:02] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:08, 06:06](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:28, 03:49](1194 MB) -PASS -- TEST 'rap_decomp_intel' [08:14, 06:19](1003 MB) -PASS -- TEST 'rap_restart_intel' [05:07, 03:13](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:11, 06:03](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:05, 06:20](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:05, 04:34](882 MB) -PASS -- TEST 'hrrr_control_intel' [05:06, 03:10](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:02, 03:15](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:46](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:41, 01:44](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:02, 05:56](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:39, 07:20](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:05](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 09:58] ( 6 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:00, 05:47](692 MB) -PASS -- TEST 'control_ras_intel' [04:32, 02:50](658 MB) - -PASS -- COMPILE 'wam_intel' [10:12, 09:28] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:25, 01:56](381 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:19, 12:23] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:36, 02:25](1594 MB) -PASS -- TEST 'regional_control_faster_intel' [06:01, 04:15](624 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:17, 08:20] ( 890 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:30](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:17, 02:26](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:39, 02:53](801 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:33](801 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:17, 04:00](838 MB) -PASS -- TEST 'control_ras_debug_intel' [03:28, 02:35](806 MB) -PASS -- TEST 'control_diag_debug_intel' [04:45, 02:32](1654 MB) -PASS -- TEST 'control_debug_p8_intel' [04:05, 02:38](1623 MB) -PASS -- TEST 'regional_debug_intel' [17:52, 16:13](661 MB) -PASS -- TEST 'rap_control_debug_intel' [05:34, 04:40](1179 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:31](1178 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:40, 04:34](1181 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:30, 04:41](1181 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:41](1178 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:59, 04:49](1265 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:41](1180 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:34, 04:43](1184 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:29, 04:42](1180 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 04:44](1180 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:30, 04:37](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:29, 04:36](1179 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:30, 07:25](1179 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:44](1177 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 05:27](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:44](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:11, 08:00](1187 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:12, 05:08] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:24, 04:36](424 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:18, 09:37] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:51, 03:25](1061 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:04, 05:05](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 02:45](882 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:59, 02:49](885 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:08, 03:49](797 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 01:31](780 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:13, 11:34] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:14, 01:50](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 00:54](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:05](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 09:33] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:52, 03:35](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 05:31] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:40, 04:29](1060 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:22](1061 MB) -PASS -- TEST 'conus13km_debug_intel' [15:54, 13:22](1137 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 13:53](820 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:16](1204 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:18] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:30, 04:31](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [16:18, 15:39] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:25, 04:26](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 04:56](1072 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:50, 06:19](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:43, 10:49](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:08, 11:56](815 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:15, 04:37](474 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:42, 05:39](492 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 02:15](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:40, 06:08](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:14](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:24, 03:00](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:26, 03:42](591 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:37, 01:10](426 MB) -PASS -- TEST 'gnv1_nested_intel' [05:14, 03:16](791 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:12, 06:49] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:34, 11:59](615 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:20, 19:25] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:25, 07:00](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:36, 07:04](692 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:18, 16:23] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:32, 05:15](677 MB) - -FAILED: UNABLE TO COMPILE -- COMPILE 'hafs_all_intel' [, ] -FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_docn_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_datm_cdeps_intel' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:36] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:28](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:30](749 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:32, 02:20](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:29, 02:22](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:22](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:26](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:28](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:31, 02:18](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:23, 05:35](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 05:35](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:26](748 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:26, 03:50](2016 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:26, 03:49](2019 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:17, 04:53] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:03](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 07:34] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:27](762 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:14] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:03](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:37, 01:00](453 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:31, 00:39](454 MB) - -PASS -- COMPILE 'atml_intel' [14:13, 12:51] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:38, 05:41](1631 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 05:16](1644 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:15, 02:48](856 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:19, 07:23] ( 885 warnings 2 remarks ) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_p8_atmlnd_debug_intel' [, ]( MB) - -PASS -- COMPILE 'atmw_intel' [14:13, 12:29] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:16, 01:31](1638 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 10:56] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:25, 03:35](2947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:11](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:14, 04:16](3011 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:05] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:06, 21:50](4535 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:16, 19:14] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:36, 04:51](3073 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:17, 20:26] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:59, 13:43](1692 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:06, 14:58](1825 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:59, 07:03](959 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:59, 15:42](1662 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:18, 09:05] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:40, 21:19](1695 MB) + +PASS -- COMPILE 's2swa_intel' [21:15, 19:15] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:33, 05:36](3093 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:50, 05:36](3093 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:43, 03:15](3149 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:40, 05:35](3123 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:06, 03:15](3176 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:34, 05:30](3091 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:29, 04:36](3387 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:48, 05:35](3102 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [34:45, 08:44](3638 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:02, 05:47](3613 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:16, 09:44](4343 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:29, 06:48](4650 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:19, 05:17](3067 MB) + +PASS -- COMPILE 's2sw_intel' [20:14, 18:33] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:30, 04:09](1681 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:43, 04:14](1729 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:14, 09:06] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:48, 07:37](3155 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:14, 08:33] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:29, 05:16](1703 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:15, 14:15] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:10, 04:12](1726 MB) + +PASS -- COMPILE 's2s_intel' [16:15, 14:11] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:13, 06:37](2668 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:16, 22:51] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:54, 05:28](3103 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:19, 19:18] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:57, 14:14](1705 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:07](1018 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:40, 15:59](1678 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:34] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:48, 22:58](1712 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:32] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:35, 03:23](672 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:05, 02:22](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:16, 02:25](1574 MB) +PASS -- TEST 'control_latlon_intel' [07:01, 02:24](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:05, 02:24](1569 MB) +PASS -- TEST 'control_c48_intel' [15:10, 06:11](1621 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:42, 05:15](739 MB) +PASS -- TEST 'control_c192_intel' [12:43, 08:38](1684 MB) +PASS -- TEST 'control_c384_intel' [13:35, 08:49](2006 MB) +PASS -- TEST 'control_c384gdas_intel' [15:19, 07:15](1201 MB) +PASS -- TEST 'control_stochy_intel' [03:34, 01:26](625 MB) +PASS -- TEST 'control_stochy_restart_intel' [08:40, 00:52](443 MB) +PASS -- TEST 'control_lndp_intel' [12:31, 01:20](623 MB) +PASS -- TEST 'control_iovr4_intel' [13:41, 02:04](620 MB) +PASS -- TEST 'control_iovr5_intel' [12:40, 02:06](625 MB) +PASS -- TEST 'control_p8_intel' [13:30, 02:28](1604 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [13:26, 02:28](1608 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:22, 02:26](1601 MB) +PASS -- TEST 'control_restart_p8_intel' [03:34, 01:24](804 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:27, 02:26](1584 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:21](806 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:23, 02:33](1601 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:07, 04:23](1598 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:46, 03:16](1654 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:36, 02:30](1608 MB) +PASS -- TEST 'merra2_thompson_intel' [11:29, 02:46](1612 MB) +PASS -- TEST 'regional_control_intel' [06:02, 04:27](632 MB) +PASS -- TEST 'regional_restart_intel' [03:57, 02:29](798 MB) +PASS -- TEST 'regional_decomp_intel' [06:57, 04:44](629 MB) +PASS -- TEST 'regional_noquilt_intel' [05:56, 04:25](1158 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:06, 04:27](629 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:01, 04:29](631 MB) +PASS -- TEST 'regional_wofs_intel' [07:04, 05:36](1609 MB) + +PASS -- COMPILE 'rrfs_intel' [12:18, 11:01] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:06, 06:08](1006 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:04, 03:40](1197 MB) +PASS -- TEST 'rap_decomp_intel' [09:11, 06:24](1008 MB) +PASS -- TEST 'rap_restart_intel' [05:19, 03:14](884 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:14, 06:05](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:12, 06:23](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 04:33](879 MB) +PASS -- TEST 'hrrr_control_intel' [06:12, 03:13](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:12, 03:15](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [20:26, 02:47](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:44](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:06, 05:56](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:48, 07:21](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:47, 07:06](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [16:19, 10:04] ( 6 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:00, 05:50](694 MB) +PASS -- TEST 'control_ras_intel' [04:27, 02:51](659 MB) + +PASS -- COMPILE 'wam_intel' [15:18, 09:27] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:30, 01:53](381 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:20, 12:31] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:50, 02:20](1603 MB) +PASS -- TEST 'regional_control_faster_intel' [05:58, 04:15](625 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:18, 08:22] ( 890 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:30](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:19, 02:29](1597 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:39, 02:52](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:31](797 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:08, 03:59](840 MB) +PASS -- TEST 'control_ras_debug_intel' [03:36, 02:40](808 MB) +PASS -- TEST 'control_diag_debug_intel' [04:21, 02:37](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [03:58, 02:37](1628 MB) +PASS -- TEST 'regional_debug_intel' [16:58, 15:44](661 MB) +PASS -- TEST 'rap_control_debug_intel' [05:35, 04:41](1179 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:31](1175 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 04:44](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:40, 04:38](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:38](1178 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:20, 04:55](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:41](1182 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 04:48](1181 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:35, 04:38](1180 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:33, 04:36](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:30](1177 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:32, 04:37](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:35](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:31, 04:38](1177 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:31, 05:25](1184 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:36, 04:35](1178 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:04, 07:55](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:19, 05:12] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:29, 04:46](420 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:14, 09:31] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:46, 03:25](1060 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:07](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:06, 02:44](884 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 02:53](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:57, 03:51](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:43, 01:31](775 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:18, 11:34] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:34, 01:50](1084 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:55](1085 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:07](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 09:40] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:06, 03:38](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:17, 05:40] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:38](1061 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:22](1057 MB) +PASS -- TEST 'conus13km_debug_intel' [15:49, 13:17](1136 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:39, 13:21](821 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:31, 13:19](1201 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:16, 05:29] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:32, 04:36](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [20:19, 15:33] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:39, 04:28](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:14, 04:59](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:48, 06:19](779 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_regional_atm_wav_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:43, 11:55](814 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 04:38](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:28, 05:40](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 02:18](391 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:06, 06:13](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:01, 03:15](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 03:00](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:22, 03:44](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:12](427 MB) +PASS -- TEST 'gnv1_nested_intel' [05:20, 03:18](788 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:19, 06:51] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:20, 11:57](614 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:20, 19:19] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:01](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:36, 07:10](696 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [24:20, 16:27] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:44, 05:12](676 MB) + +PASS -- COMPILE 'hafs_all_intel' [21:21, 13:50] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:35, 05:29](752 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:42, 05:30](737 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:27, 16:09](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:20, 07:36] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:28](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:30](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:23, 02:20](637 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:22](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:32, 02:24](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:35, 02:29](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:29](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:21](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:51, 05:38](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:32, 05:35](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:31](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:44, 03:52](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:39, 03:52](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:18, 04:53] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:01](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:18, 07:35] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:30, 02:28](750 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:06](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:01](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:38, 00:41](453 MB) + +PASS -- COMPILE 'atml_intel' [13:20, 12:49] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:42, 06:11](1639 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:38, 05:49](1632 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 03:16](850 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:18, 07:23] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:25, 05:28](1667 MB) + +PASS -- COMPILE 'atmw_intel' [13:21, 12:37] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:32](1639 MB) + +PASS -- COMPILE 'atmaero_intel' [12:19, 11:01] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:55, 03:35](2950 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:12](3007 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:18](3012 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:18, 06:11] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:21, 21:49](4529 MB) SYNOPSIS: -Starting Date/Time: 20240428 22:53:16 -Ending Date/Time: 20240429 00:51:54 -Total Time: 01h:59m:25s -Compiles Completed: 37/38 -Tests Completed: 168/173 -Failed Compiles: -* COMPILE hafs_all_intel: FAILED: UNABLE TO COMPILE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/compile_hafs_all_intel.log +Starting Date/Time: 20240430 21:59:35 +Ending Date/Time: 20240430 23:38:01 +Total Time: 01h:39m:15s +Compiles Completed: 38/38 +Tests Completed: 172/173 Failed Tests: -* TEST control_stochy_restart_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/run_control_stochy_restart_intel.log -* TEST hafs_regional_docn_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST hafs_regional_docn_oisst_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST hafs_regional_datm_cdeps_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST control_p8_atmlnd_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/run_control_p8_atmlnd_debug_intel.log +* TEST hafs_regional_atm_wav_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2221/tests/logs/log_derecho/run_hafs_regional_atm_wav_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -324,7 +313,7 @@ Result: FAILURE ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -7441d3bb7300d6f41e7eb17bd98aac0539164065 +521f9348ebc590effdc0b5054b94946e209679d4 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -334,10 +323,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) + cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -347,7 +336,7 @@ Submodule hashes used in testing: 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -358,88 +347,21 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_14461 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240430 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_43701 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 'hafs_all_intel' [15:13, 13:53] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:13, 05:29](758 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:10, 05:31](734 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:02, 16:12](894 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:13, 12:20] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_stochy_intel' [02:24, 01:26](629 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:35, 00:51](441 MB) - -SYNOPSIS: -Starting Date/Time: 20240429 11:36:19 -Ending Date/Time: 20240429 12:11:02 -Total Time: 00h:34m:59s -Compiles Completed: 2/2 -Tests Completed: 5/5 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -d35f6da7caf2a4d320aeb75613de67533a11d1b7 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_28144 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 'atml_debug_intel' [08:19, 07:29] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:33, 05:28](1658 MB) +PASS -- COMPILE 'hafsw_intel' [16:15, 15:49] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:12, 10:53](799 MB) SYNOPSIS: -Starting Date/Time: 20240429 10:55:02 -Ending Date/Time: 20240429 11:10:55 -Total Time: 00h:16m:05s +Starting Date/Time: 20240501 07:00:20 +Ending Date/Time: 20240501 07:31:08 +Total Time: 00h:30m:58s Compiles Completed: 1/1 Tests Completed: 1/1 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index add817f40d..8384cf2789 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -fc1d99cd44c4dfa5f95d34deede2a4e0ff81577b +521f9348ebc590effdc0b5054b94946e209679d4 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) + cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,274 +35,274 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240426 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_176475 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240430 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_5026 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:16, 21:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:54, 07:29](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:13, 25:58] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:07, 14:04](1685 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:26, 14:08](1809 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:55, 07:18](944 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:03, 15:51](1668 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:16, 16:04] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:51, 24:25](1707 MB) - -PASS -- COMPILE 's2swa_intel' [22:16, 20:58] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:25, 08:11](3097 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:15, 08:12](3097 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:57, 06:37](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:24, 08:08](3121 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:38, 05:26](3175 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:26, 06:39](3408 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:56, 07:57](3096 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 07:21](3019 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:15, 08:21](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:54, 10:44](3270 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:55, 07:30](3600 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:30, 13:37](4035 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:52, 09:23](4345 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:58, 08:06](3065 MB) - -PASS -- COMPILE 's2sw_intel' [20:15, 20:09] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:30, 05:00](1685 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:10, 05:13](1729 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:16, 15:15] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:38, 10:02](3129 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:11] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:20, 05:57](1699 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [42:16, 41:22] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:45, 05:52](1727 MB) - -PASS -- COMPILE 's2s_intel' [19:16, 18:06] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:44, 06:54](2663 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:13, 24:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [20:34, 08:42](3101 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:17, 23:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:53, 15:39](1701 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:24, 07:20](999 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:42, 17:45](1682 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:16, 13:06] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:56, 27:51](1715 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:17, 14:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:32, 04:08](673 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:01, 03:18](1568 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:02, 03:41](1580 MB) -PASS -- TEST 'control_latlon_intel' [09:51, 03:37](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:10, 03:36](1569 MB) -PASS -- TEST 'control_c48_intel' [15:22, 06:38](1604 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:08, 05:47](722 MB) -PASS -- TEST 'control_c192_intel' [18:05, 10:24](1683 MB) -PASS -- TEST 'control_c384_intel' [26:39, 18:25](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [25:34, 14:33](1186 MB) -PASS -- TEST 'control_stochy_intel' [05:24, 02:17](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:19, 01:24](430 MB) -PASS -- TEST 'control_lndp_intel' [05:24, 02:26](628 MB) -PASS -- TEST 'control_iovr4_intel' [05:39, 03:10](623 MB) -PASS -- TEST 'control_iovr5_intel' [06:43, 03:12](623 MB) -PASS -- TEST 'control_p8_intel' [13:28, 03:47](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:49, 03:49](1607 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:54, 03:39](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [05:43, 01:43](789 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:10, 03:20](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 01:46](793 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:00, 03:40](1594 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:00, 03:09](1685 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:42, 05:49](1606 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:10, 04:41](1657 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:12, 03:28](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [08:48, 04:10](1604 MB) -PASS -- TEST 'regional_control_intel' [08:24, 04:57](616 MB) -PASS -- TEST 'regional_restart_intel' [04:06, 02:38](789 MB) -PASS -- TEST 'regional_decomp_intel' [08:15, 05:28](615 MB) -PASS -- TEST 'regional_2threads_intel' [06:22, 03:08](758 MB) -PASS -- TEST 'regional_noquilt_intel' [08:17, 05:03](1155 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:55, 04:56](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 04:42](615 MB) -PASS -- TEST 'regional_wofs_intel' [08:28, 06:02](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [14:15, 13:28] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:22, 06:57](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:28, 03:59](1181 MB) -PASS -- TEST 'rap_decomp_intel' [11:36, 07:17](1009 MB) -PASS -- TEST 'rap_2threads_intel' [10:42, 06:13](1099 MB) -PASS -- TEST 'rap_restart_intel' [07:45, 03:44](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:35, 06:55](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:37, 07:03](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:26, 05:20](880 MB) -PASS -- TEST 'hrrr_control_intel' [07:26, 03:53](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:49, 04:51](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:28, 03:15](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:13, 02:16](837 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:11, 07:15](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:08, 08:12](1966 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:03, 07:49](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [14:16, 13:41] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:22, 06:39](696 MB) -PASS -- TEST 'control_ras_intel' [05:06, 03:32](657 MB) - -PASS -- COMPILE 'wam_intel' [14:15, 13:52] -PASS -- TEST 'control_wam_intel' [04:19, 02:38](370 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:14, 17:27] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:20, 04:06](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [06:42, 04:49](615 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:17, 12:26] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:21, 03:18](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:13, 03:21](1589 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:12](786 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:15](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:15, 04:21](824 MB) -PASS -- TEST 'control_ras_debug_intel' [04:06, 02:55](795 MB) -PASS -- TEST 'control_diag_debug_intel' [05:05, 03:02](1641 MB) -PASS -- TEST 'control_debug_p8_intel' [05:51, 03:14](1618 MB) -PASS -- TEST 'regional_debug_intel' [18:56, 16:33](633 MB) -PASS -- TEST 'rap_control_debug_intel' [07:22, 05:10](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:06](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 05:02](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 05:06](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 05:02](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:19](1251 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:16](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:14](1166 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:14, 05:08](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:08, 05:13](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:07, 04:51](1166 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:35, 05:18](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:10, 07:50](1166 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:07, 05:13](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:59, 06:08](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:03, 05:11](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:17, 08:24](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:15, 09:47] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:35, 04:55](396 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:15, 13:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:27, 03:54](1048 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 05:48](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:36, 03:34](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:04, 05:23](950 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 02:50](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:35, 03:39](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:19, 04:33](782 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:42](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 15:50] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:55, 02:10](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:10](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:17, 01:29](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:16, 14:43] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:43, 04:22](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:23, 10:36] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:53, 05:00](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 04:53](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [17:44, 14:19](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:36, 14:43](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:10, 08:28](1109 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:56, 14:07](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 09:58] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [19:18, 18:47] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:23, 05:15](707 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 04:26](1055 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:22, 07:37](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:20, 11:38](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:14, 12:43](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:04, 05:17](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:51, 06:42](496 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:32, 02:55](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:39, 08:03](434 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:54](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:43, 03:29](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:40, 04:42](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:00, 01:44](402 MB) -PASS -- TEST 'gnv1_nested_intel' [07:19, 03:56](766 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:15, 12:33] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 13:03](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:16, 21:05] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:30, 07:37](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:37, 07:48](786 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:16, 18:43] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:38, 06:51](787 MB) - -PASS -- COMPILE 'hafs_all_intel' [35:19, 34:44] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:03, 06:30](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 06:28](730 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:04, 20:07](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:16, 13:53] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:49, 02:34](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:03, 01:34](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:50, 02:45](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:10, 02:27](637 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:59, 02:31](637 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:44, 02:33](758 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:34](745 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:25](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:04, 06:05](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:07](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:52, 02:35](758 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:35](2011 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:37](2011 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:15, 08:44] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:49, 05:28](743 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:15, 12:30] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:49, 02:33](759 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:22, 03:47] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:59, 02:02](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:46](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 01:05](456 MB) - -PASS -- COMPILE 'atml_intel' [17:16, 16:46] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:42, 08:34](1632 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:48, 08:39](1633 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:09, 04:37](837 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:13, 12:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [37:55, 35:04](1651 MB) - -PASS -- COMPILE 'atmw_intel' [16:16, 16:04] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:44, 02:50](1648 MB) - -PASS -- COMPILE 'atmaero_intel' [15:19, 15:07] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:24, 06:40](2947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:24, 06:43](3013 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:02, 06:42](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:56] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:10, 18:25](4477 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:14, 18:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:03, 07:31](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:14, 22:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:41, 13:59](1685 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:42, 14:15](1808 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:13, 07:08](945 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:04, 15:03](1668 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:20] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:47, 23:42](1707 MB) + +PASS -- COMPILE 's2swa_intel' [19:14, 18:30] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:08, 07:49](3096 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 07:56](3096 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:12, 04:51](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:08, 07:58](3121 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 04:57](3174 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:03, 07:14](3413 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:03, 07:55](3096 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:00, 07:21](3019 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:09, 07:58](3097 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:57, 10:26](3266 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 07:36](3601 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:28, 12:57](4036 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:53, 09:05](4342 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:55, 07:40](3065 MB) + +PASS -- COMPILE 's2sw_intel' [16:12, 15:58] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:54, 04:49](1685 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:54, 05:17](1730 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:15] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:30, 10:28](3129 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:12, 11:02] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:10, 05:57](1700 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:12, 15:20] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 05:09](1725 MB) + +PASS -- COMPILE 's2s_intel' [15:12, 15:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:58, 06:53](2663 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:14, 21:38] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:32, 07:42](3101 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:15, 23:34] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:43, 14:53](1701 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:38, 07:23](1000 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:40, 17:11](1682 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:14, 14:39] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:35, 26:23](1718 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:16, 16:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:33, 03:41](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 03:04](1568 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:23, 03:08](1580 MB) +PASS -- TEST 'control_latlon_intel' [04:07, 03:01](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:17, 03:03](1568 MB) +PASS -- TEST 'control_c48_intel' [08:42, 06:35](1601 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:01, 05:39](722 MB) +PASS -- TEST 'control_c192_intel' [11:13, 09:52](1683 MB) +PASS -- TEST 'control_c384_intel' [19:28, 18:11](1984 MB) +PASS -- TEST 'control_c384gdas_intel' [16:56, 14:14](1186 MB) +PASS -- TEST 'control_stochy_intel' [03:32, 02:14](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:31, 01:01](430 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 02:20](628 MB) +PASS -- TEST 'control_iovr4_intel' [03:37, 02:50](623 MB) +PASS -- TEST 'control_iovr5_intel' [03:44, 02:56](623 MB) +PASS -- TEST 'control_p8_intel' [05:42, 03:42](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 03:33](1608 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:25](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [03:10, 01:51](790 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:16](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:14, 02:04](792 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:00, 03:28](1595 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:41](1684 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:03, 05:19](1606 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:11](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:23](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [05:29, 03:40](1604 MB) +PASS -- TEST 'regional_control_intel' [06:14, 04:56](615 MB) +PASS -- TEST 'regional_restart_intel' [04:47, 03:21](789 MB) +PASS -- TEST 'regional_decomp_intel' [06:09, 05:00](615 MB) +PASS -- TEST 'regional_2threads_intel' [04:06, 03:04](765 MB) +PASS -- TEST 'regional_noquilt_intel' [06:11, 04:38](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:20, 04:40](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:07, 04:39](615 MB) +PASS -- TEST 'regional_wofs_intel' [08:07, 06:11](1590 MB) + +PASS -- COMPILE 'rrfs_intel' [15:15, 14:56] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:22, 06:38](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:08, 03:56](1184 MB) +PASS -- TEST 'rap_decomp_intel' [08:23, 06:59](1009 MB) +PASS -- TEST 'rap_2threads_intel' [08:02, 06:02](1097 MB) +PASS -- TEST 'rap_restart_intel' [05:23, 03:39](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:23, 06:55](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:42, 07:15](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:01, 05:22](879 MB) +PASS -- TEST 'hrrr_control_intel' [05:14, 03:43](1005 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:14, 03:48](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:13, 03:04](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:47, 01:55](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:23, 06:56](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 08:05](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:50, 07:42](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [15:16, 14:35] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:44, 06:35](696 MB) +PASS -- TEST 'control_ras_intel' [05:33, 03:24](655 MB) + +PASS -- COMPILE 'wam_intel' [15:12, 14:18] +PASS -- TEST 'control_wam_intel' [03:30, 02:08](370 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:13, 15:44] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:08, 03:12](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [05:41, 04:41](614 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:14, 11:56] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:02, 02:53](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:35, 02:56](1589 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:45, 03:08](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:59, 02:53](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:39, 04:40](824 MB) +PASS -- TEST 'control_ras_debug_intel' [03:43, 02:52](794 MB) +PASS -- TEST 'control_diag_debug_intel' [04:46, 03:35](1640 MB) +PASS -- TEST 'control_debug_p8_intel' [04:47, 03:50](1618 MB) +PASS -- TEST 'regional_debug_intel' [17:50, 16:30](633 MB) +PASS -- TEST 'rap_control_debug_intel' [06:36, 05:36](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:36, 05:24](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 05:25](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 05:32](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:23](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:05, 05:18](1251 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:35, 05:18](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:06](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:03](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:32, 05:00](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:54](1166 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:32, 04:59](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:09, 07:51](1165 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:29, 04:55](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 05:49](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:31, 05:00](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:06, 08:35](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:14, 08:44] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:30, 04:55](396 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:17, 12:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:46](1048 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:01, 05:50](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 03:22](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 05:16](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:02, 02:47](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 03:27](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:02, 04:19](783 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 01:47](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:01, 02:02](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:08, 01:16](1074 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:07, 01:38](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 13:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:16, 04:23](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:13, 10:17] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:42, 04:53](1047 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:37, 04:52](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [15:50, 14:10](1130 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:24](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:16](1109 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:11](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 09:54] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 04:56](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [18:13, 17:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:22](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:41, 04:35](1057 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:37, 07:48](754 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:52, 11:42](788 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:42, 12:30](804 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 05:19](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 06:50](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:19, 02:56](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:35, 07:58](433 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 04:30](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:13, 03:38](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:14, 04:40](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:44](401 MB) +PASS -- TEST 'gnv1_nested_intel' [05:22, 04:04](769 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:16, 12:24] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:06, 12:57](586 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:15, 20:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:09, 07:49](618 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:04, 07:43](787 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:13, 19:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:08, 06:04](790 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:12, 17:06] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:59, 06:12](745 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:23, 06:05](731 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:14, 20:04](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:22, 13:22] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:35](758 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:36](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:25](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:31](637 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:30](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:25, 02:34](759 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:34](758 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:24](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:58, 05:53](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:58, 06:02](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:36](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 04:35](2014 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:31, 04:36](2013 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:50] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:24](744 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 12:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:58, 02:33](758 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 05:19] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:52, 01:54](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:48, 01:28](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:06, 01:02](456 MB) + +PASS -- COMPILE 'atml_intel' [17:14, 16:49] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:45, 08:02](1633 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:41, 08:01](1632 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:40](837 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:15, 13:37] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 07:02](1651 MB) + +PASS -- COMPILE 'atmw_intel' [15:15, 14:29] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:48](1648 MB) + +PASS -- COMPILE 'atmaero_intel' [14:13, 13:41] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:20, 06:38](2948 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:15, 07:09](3012 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:07, 07:15](3020 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:12, 11:03] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:29, 19:17](4477 MB) SYNOPSIS: -Starting Date/Time: 20240429 01:08:25 -Ending Date/Time: 20240429 03:14:52 -Total Time: 02h:07m:46s +Starting Date/Time: 20240501 02:23:40 +Ending Date/Time: 20240501 03:51:13 +Total Time: 01h:29m:01s Compiles Completed: 38/38 Tests Completed: 180/180 @@ -313,65 +313,3 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: SUCCESS ====END OF GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -d35f6da7caf2a4d320aeb75613de67533a11d1b7 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240426 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_221543 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: control_p8_atmlnd_debug -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atml_debug_intel' [11:12, 10:35] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:13, 06:16](1651 MB) - -SYNOPSIS: -Starting Date/Time: 20240429 13:52:13 -Ending Date/Time: 20240429 14:13:58 -Total Time: 00h:22m:05s -Compiles Completed: 1/1 -Tests Completed: 1/1 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF GAEA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index db58d92d42..bc07a8a85e 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -5175ca7ecbd16473b4778a533ab9c52b065a1eb4 +521f9348ebc590effdc0b5054b94946e209679d4 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,11 +9,11 @@ Submodule hashes used in testing: c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -24,419 +24,368 @@ 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-20240426 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2646060 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240430 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1718044 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [12:51, 12:51] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:38, 05:49](3171 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:46, 16:46] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:59, 17:12](1706 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 17:52](1998 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:54, 08:03](1123 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 19:13](1628 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:39, 04:38] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:44, 22:55](1687 MB) - -PASS -- COMPILE 's2swa_intel' [13:00, 13:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [06:39, 05:47](3212 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:42, 05:49](3195 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:20, 03:23](3268 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:37, 05:49](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:32, 03:34](3277 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:23, 05:37](3543 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:33, 05:48](3203 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:27, 04:43](3062 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:43, 05:53](3197 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:44, 10:07](3279 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:17, 06:11](3597 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:12, 09:34](4060 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:23, 06:17](4362 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:22, 05:31](3147 MB) - -PASS -- COMPILE 's2sw_intel' [12:13, 12:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:28, 04:41](1732 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:14, 04:23](1722 MB) - -PASS -- COMPILE 's2swa_debug_intel' [04:39, 04:39] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:27, 08:30](3237 MB) - -PASS -- COMPILE 's2sw_debug_intel' [04:25, 04:25] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:39, 05:47](1727 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:39, 11:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:14, 04:24](1759 MB) - -PASS -- COMPILE 's2s_intel' [11:29, 11:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:54, 09:25](2833 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:28, 16:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:16, 05:25](3210 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:30, 15:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:02, 17:13](1791 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:06, 08:08](1177 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:31, 19:39](1690 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:23, 04:22] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:40, 24:55](1697 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:26, 11:26] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:32, 03:20](711 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:54](1600 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:31, 02:59](1616 MB) -PASS -- TEST 'control_latlon_intel' [03:22, 02:55](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 03:01](1578 MB) -PASS -- TEST 'control_c48_intel' [08:16, 07:48](1738 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 06:25](876 MB) -PASS -- TEST 'control_c192_intel' [11:14, 10:31](1720 MB) -PASS -- TEST 'control_c384_intel' [12:02, 10:38](2011 MB) -PASS -- TEST 'control_c384gdas_intel' [10:22, 08:05](1395 MB) -PASS -- TEST 'control_stochy_intel' [01:47, 01:37](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:16, 00:59](506 MB) -PASS -- TEST 'control_lndp_intel' [01:44, 01:33](659 MB) -PASS -- TEST 'control_iovr4_intel' [02:41, 02:27](657 MB) -PASS -- TEST 'control_iovr5_intel' [02:47, 02:33](657 MB) -PASS -- TEST 'control_p8_intel' [03:47, 03:13](1617 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:42, 03:00](1586 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 02:52](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [02:13, 01:37](890 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:32, 02:54](1600 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:16, 01:37](930 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:38, 03:03](1588 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:16, 02:45](1719 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:46, 05:17](1617 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:43, 04:07](1674 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:40, 03:00](1604 MB) -PASS -- TEST 'merra2_thompson_intel' [03:58, 03:22](1621 MB) -PASS -- TEST 'regional_control_intel' [05:35, 05:10](850 MB) -PASS -- TEST 'regional_restart_intel' [03:08, 02:43](1019 MB) -PASS -- TEST 'regional_decomp_intel' [05:52, 05:29](849 MB) -PASS -- TEST 'regional_2threads_intel' [03:36, 03:11](850 MB) -PASS -- TEST 'regional_noquilt_intel' [05:33, 05:08](1356 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:32, 05:05](850 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:33, 05:09](848 MB) -PASS -- TEST 'regional_wofs_intel' [07:09, 06:43](1900 MB) - -PASS -- COMPILE 'rrfs_intel' [10:31, 10:31] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:07, 07:43](1105 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:51, 04:02](1294 MB) -PASS -- TEST 'rap_decomp_intel' [08:25, 08:05](1035 MB) -PASS -- TEST 'rap_2threads_intel' [07:39, 07:15](1185 MB) -PASS -- TEST 'rap_restart_intel' [04:32, 04:02](1114 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:07, 07:41](1095 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:30, 08:08](1038 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:18, 05:49](1126 MB) -PASS -- TEST 'hrrr_control_intel' [04:25, 03:58](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:28, 04:06](1030 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:59, 03:38](1123 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:25, 02:09](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:06, 07:37](1103 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:31, 09:19](1962 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 09:04](2048 MB) - -PASS -- COMPILE 'csawmg_intel' [10:17, 10:17] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:24, 05:58](735 MB) -PASS -- TEST 'control_ras_intel' [03:23, 03:14](748 MB) - -PASS -- COMPILE 'csawmg_gnu' [03:39, 03:39] -PASS -- TEST 'control_csawmg_gnu' [08:44, 08:18](548 MB) - -PASS -- COMPILE 'wam_intel' [09:53, 09:52] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [02:20, 02:09](656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:38, 10:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:22, 02:46](1612 MB) -PASS -- TEST 'regional_control_faster_intel' [05:09, 04:43](853 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:53, 04:53] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:12, 02:43](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:14, 02:44](1615 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:07, 02:58](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:58, 02:48](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:33, 04:09](869 MB) -PASS -- TEST 'control_ras_debug_intel' [02:58, 02:47](826 MB) -PASS -- TEST 'control_diag_debug_intel' [03:20, 02:47](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [03:20, 02:50](1648 MB) -PASS -- TEST 'regional_debug_intel' [17:30, 17:05](844 MB) -PASS -- TEST 'rap_control_debug_intel' [05:01, 04:50](1205 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:53, 04:42](1202 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:58, 04:47](1207 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:00, 04:49](1201 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:09, 04:59](1214 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:27, 05:07](1287 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:10, 04:59](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 05:04](1207 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:01, 04:51](1183 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:08, 04:58](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:03, 04:52](1204 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:04, 04:53](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:14, 08:04](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:03, 04:53](1199 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:14, 06:04](1207 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:13, 05:02](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 08:25](1210 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:38, 02:37] -PASS -- TEST 'control_csawmg_debug_gnu' [02:41, 02:13](528 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:15, 03:14] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:05, 04:56](511 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:59, 09:58] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 03:49](1163 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:47, 06:21](1049 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 03:22](990 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:22, 06:02](1085 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:28, 03:08](963 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:55, 03:35](936 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:10, 04:46](1028 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:50](937 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:33, 12:33] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:40, 02:06](1204 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:19, 00:54](1118 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:47, 01:14](1112 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:13, 10:13] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:39, 04:09](983 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:24, 03:24] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:02, 04:51](1089 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:56, 04:45](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [14:56, 14:13](1233 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:59, 14:17](894 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:39, 08:06](1156 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:55, 14:26](1296 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:22, 03:22] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:09, 04:58](1137 MB) - -PASS -- COMPILE 'hafsw_intel' [11:34, 11:34] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:56, 04:53](738 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:11, 05:46](1119 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:00, 06:55](826 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:16, 13:20](871 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:21, 15:04](884 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:14, 05:31](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 06:42](520 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:10, 02:43](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:49, 07:12](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:14, 03:42](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 03:30](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:41, 04:04](592 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:27, 01:11](411 MB) -PASS -- TEST 'gnv1_nested_intel' [04:34, 04:04](801 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [03:54, 03:54] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:17, 12:41](566 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:57, 11:57] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:32, 08:47](671 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 08:45](748 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:53, 11:53] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:05, 06:20](741 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:16, 11:16] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:14, 06:23](823 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:22, 06:26](812 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:47, 16:11](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:13, 06:13] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:42, 02:36](1157 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:42, 01:34](1102 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:38, 02:32](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:44, 02:37](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:48, 02:41](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:50, 02:44](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:43, 02:37](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:42, 02:37](1012 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:39, 06:33](1065 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:02, 06:12](1049 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:48, 02:45](1128 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:59, 03:53](2492 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:57, 03:51](2437 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:01, 03:01] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:20, 06:15](1057 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:02, 06:02] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:45, 02:39](1148 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:11] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:59, 00:42](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:59, 00:45](331 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:41, 00:28](324 MB) - -PASS -- COMPILE 'atml_intel' [11:47, 11:47] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [04:54, 04:10](1581 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [04:54, 04:09](1599 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:46, 02:13](895 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:26, 04:26] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [34:07, 33:23](1613 MB) - -PASS -- COMPILE 'atmw_intel' [10:58, 10:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:22, 01:45](1654 MB) - -PASS -- COMPILE 'atmaero_intel' [10:48, 10:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:47, 04:05](3022 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:38, 04:55](3104 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:23, 04:57](3116 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:45, 03:45] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:55, 21:18](4450 MB) - -PASS -- COMPILE 'atm_gnu' [03:39, 03:39] -PASS -- TEST 'control_c48_gnu' [11:47, 11:18](1545 MB) -PASS -- TEST 'control_stochy_gnu' [03:36, 03:25](511 MB) -PASS -- TEST 'control_ras_gnu' [05:02, 04:52](517 MB) -PASS -- TEST 'control_p8_gnu' [05:27, 04:44](1267 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:07, 04:28](1267 MB) -PASS -- TEST 'control_flake_gnu' [10:49, 10:38](551 MB) - -PASS -- COMPILE 'rrfs_gnu' [03:39, 03:39] -PASS -- TEST 'rap_control_gnu' [11:02, 10:39](858 MB) -PASS -- TEST 'rap_decomp_gnu' [11:14, 10:50](862 MB) -PASS -- TEST 'rap_2threads_gnu' [10:16, 09:50](940 MB) -PASS -- TEST 'rap_restart_gnu' [06:00, 05:32](588 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:11, 10:46](857 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:13, 10:52](858 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:29, 08:02](587 MB) -PASS -- TEST 'hrrr_control_gnu' [06:03, 05:28](855 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:48, 05:27](844 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:28, 05:00](936 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:51, 05:27](858 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:07, 02:51](574 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:03, 02:47](668 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:12, 10:40](850 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:39, 03:39] -PASS -- TEST 'control_diag_debug_gnu' [02:12, 01:35](1284 MB) -PASS -- TEST 'regional_debug_gnu' [10:20, 09:55](560 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:46, 02:36](867 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:44, 02:34](867 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:46, 02:36](873 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:35](872 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:11, 02:46](950 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 04:04](868 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:48, 02:36](868 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:48, 02:38](861 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:46, 01:36](505 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:52, 01:42](499 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:13, 01:41](1253 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:52, 02:41](866 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:05, 02:53](878 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 04:19](878 MB) - -PASS -- COMPILE 'wam_debug_gnu' [01:49, 01:49] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:41, 03:41] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:51, 09:26](712 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:20, 04:56](712 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:08, 08:46](764 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:58, 04:36](758 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:22, 05:03](714 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 07:03](561 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:52, 02:36](544 MB) -PASS -- TEST 'conus13km_control_gnu' [03:48, 03:10](886 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:26, 05:56](894 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:19, 01:50](568 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:22, 05:22] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:45](737 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:38, 03:38] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:44, 02:34](722 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:44, 02:32](722 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:30, 06:58](903 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:41, 07:12](595 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:55, 07:24](905 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:31, 07:00](968 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:43, 03:43] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:51, 02:39](748 MB) - -PASS -- COMPILE 's2swa_gnu' [14:45, 14:45] - -PASS -- COMPILE 's2s_gnu' [14:21, 14:21] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:19, 11:19](1350 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [02:40, 02:40] - -PASS -- COMPILE 's2sw_pdlib_gnu' [14:28, 14:28] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:07, 25:18](1325 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:40, 02:40] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 14:08](1326 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [14:16, 14:16] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:03](701 MB) - -SYNOPSIS: -Starting Date/Time: 20240429 13:36:09 -Ending Date/Time: 20240429 20:01:09 -Total Time: 06h:25m:17s -Compiles Completed: 54/54 -Tests Completed: 240/240 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF HERA REGRESSION TESTING LOG==== - -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -7441d3bb7300d6f41e7eb17bd98aac0539164065 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -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-20240426 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_4106538 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: control_p8_atmlnd_debug +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 'atml_debug_intel' [06:11, 04:26] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:52, 05:28](1634 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:41] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:11, 05:32](3187 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 17:29] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:58, 17:04](1748 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:08, 18:17](2004 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 08:03](1131 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 19:14](1652 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:48] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:05, 22:41](1664 MB) + +PASS -- COMPILE 's2swa_intel' [13:12, 13:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:19, 05:53](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:28, 05:50](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:19, 03:25](3254 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:18, 05:49](3243 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:17, 03:26](3284 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:14, 05:32](3551 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:14, 05:51](3215 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:20, 04:42](3077 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:51](3224 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:11, 10:09](3350 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 06:10](3621 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:51, 09:37](4166 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:00, 05:58](4349 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:18, 05:30](3182 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 12:41] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:13, 04:44](1744 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:20, 04:21](1788 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:48] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:13, 08:25](3254 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:45] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:02, 05:50](1726 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:07, 04:19](1788 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 11:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:41, 09:23](2836 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:12, 17:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:16, 05:32](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 17:13](1772 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:11, 08:04](1174 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:01, 19:46](1677 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:27] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 25:06](1725 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:12] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:22, 03:25](701 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:51, 02:58](1607 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:03](1609 MB) +PASS -- TEST 'control_latlon_intel' [06:48, 02:54](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:55, 02:58](1597 MB) +PASS -- TEST 'control_c48_intel' [10:50, 07:38](1751 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:27, 06:24](871 MB) +PASS -- TEST 'control_c192_intel' [14:11, 10:31](1747 MB) +PASS -- TEST 'control_c384_intel' [14:13, 10:33](2013 MB) +PASS -- TEST 'control_c384gdas_intel' [13:40, 07:58](1401 MB) +PASS -- TEST 'control_stochy_intel' [04:22, 01:38](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:05](506 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:34](659 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:28](652 MB) +PASS -- TEST 'control_iovr5_intel' [03:22, 02:29](654 MB) +PASS -- TEST 'control_p8_intel' [03:58, 03:00](1635 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:59, 02:57](1633 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:50, 02:51](1629 MB) +PASS -- TEST 'control_restart_p8_intel' [02:45, 01:36](895 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:48, 02:55](1621 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:51, 01:36](937 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:48, 03:00](1624 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:47](1714 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:18](1628 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:49, 03:55](1688 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:54, 02:57](1638 MB) +PASS -- TEST 'merra2_thompson_intel' [04:51, 03:18](1650 MB) +PASS -- TEST 'regional_control_intel' [06:40, 05:10](847 MB) +PASS -- TEST 'regional_restart_intel' [03:41, 02:43](1019 MB) +PASS -- TEST 'regional_decomp_intel' [06:38, 05:33](852 MB) +PASS -- TEST 'regional_2threads_intel' [04:39, 03:14](843 MB) +PASS -- TEST 'regional_noquilt_intel' [06:42, 05:09](1357 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:12](859 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 05:07](849 MB) +PASS -- TEST 'regional_wofs_intel' [07:38, 06:41](1912 MB) + +PASS -- COMPILE 'rrfs_intel' [11:14, 10:35] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:40, 07:41](1106 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:08](1286 MB) +PASS -- TEST 'rap_decomp_intel' [08:36, 08:07](1046 MB) +PASS -- TEST 'rap_2threads_intel' [08:36, 07:15](1193 MB) +PASS -- TEST 'rap_restart_intel' [04:41, 04:01](1109 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:38, 07:42](1107 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:38, 08:09](1037 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:39, 05:50](1136 MB) +PASS -- TEST 'hrrr_control_intel' [04:38, 03:59](1040 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:32, 04:07](1032 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:33, 03:41](1110 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:09](1011 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:40](1107 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:12](2001 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2060 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:43] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:37, 06:00](749 MB) +PASS -- TEST 'control_ras_intel' [04:20, 03:16](751 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 03:47] +PASS -- TEST 'control_csawmg_gnu' [09:41, 08:25](549 MB) + +PASS -- COMPILE 'wam_intel' [10:12, 09:54] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [02:24, 02:05](654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:56, 02:39](1639 MB) +PASS -- TEST 'regional_control_faster_intel' [05:44, 04:45](832 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:16] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:34](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:50, 02:32](1624 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:01](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:45](823 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:39, 04:08](864 MB) +PASS -- TEST 'control_ras_debug_intel' [03:22, 02:43](828 MB) +PASS -- TEST 'control_diag_debug_intel' [03:48, 02:44](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [03:45, 02:48](1654 MB) +PASS -- TEST 'regional_debug_intel' [18:39, 17:19](848 MB) +PASS -- TEST 'rap_control_debug_intel' [05:23, 04:51](1214 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:46](1212 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:54](1212 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:49](1210 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 04:50](1208 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:33, 05:05](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 04:54](1215 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:52](1210 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:22, 04:54](1210 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:54](1206 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:41](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:59](1213 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:53](1205 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 04:53](1202 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 05:56](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:23, 04:55](1213 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:38, 08:19](1211 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:39] +PASS -- TEST 'control_csawmg_debug_gnu' [05:42, 02:12](530 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:11] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [08:23, 05:03](522 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 10:11] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:59, 03:51](1165 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:36, 06:24](1030 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:29, 03:23](993 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:33, 06:03](1090 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:37, 03:07](965 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:30, 03:35](923 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:50](1034 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:51](940 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:19] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:50, 02:11](1174 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:41, 00:55](1122 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:42, 01:19](1106 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:05] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 04:09](993 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:28] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:48](1095 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:43](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [15:51, 14:16](1235 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 13:56](934 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:04](1158 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 14:23](1299 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:16] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:52](1124 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 11:39] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:16, 04:52](742 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:30, 05:47](1114 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 06:49](810 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:19](863 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 15:13](877 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:27](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 06:34](521 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:40, 02:40](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:36, 07:10](476 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:38](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:49, 03:29](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:04](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:10](405 MB) +PASS -- TEST 'gnv1_nested_intel' [07:43, 04:05](801 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:18] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:49, 12:43](573 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 12:09] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:56, 08:41](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:05, 08:45](749 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:10] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 06:21](704 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:47] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:21](832 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:20, 06:23](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:02](1217 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:09] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:46](1174 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1099 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:35](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:42](1014 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:42](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:40](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:41](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:36](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:12](1062 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:16, 06:31](1047 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:41](1152 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:49](2445 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:49](2501 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:10](1069 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 05:53] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:37](1167 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:46](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:52](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:31](325 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 11:59] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:06](1621 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:00, 04:08](1597 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:11](904 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:17] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 05:40](1631 MB) + +PASS -- COMPILE 'atmw_intel' [11:12, 10:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:44](1664 MB) + +PASS -- COMPILE 'atmaero_intel' [11:12, 10:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:03, 04:01](2959 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:50](3097 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:56](3111 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:31] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:56, 20:56](4445 MB) + +PASS -- COMPILE 'atm_gnu' [04:11, 03:56] +PASS -- TEST 'control_c48_gnu' [12:43, 11:11](1544 MB) +PASS -- TEST 'control_stochy_gnu' [04:23, 03:20](507 MB) +PASS -- TEST 'control_ras_gnu' [06:22, 04:47](516 MB) +PASS -- TEST 'control_p8_gnu' [06:59, 04:35](1265 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:35](1268 MB) +PASS -- TEST 'control_flake_gnu' [11:23, 10:32](552 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:12, 03:39] +PASS -- TEST 'rap_control_gnu' [12:32, 10:46](860 MB) +PASS -- TEST 'rap_decomp_gnu' [13:33, 10:54](858 MB) +PASS -- TEST 'rap_2threads_gnu' [11:39, 09:45](948 MB) +PASS -- TEST 'rap_restart_gnu' [06:40, 05:29](591 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:37, 10:44](858 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:37, 10:53](857 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:40, 07:59](586 MB) +PASS -- TEST 'hrrr_control_gnu' [06:37, 05:34](857 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:40](845 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:33, 04:59](936 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:33](857 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:54](571 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:51](664 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:45, 10:40](855 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:10, 03:47] +PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:40](1288 MB) +PASS -- TEST 'regional_debug_gnu' [12:42, 10:02](567 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:37](871 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:32](872 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:37](875 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:35](880 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:32, 03:18](945 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 03:59](876 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 02:38](872 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:33](868 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:32](503 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:44](499 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:38](1260 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:32](874 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:47](880 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:36, 04:17](877 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:10, 01:52] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:34] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:32](712 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 05:01](714 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:34, 08:35](764 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:30](754 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:01](713 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:36, 07:00](557 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:24, 02:30](548 MB) +PASS -- TEST 'conus13km_control_gnu' [03:52, 03:08](886 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:41, 05:29](888 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:42, 01:46](578 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:21] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:38, 05:43](739 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:44] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:34](721 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:19, 02:26](723 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:42, 08:32](899 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:46, 06:53](587 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:18](904 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:40, 07:05](960 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:34] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:34](744 MB) + +PASS -- COMPILE 's2swa_gnu' [15:11, 14:30] + +PASS -- COMPILE 's2s_gnu' [15:12, 14:28] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:13, 10:50](1358 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:36] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:28] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:03, 21:58](1326 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:29] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [18:56, 18:03](1334 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:59] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:05](706 MB) SYNOPSIS: -Starting Date/Time: 20240429 18:31:57 -Ending Date/Time: 20240429 18:47:17 -Total Time: 00h:15m:24s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Starting Date/Time: 20240501 01:32:37 +Ending Date/Time: 20240501 03:05:09 +Total Time: 01h:32m:50s +Compiles Completed: 54/54 +Tests Completed: 240/240 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 3682c894e9..b7191797dd 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -aef829f3311f718f3cef6b1102e849370da1a983 +521f9348ebc590effdc0b5054b94946e209679d4 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) + cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,361 +35,361 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240426 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3885348 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240430 +COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1563076 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:42] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:07, 07:39](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 18:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:12, 13:23](1774 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:21, 14:25](2195 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:40, 06:28](1173 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:09, 15:07](1682 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:39] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:29](1731 MB) - -PASS -- COMPILE 's2swa_intel' [12:10, 12:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:05, 07:46](2058 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 07:50](2061 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:26, 04:23](1960 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:05, 07:35](1986 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:25, 04:29](1728 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:51, 09:18](2496 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:33](2058 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:59, 06:34](1888 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:05, 07:29](2091 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:44, 15:47](2811 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:24, 06:21](2922 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:34, 09:06](3635 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:22, 05:21](3618 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:52, 04:56](2044 MB) - -PASS -- COMPILE 's2sw_intel' [12:10, 11:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:49, 07:07](1779 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:59, 04:11](1819 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:34] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [07:56, 06:52](2060 MB) - -PASS -- COMPILE 's2sw_debug_intel' [04:10, 03:27] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:58, 04:46](1798 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:30] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:04, 03:58](1832 MB) - -PASS -- COMPILE 's2s_intel' [08:10, 07:43] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:47, 07:25](2839 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:10, 13:28] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:07, 07:25](2091 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:10, 15:05] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:50, 13:54](1813 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:06, 06:53](1274 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:50, 15:20](1727 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:11] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:56, 21:32](1770 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 07:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:21, 02:49](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:38, 02:26](1608 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:38, 02:34](1615 MB) -PASS -- TEST 'control_latlon_intel' [06:30, 02:26](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:40, 02:41](1615 MB) -PASS -- TEST 'control_c48_intel' [12:37, 06:59](1751 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:40, 05:46](853 MB) -PASS -- TEST 'control_c192_intel' [12:43, 09:04](1761 MB) -PASS -- TEST 'control_c384_intel' [12:28, 09:38](2047 MB) -PASS -- TEST 'control_c384gdas_intel' [10:54, 07:24](1522 MB) -PASS -- TEST 'control_stochy_intel' [04:20, 01:33](673 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:26, 00:54](538 MB) -PASS -- TEST 'control_lndp_intel' [03:19, 01:26](668 MB) -PASS -- TEST 'control_iovr4_intel' [06:22, 02:07](658 MB) -PASS -- TEST 'control_iovr5_intel' [05:23, 02:10](672 MB) -PASS -- TEST 'control_p8_intel' [04:51, 02:52](1645 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:49, 02:54](1646 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:53, 02:52](1649 MB) -PASS -- TEST 'control_restart_p8_intel' [02:42, 01:29](922 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:43, 02:29](1625 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:22](983 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:40, 02:59](1619 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:40, 02:48](1738 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:32, 04:35](1650 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:03, 03:29](1702 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:02, 02:33](1657 MB) -PASS -- TEST 'merra2_thompson_intel' [05:04, 02:57](1650 MB) -PASS -- TEST 'regional_control_intel' [06:29, 04:31](960 MB) -PASS -- TEST 'regional_restart_intel' [03:30, 02:29](1104 MB) -PASS -- TEST 'regional_decomp_intel' [06:26, 04:46](947 MB) -PASS -- TEST 'regional_2threads_intel' [04:26, 02:51](914 MB) -PASS -- TEST 'regional_noquilt_intel' [05:30, 04:20](1486 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:33, 04:33](961 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:25, 04:25](958 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 05:35](2073 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 06:53] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:42, 06:38](1202 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:05, 03:27](1444 MB) -PASS -- TEST 'rap_decomp_intel' [07:40, 06:57](1120 MB) -PASS -- TEST 'rap_2threads_intel' [07:39, 06:12](1370 MB) -PASS -- TEST 'rap_restart_intel' [05:04, 03:24](1157 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:53, 06:31](1194 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:52](1173 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 06:07](1202 MB) -PASS -- TEST 'hrrr_control_intel' [04:38, 03:26](1087 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:39, 03:27](1051 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:52, 03:03](1123 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:25, 01:50](1025 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:54, 06:16](1198 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:35](2018 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:21](2168 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 06:58] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:29, 05:22](792 MB) -PASS -- TEST 'control_ras_intel' [03:18, 02:56](809 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 03:53] -PASS -- TEST 'control_csawmg_gnu' [08:32, 07:43](803 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 06:39] -PASS -- TEST 'control_wam_intel' [02:27, 01:52](790 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:54] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:54, 02:14](1646 MB) -PASS -- TEST 'regional_control_faster_intel' [04:25, 04:04](957 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:11, 03:40] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:30, 02:10](1637 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 02:08](1641 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:20, 02:32](827 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:15](828 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:28, 03:23](872 MB) -PASS -- TEST 'control_ras_debug_intel' [03:18, 02:15](832 MB) -PASS -- TEST 'control_diag_debug_intel' [03:32, 02:14](1698 MB) -PASS -- TEST 'control_debug_p8_intel' [03:39, 02:20](1669 MB) -PASS -- TEST 'regional_debug_intel' [14:34, 14:06](887 MB) -PASS -- TEST 'rap_control_debug_intel' [04:22, 04:02](1216 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:19, 03:52](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 03:56](1220 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 03:56](1222 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 03:59](1216 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:24, 04:08](1300 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:05](1220 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:57](1195 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:18, 03:58](1226 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 03:56](1225 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1218 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:16, 03:55](1229 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:21, 06:19](1219 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 03:58](1215 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 04:50](1221 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:18, 03:59](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:00, 06:53](1217 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 03:29] -PASS -- TEST 'control_csawmg_debug_gnu' [02:33, 02:02](791 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:43] ( 855 warnings ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:49, 03:11](1311 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:33, 05:22](1133 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:58, 02:50](1028 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 05:05](1295 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:40, 02:36](1046 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:37, 03:00](984 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:51, 04:06](1106 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 01:51](968 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 09:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:38, 01:43](1285 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:34, 00:46](1205 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:27, 01:25](1153 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 07:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 03:41](1073 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:20] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 03:56](1103 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:47](1093 MB) -PASS -- TEST 'conus13km_debug_intel' [12:37, 11:27](1343 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:35, 13:45](1003 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:30, 06:44](1245 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:30, 11:30](1410 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:19] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:14](1151 MB) - -PASS -- COMPILE 'hafsw_intel' [11:12, 09:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:04, 05:22](874 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 05:21](1275 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:14, 06:23](948 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:00, 13:45](988 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 15:07](1011 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:47, 05:28](609 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:23, 06:52](618 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:40, 03:07](438 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 08:37](539 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 04:33](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:43, 03:41](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:49](680 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:49](440 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:39] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:45, 11:13](635 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:11] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:46, 16:48](773 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:45](844 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:37] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:02, 10:42](830 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 10:02] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:26](940 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 05:32](934 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:18](1342 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:48] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:09](1159 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:19](1097 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:04](1007 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:06](1006 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:06](1012 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:09](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:13, 02:09](1147 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:13, 02:02](1010 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 04:58](1159 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:43, 04:50](1144 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:07](1148 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:14, 02:59](2429 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:01](2442 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:29] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:11](1078 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:43] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:07](1147 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:57] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:25, 00:50](335 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:45](561 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:29](557 MB) - -PASS -- COMPILE 'atml_intel' [08:13, 07:37] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:02, 05:43](1631 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:56, 05:07](1644 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:38, 02:55](947 MB) - -PASS -- COMPILE 'atml_debug_intel' [03:10, 03:05] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:00, 28:51](1661 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 09:40] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:28](1706 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 07:26] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:50, 03:26](1798 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:48, 04:13](1805 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:36, 04:16](1806 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:36] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:17, 16:18](4567 MB) - -PASS -- COMPILE 'atm_gnu' [07:11, 06:15] -PASS -- TEST 'control_c48_gnu' [10:39, 09:23](1555 MB) -PASS -- TEST 'control_stochy_gnu' [03:23, 02:14](734 MB) -PASS -- TEST 'control_ras_gnu' [04:19, 03:43](735 MB) -PASS -- TEST 'control_p8_gnu' [04:51, 03:48](1516 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:27](1518 MB) -PASS -- TEST 'control_flake_gnu' [05:18, 04:16](814 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 06:06] -PASS -- TEST 'rap_control_gnu' [08:45, 07:36](1088 MB) -PASS -- TEST 'rap_decomp_gnu' [08:33, 07:39](1087 MB) -PASS -- TEST 'rap_2threads_gnu' [07:35, 07:05](1122 MB) -PASS -- TEST 'rap_restart_gnu' [05:06, 04:01](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:45, 07:38](1088 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:43, 09:45](1083 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:46, 05:47](884 MB) -PASS -- TEST 'hrrr_control_gnu' [04:37, 03:59](1071 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:34, 04:00](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:35](1045 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:30, 03:57](1077 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:18, 02:03](880 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:18, 02:04](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:51, 07:33](1082 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 08:04] -PASS -- TEST 'control_diag_debug_gnu' [02:32, 01:16](1627 MB) -PASS -- TEST 'regional_debug_gnu' [07:27, 06:11](923 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:16, 01:58](1103 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:16, 02:00](1089 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 02:20](1096 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:16, 02:04](1104 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:25, 02:06](1271 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:18, 03:09](1095 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:19, 01:56](1098 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 02:00](1094 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:08](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:14](723 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:35, 01:13](1502 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:18, 01:56](1099 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1101 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 03:18](1101 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:34] -PASS -- TEST 'control_wam_debug_gnu' [02:21, 01:56](499 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:13, 06:14] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:30, 07:16](971 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:57, 03:50](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:41, 06:37](970 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:45, 03:27](889 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:36, 03:45](949 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:56, 05:24](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 01:58](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:36, 02:26](1266 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:30, 01:02](1172 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:37, 01:35](922 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 07:44] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:36, 04:46](993 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:10, 04:13] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:55](977 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:17, 01:56](975 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:25](1280 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 05:29](970 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:17](1188 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:26, 05:24](1348 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 09:18] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 01:56](1001 MB) - -PASS -- COMPILE 's2swa_gnu' [16:11, 15:18] - -PASS -- COMPILE 's2s_gnu' [16:10, 16:00] - -PASS -- COMPILE 's2swa_debug_gnu' [10:10, 09:34] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 16:13] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:10, 08:42] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 15:18] +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 11:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:59, 07:35](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:18, 13:25](1769 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:31, 14:08](2179 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:28, 06:45](1166 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:11, 15:02](1686 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 03:55] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:16, 20:22](1735 MB) + +PASS -- COMPILE 's2swa_intel' [13:12, 10:56] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:01, 07:37](2063 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:10, 07:35](2101 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:03, 04:22](1955 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:57, 07:39](1993 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:07, 04:22](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:02, 08:54](2507 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:59, 07:47](2056 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:08, 06:30](1910 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:12, 07:40](2085 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:39, 15:35](2797 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:08, 05:42](2920 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:33, 08:56](3632 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:57, 06:08](3612 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:03, 04:58](2038 MB) + +PASS -- COMPILE 's2sw_intel' [12:12, 10:10] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:48, 07:13](1767 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:56, 03:57](1820 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:12, 04:35] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [08:49, 06:51](2051 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:12, 04:12] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 04:42](1806 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:12, 07:42] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:04, 03:59](1812 MB) + +PASS -- COMPILE 's2s_intel' [11:12, 08:18] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:40, 07:22](2835 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:13, 11:55] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:55, 07:17](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 15:10] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:53, 13:54](1812 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:06, 06:52](1300 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:01, 15:25](1734 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:23] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:50](1790 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:21, 02:50](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [14:44, 02:29](1605 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:50, 02:34](1625 MB) +PASS -- TEST 'control_latlon_intel' [14:43, 02:29](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:49, 02:31](1601 MB) +PASS -- TEST 'control_c48_intel' [14:46, 06:57](1746 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:26, 05:45](855 MB) +PASS -- TEST 'control_c192_intel' [21:53, 08:59](1751 MB) +PASS -- TEST 'control_c384_intel' [21:25, 09:31](2052 MB) +PASS -- TEST 'control_c384gdas_intel' [19:53, 07:10](1522 MB) +PASS -- TEST 'control_stochy_intel' [08:20, 01:29](673 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:24, 00:53](548 MB) +PASS -- TEST 'control_lndp_intel' [07:20, 01:26](673 MB) +PASS -- TEST 'control_iovr4_intel' [14:22, 02:07](664 MB) +PASS -- TEST 'control_iovr5_intel' [12:38, 02:05](659 MB) +PASS -- TEST 'control_p8_intel' [12:51, 02:32](1638 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:48, 02:32](1649 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:50, 02:27](1654 MB) +PASS -- TEST 'control_restart_p8_intel' [04:43, 01:24](921 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:48, 02:31](1625 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:21](969 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:46, 02:40](1622 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:39, 02:20](1723 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:29, 04:22](1650 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:55, 03:24](1710 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:56, 02:31](1654 MB) +PASS -- TEST 'merra2_thompson_intel' [07:53, 02:50](1649 MB) +PASS -- TEST 'regional_control_intel' [09:27, 04:31](955 MB) +PASS -- TEST 'regional_restart_intel' [03:25, 02:30](1105 MB) +PASS -- TEST 'regional_decomp_intel' [09:35, 04:45](944 MB) +PASS -- TEST 'regional_2threads_intel' [06:32, 02:53](918 MB) +PASS -- TEST 'regional_noquilt_intel' [09:32, 04:19](1492 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:31, 04:33](957 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:24, 04:27](961 MB) +PASS -- TEST 'regional_wofs_intel' [09:33, 05:42](2089 MB) + +PASS -- COMPILE 'rrfs_intel' [07:10, 06:51] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:48, 06:41](1203 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:46, 03:38](1440 MB) +PASS -- TEST 'rap_decomp_intel' [09:34, 06:59](1168 MB) +PASS -- TEST 'rap_2threads_intel' [09:33, 06:09](1360 MB) +PASS -- TEST 'rap_restart_intel' [04:52, 03:26](1126 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:46, 06:31](1203 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 06:54](1132 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 04:55](1179 MB) +PASS -- TEST 'hrrr_control_intel' [04:48, 03:22](1071 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:40, 03:26](1038 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:03](1115 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:21, 01:49](1034 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:00, 06:21](1207 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:35](2021 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:29](2182 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 06:37] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:30, 05:18](812 MB) +PASS -- TEST 'control_ras_intel' [03:18, 02:47](801 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 03:44] +PASS -- TEST 'control_csawmg_gnu' [11:38, 06:39](811 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 06:24] +PASS -- TEST 'control_wam_intel' [02:23, 01:48](784 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:11, 08:54] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:52, 02:17](1632 MB) +PASS -- TEST 'regional_control_faster_intel' [05:27, 04:09](961 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 03:37] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 02:09](1635 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:36, 02:05](1642 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:27](839 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:12](835 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:34, 03:21](876 MB) +PASS -- TEST 'control_ras_debug_intel' [03:24, 02:15](834 MB) +PASS -- TEST 'control_diag_debug_intel' [03:39, 02:12](1697 MB) +PASS -- TEST 'control_debug_p8_intel' [03:32, 02:21](1661 MB) +PASS -- TEST 'regional_debug_intel' [14:30, 14:08](904 MB) +PASS -- TEST 'rap_control_debug_intel' [04:17, 03:57](1219 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:18, 03:50](1212 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:18, 03:55](1219 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 04:04](1224 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:26, 04:00](1225 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:33, 04:07](1303 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:17, 04:03](1220 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:16, 04:05](1223 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:16, 03:59](1223 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:56](1224 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:53](1217 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:16, 03:56](1218 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:28](1213 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:59](1226 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:46](1225 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:18, 03:55](1224 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:52, 06:54](1220 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:11, 03:18] +PASS -- TEST 'control_csawmg_debug_gnu' [02:38, 01:46](792 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 02:34] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 06:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:14](1281 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:50, 05:22](1133 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:45, 02:58](1029 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:43, 05:12](1287 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:37, 02:38](1042 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:44, 03:05](986 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:04, 04:15](1101 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:20, 01:37](959 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:37, 01:45](1310 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:29, 00:43](1209 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:26, 01:05](1156 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 06:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 03:43](1090 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:25] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 03:57](1102 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:50](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [12:34, 11:36](1332 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:30, 11:41](1000 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:30, 06:38](1241 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:30, 11:27](1395 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 02:39] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 03:59](1162 MB) + +PASS -- COMPILE 'hafsw_intel' [13:10, 10:18] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:24](868 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:10](1271 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:08, 06:14](957 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 13:58](987 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 15:01](1008 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:18](610 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 06:50](619 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:46, 02:44](433 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 07:34](546 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:42, 03:48](618 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:43, 03:45](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:44, 04:45](667 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:22](451 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:10] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:43, 11:20](637 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:10, 09:57] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:54, 16:19](770 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:53, 16:52](814 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:04, 09:43](833 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:10, 09:10] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:10, 05:35](941 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:04, 05:40](912 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:52, 16:24](1347 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [05:10, 04:33] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:16, 02:14](1144 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:42](1093 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:09](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:15, 02:10](1019 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:15, 02:11](1013 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 02:07](1134 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:25, 02:07](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:01](1008 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:56, 05:10](1159 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:50, 05:11](1150 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:07](1130 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:02](2435 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 03:11](2444 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 02:24] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:17](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 05:04] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:06](1147 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:40] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 01:09](340 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:55](560 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:38](560 MB) + +PASS -- COMPILE 'atml_intel' [09:10, 07:25] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:09, 05:28](1655 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:01, 05:37](1636 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 03:03](944 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:19] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:02, 04:45](1659 MB) + +PASS -- COMPILE 'atmw_intel' [10:10, 09:43] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:54, 01:30](1704 MB) + +PASS -- COMPILE 'atmaero_intel' [11:20, 06:45] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:05, 03:45](1786 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:57, 04:12](1809 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:48, 04:13](1812 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 02:27] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:35, 16:19](4602 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 03:48] +PASS -- TEST 'control_c48_gnu' [10:53, 09:35](1576 MB) +PASS -- TEST 'control_stochy_gnu' [03:23, 02:23](735 MB) +PASS -- TEST 'control_ras_gnu' [04:22, 03:49](730 MB) +PASS -- TEST 'control_p8_gnu' [04:49, 03:44](1513 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:51, 03:37](1517 MB) +PASS -- TEST 'control_flake_gnu' [05:22, 04:29](802 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 03:48] +PASS -- TEST 'rap_control_gnu' [08:42, 07:46](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [08:45, 07:50](1084 MB) +PASS -- TEST 'rap_2threads_gnu' [07:48, 07:05](1121 MB) +PASS -- TEST 'rap_restart_gnu' [05:10, 03:58](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:39, 07:41](1098 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:38, 07:57](1085 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:53, 05:50](883 MB) +PASS -- TEST 'hrrr_control_gnu' [05:40, 04:04](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:38, 04:03](1137 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:51, 03:40](1023 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 04:09](1071 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:21, 02:15](882 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:12](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:52, 07:43](1078 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 04:54] +PASS -- TEST 'control_diag_debug_gnu' [02:42, 01:20](1623 MB) +PASS -- TEST 'regional_debug_gnu' [07:34, 06:36](923 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:28, 01:57](1101 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 02:03](1090 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:56](1097 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 01:58](1096 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:28, 02:17](1272 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:05](1096 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:14](1103 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:19, 02:13](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:11](732 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:29](721 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:26](1504 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:02](1098 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:25, 02:12](1107 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:53, 03:19](1104 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:11, 02:10] +PASS -- TEST 'control_wam_debug_gnu' [03:24, 01:56](504 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 03:45] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:45, 07:15](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:48, 03:56](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:38, 06:41](973 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:39, 03:25](892 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 03:51](952 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:00, 05:25](861 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:03](855 MB) +PASS -- TEST 'conus13km_control_gnu' [05:37, 02:37](1266 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:31, 01:02](1172 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:24](928 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 07:43] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:32](991 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:10, 05:03] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 01:59](974 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:03](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:31, 05:32](1280 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:39](951 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:28, 03:30](1190 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:39](1347 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:10, 05:03] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:26, 02:05](999 MB) + +PASS -- COMPILE 's2swa_gnu' [15:10, 14:32] + +PASS -- COMPILE 's2s_gnu' [14:10, 13:59] + +PASS -- COMPILE 's2swa_debug_gnu' [03:10, 03:01] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:10, 14:46] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:36] + +PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:46] SYNOPSIS: -Starting Date/Time: 20240428 23:52:40 -Ending Date/Time: 20240429 01:12:23 -Total Time: 01h:20m:09s +Starting Date/Time: 20240430 22:59:38 +Ending Date/Time: 20240501 00:25:35 +Total Time: 01h:26m:27s Compiles Completed: 54/54 Tests Completed: 235/235 @@ -400,64 +400,3 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: SUCCESS ====END OF HERCULES REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -d35f6da7caf2a4d320aeb75613de67533a11d1b7 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240426 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4097341 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 'atml_debug_intel' [04:10, 03:24] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:19, 04:53](1661 MB) - -SYNOPSIS: -Starting Date/Time: 20240429 12:39:56 -Ending Date/Time: 20240429 12:51:25 -Total Time: 00h:11m:32s -Compiles Completed: 1/1 -Tests Completed: 1/1 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF HERCULES REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 1299d6635f..cc7f856b7a 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -d35f6da7caf2a4d320aeb75613de67533a11d1b7 +b2d7f816b6835880d15332692fc1c04af4fe7467 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) + cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,243 +35,243 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240426 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4164149 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240430 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4040815 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [41:16, 40:08] ( 2 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:38, 06:57](1794 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:16, 50:07] ( 2 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [46:04, 20:47](1666 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:20, 22:40](1890 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [31:06, 10:18](989 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:45, 24:04](1629 MB) - -PASS -- COMPILE 's2swa_intel' [41:16, 40:08] ( 1 warnings 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [28:12, 07:34](1823 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:47, 07:29](1828 MB) -PASS -- TEST 'cpld_restart_p8_intel' [31:57, 04:30](1714 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:07, 07:36](1837 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [40:03, 04:30](1728 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:59, 07:12](2258 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:00, 07:44](1828 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:22, 06:34](1780 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:29, 07:33](1809 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [34:33, 07:22](1776 MB) - -PASS -- COMPILE 's2sw_intel' [38:14, 37:51] ( 1 warnings 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:33, 06:39](1659 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:48, 06:23](1703 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:26] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:42](1839 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:25] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:27, 07:20](1663 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:16, 32:18] ( 1 warnings 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:59, 05:49](1719 MB) - -PASS -- COMPILE 's2s_intel' [34:14, 33:57] ( 1 warnings 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [16:23, 12:49](2786 MB) - -PASS -- COMPILE 's2swa_faster_intel' [33:26, 33:08] ( 1 warnings 1608 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:53, 07:13](1825 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [53:18, 52:31] ( 1 warnings 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:40, 20:53](1684 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:38, 09:37](1036 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:45, 23:56](1668 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:12, 05:01] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:40, 32:15](1695 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [35:16, 34:17] ( 2 warnings 1151 remarks ) -PASS -- TEST 'control_flake_intel' [17:34, 04:30](643 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [18:20, 03:49](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:20, 04:08](1551 MB) -PASS -- TEST 'control_latlon_intel' [17:10, 03:54](1544 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:23, 04:04](1543 MB) -PASS -- TEST 'control_c48_intel' [14:22, 11:49](1735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:47, 10:08](846 MB) -PASS -- TEST 'control_c192_intel' [36:37, 14:19](1686 MB) -PASS -- TEST 'control_c384_intel' [41:27, 18:39](1813 MB) -PASS -- TEST 'control_c384gdas_intel' [38:04, 13:43](1019 MB) -PASS -- TEST 'control_stochy_intel' [12:33, 02:16](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [16:33, 01:20](434 MB) -PASS -- TEST 'control_lndp_intel' [15:32, 02:09](602 MB) -PASS -- TEST 'control_iovr4_intel' [14:35, 03:24](593 MB) -PASS -- TEST 'control_iovr5_intel' [14:37, 03:22](598 MB) -PASS -- TEST 'control_p8_intel' [21:42, 04:04](1587 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [32:59, 04:00](1572 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [22:56, 03:44](1575 MB) -PASS -- TEST 'control_restart_p8_intel' [20:27, 02:13](816 MB) -PASS -- TEST 'control_noqr_p8_intel' [21:47, 03:48](1564 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [20:21, 02:09](834 MB) -PASS -- TEST 'control_decomp_p8_intel' [19:42, 03:59](1570 MB) -PASS -- TEST 'control_2threads_p8_intel' [19:41, 03:47](1673 MB) -PASS -- TEST 'control_p8_lndp_intel' [26:18, 07:02](1574 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [19:59, 05:08](1642 MB) -PASS -- TEST 'control_p8_mynn_intel' [31:00, 04:02](1583 MB) -PASS -- TEST 'merra2_thompson_intel' [21:03, 04:27](1584 MB) -PASS -- TEST 'regional_control_intel' [21:58, 07:06](762 MB) -PASS -- TEST 'regional_restart_intel' [19:47, 03:46](934 MB) -PASS -- TEST 'regional_decomp_intel' [13:43, 07:33](760 MB) -PASS -- TEST 'regional_2threads_intel' [09:39, 04:29](757 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [13:52, 07:03](767 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [22:47, 07:00](766 MB) - -PASS -- COMPILE 'rrfs_intel' [33:13, 32:41] ( 4 warnings 1119 remarks ) -PASS -- TEST 'rap_control_intel' [31:42, 10:05](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [26:14, 05:51](1217 MB) -PASS -- TEST 'rap_decomp_intel' [32:09, 10:52](987 MB) -PASS -- TEST 'rap_2threads_intel' [32:08, 09:52](1082 MB) -PASS -- TEST 'rap_restart_intel' [08:37, 05:16](985 MB) -PASS -- TEST 'rap_sfcdiff_intel' [32:28, 10:21](994 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:01, 11:01](989 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:25, 07:30](999 MB) -PASS -- TEST 'hrrr_control_intel' [26:00, 05:16](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [26:01, 05:30](985 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [25:24, 04:46](1063 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:31, 02:48](920 MB) -PASS -- TEST 'rrfs_v1beta_intel' [29:38, 10:14](987 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [29:36, 12:43](1936 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [30:34, 12:24](1933 MB) - -PASS -- COMPILE 'csawmg_intel' [33:13, 31:00] ( 2 warnings 1096 remarks ) -PASS -- TEST 'control_csawmg_intel' [23:44, 08:19](695 MB) -PASS -- TEST 'control_ras_intel' [18:30, 04:29](670 MB) - -PASS -- COMPILE 'wam_intel' [41:15, 29:55] ( 1 warnings 982 remarks ) -PASS -- TEST 'control_wam_intel' [08:25, 02:58](501 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [48:19, 31:41] ( 1 warnings 1295 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:32, 03:33](1576 MB) -PASS -- TEST 'regional_control_faster_intel' [08:44, 06:30](766 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [23:14, 05:37] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:50, 03:41](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:53, 03:42](1578 MB) -PASS -- TEST 'control_stochy_debug_intel' [14:32, 03:46](763 MB) -PASS -- TEST 'control_lndp_debug_intel' [13:30, 03:23](766 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:52, 05:20](812 MB) -PASS -- TEST 'control_ras_debug_intel' [11:33, 03:24](775 MB) -PASS -- TEST 'control_diag_debug_intel' [10:59, 03:25](1624 MB) -PASS -- TEST 'control_debug_p8_intel' [11:54, 03:48](1589 MB) -PASS -- TEST 'regional_debug_intel' [26:52, 21:47](778 MB) -PASS -- TEST 'rap_control_debug_intel' [10:26, 06:02](1157 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:28, 05:54](1145 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [11:31, 06:02](1154 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:30, 06:05](1153 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:25, 06:02](1159 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:34, 06:25](1237 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:28, 06:12](1152 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:28, 06:11](1153 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:36, 06:12](1152 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:33, 06:03](1158 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:01](1152 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:04](1154 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:26, 09:55](1151 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:58](1145 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:25](1159 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:24, 06:04](1149 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:22, 10:33](1156 MB) - -PASS -- COMPILE 'wam_debug_intel' [22:15, 04:01] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [09:24, 06:11](441 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [37:18, 30:17] ( 4 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:17, 05:45](1073 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [17:09, 08:22](903 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:18, 04:26](869 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:09, 07:57](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [17:24, 04:03](910 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:18, 04:40](857 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:22, 06:16](903 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:36, 02:30](846 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:21, 42:35] ( 4 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [11:09, 02:56](1111 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:00, 01:21](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:59, 01:34](1026 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [36:13, 30:44] ( 4 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:58, 05:31](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:09] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 06:06](1031 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:52](1024 MB) -PASS -- TEST 'conus13km_debug_intel' [20:58, 18:22](1140 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:37](854 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:40](1082 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:55, 18:20](1204 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:10] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 06:06](1071 MB) - -PASS -- COMPILE 'hafsw_intel' [35:16, 34:59] ( 2 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:25, 07:14](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:38, 06:33](1079 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:52, 09:18](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [23:35, 16:10](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:54, 18:09](825 MB) -PASS -- TEST 'gnv1_nested_intel' [13:34, 05:41](773 MB) - -PASS -- COMPILE 'hafs_all_intel' [32:13, 31:42] ( 1 warnings 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:29, 09:08](770 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:33, 08:52](752 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:00] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:24, 03:36](1053 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:24, 02:12](1034 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:22, 03:34](923 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:24, 03:33](925 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 03:36](926 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:24, 03:37](1058 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:24, 03:37](1053 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:24, 03:31](922 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:25, 07:55](888 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:25, 08:18](839 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:21, 03:36](1066 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:25, 05:08](2344 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:05](2339 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:25] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:58](1006 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 08:00] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:25, 03:38](1067 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [08:11, 01:49] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:37, 01:35](231 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:34, 01:22](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:49](254 MB) - -PASS -- COMPILE 'atml_intel' [39:14, 34:04] ( 9 warnings 1189 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:43, 08:04](1602 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [16:49, 07:52](1598 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 04:22](865 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:12, 05:14] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:53, 07:27](1615 MB) - -PASS -- COMPILE 'atmw_intel' [38:14, 31:57] ( 1 warnings 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:29, 02:19](1615 MB) - -PASS -- COMPILE 'atmaero_intel' [36:17, 30:30] ( 1 warnings 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:29, 05:14](1697 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [13:31, 06:24](1725 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:16, 06:34](1726 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [38:23, 38:22] ( 2 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:40, 07:39](1779 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:11, 54:10] ( 2 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:49, 21:02](1662 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:14, 22:48](1846 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:21, 10:30](991 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:09, 24:08](1623 MB) + +PASS -- COMPILE 's2swa_intel' [38:50, 38:50] ( 1 warnings 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:08, 08:21](1783 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:47, 08:17](1779 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:45, 04:43](1661 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 08:17](1834 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:22, 04:37](1692 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:12, 08:08](2244 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 08:14](1812 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:42](1779 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:20, 07:50](1803 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:43, 07:15](1784 MB) + +PASS -- COMPILE 's2sw_intel' [36:22, 36:21] ( 1 warnings 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:04, 05:53](1647 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 06:03](1704 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:46, 05:45] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:13, 10:49](1821 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:05, 05:04] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:42, 07:25](1677 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [32:42, 32:42] ( 1 warnings 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 05:54](1666 MB) + +PASS -- COMPILE 's2s_intel' [32:29, 32:29] ( 1 warnings 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [13:54, 13:06](2790 MB) + +PASS -- COMPILE 's2swa_faster_intel' [33:33, 33:32] ( 1 warnings 1608 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:36, 08:51](1819 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:39, 47:38] ( 1 warnings 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:10, 21:00](1654 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 11:16](1020 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:09, 27:36](1653 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:14, 05:14] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:48, 32:29](1683 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [34:30, 34:29] ( 2 warnings 1151 remarks ) +PASS -- TEST 'control_flake_intel' [04:54, 04:29](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:54, 04:06](1520 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:03, 04:17](1538 MB) +PASS -- TEST 'control_latlon_intel' [04:39, 04:00](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:53, 04:06](1543 MB) +PASS -- TEST 'control_c48_intel' [12:35, 11:55](1720 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:30, 10:10](845 MB) +PASS -- TEST 'control_c192_intel' [15:52, 14:53](1666 MB) +PASS -- TEST 'control_c384_intel' [21:31, 19:48](1814 MB) +PASS -- TEST 'control_c384gdas_intel' [18:57, 16:10](1008 MB) +PASS -- TEST 'control_stochy_intel' [02:36, 02:16](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:21](431 MB) +PASS -- TEST 'control_lndp_intel' [02:25, 02:09](601 MB) +PASS -- TEST 'control_iovr4_intel' [04:00, 03:45](598 MB) +PASS -- TEST 'control_iovr5_intel' [04:43, 04:19](595 MB) +PASS -- TEST 'control_p8_intel' [05:59, 04:35](1564 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:33, 04:17](1564 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:53, 04:32](1578 MB) +PASS -- TEST 'control_restart_p8_intel' [03:58, 02:42](821 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:51, 04:35](1558 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 02:27](836 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:04, 04:44](1562 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:13, 04:52](1662 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:17, 08:20](1565 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:51, 06:11](1624 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:20, 04:55](1591 MB) +PASS -- TEST 'merra2_thompson_intel' [07:04, 05:23](1585 MB) +PASS -- TEST 'regional_control_intel' [09:45, 09:06](770 MB) +PASS -- TEST 'regional_restart_intel' [05:48, 05:14](917 MB) +PASS -- TEST 'regional_decomp_intel' [10:04, 09:29](763 MB) +PASS -- TEST 'regional_2threads_intel' [07:40, 07:05](741 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:11, 09:21](763 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:08, 09:21](757 MB) + +PASS -- COMPILE 'rrfs_intel' [32:54, 32:54] ( 4 warnings 1119 remarks ) +PASS -- TEST 'rap_control_intel' [14:12, 12:39](993 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 07:00](1219 MB) +PASS -- TEST 'rap_decomp_intel' [15:53, 14:44](989 MB) +PASS -- TEST 'rap_2threads_intel' [13:14, 12:18](1087 MB) +PASS -- TEST 'rap_restart_intel' [08:06, 06:25](995 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:30, 13:15](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:47, 13:37](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:51, 10:05](1002 MB) +PASS -- TEST 'hrrr_control_intel' [07:18, 06:01](991 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:57, 07:23](979 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:39, 06:19](1055 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:52, 04:28](917 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:22, 13:04](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [16:15, 15:48](1927 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:20, 14:56](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [32:05, 32:05] ( 2 warnings 1096 remarks ) +PASS -- TEST 'control_csawmg_intel' [11:06, 10:17](673 MB) +PASS -- TEST 'control_ras_intel' [06:03, 05:26](667 MB) + +PASS -- COMPILE 'wam_intel' [30:06, 30:06] ( 1 warnings 982 remarks ) +PASS -- TEST 'control_wam_intel' [04:22, 03:43](501 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [32:02, 32:02] ( 1 warnings 1295 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:11, 04:34](1576 MB) +PASS -- TEST 'regional_control_faster_intel' [09:43, 09:03](767 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:54, 05:53] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 04:22](1503 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:45, 03:46](1564 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:39, 04:04](748 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:42, 03:28](745 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:03, 05:23](794 MB) +PASS -- TEST 'control_ras_debug_intel' [04:03, 03:46](772 MB) +PASS -- TEST 'control_diag_debug_intel' [04:52, 03:52](1610 MB) +PASS -- TEST 'control_debug_p8_intel' [04:29, 03:47](1589 MB) +PASS -- TEST 'regional_debug_intel' [23:16, 22:38](768 MB) +PASS -- TEST 'rap_control_debug_intel' [06:53, 06:15](1146 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:31, 06:17](1141 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:49, 06:30](1153 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:42, 06:25](1151 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 07:04](1154 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:13, 06:41](1236 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:48, 06:29](1144 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:41, 06:28](1148 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:52, 06:37](1129 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 06:51](1155 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:33, 06:14](1146 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 06:12](1147 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 10:08](1149 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:38, 06:14](1145 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:10, 07:50](1155 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:58, 06:36](1151 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:09, 10:46](1154 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:17, 04:17] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:44, 06:24](446 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:27, 30:27] ( 4 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 06:45](1073 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:41, 10:34](905 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:10, 05:42](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:53, 09:36](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:44, 05:02](906 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:53, 05:27](858 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:41, 09:07](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:01, 02:32](829 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:02, 43:02] ( 4 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:07, 03:17](1078 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:34, 01:33](1024 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:00, 02:06](1008 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:47, 30:45] ( 4 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:24, 06:34](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:25, 04:24] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:09, 06:49](1034 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:41, 05:57](1029 MB) +PASS -- TEST 'conus13km_debug_intel' [19:19, 18:35](1141 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:41, 18:46](847 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:56, 11:10](1083 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:29, 18:35](1189 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:33, 04:33] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:34, 06:54](1077 MB) + +PASS -- COMPILE 'hafsw_intel' [34:52, 34:52] ( 2 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:44, 10:17](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:56, 11:06](1078 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:00, 15:58](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:24, 20:53](807 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:10, 21:36](824 MB) +PASS -- TEST 'gnv1_nested_intel' [11:55, 10:27](779 MB) + +PASS -- COMPILE 'hafs_all_intel' [32:42, 32:42] ( 1 warnings 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:42, 12:16](767 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:03, 14:25](755 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:10] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 04:05](1059 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 02:31](1035 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 04:02](929 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 04:04](926 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 04:16](932 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 04:09](1061 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 04:09](1064 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:57, 03:49](921 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:03, 09:16](880 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:33, 07:55](850 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:57, 03:44](1064 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:11, 05:59](2347 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 06:04](2393 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:42, 03:39] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 08:09](1011 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 08:11] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:00, 03:37](1052 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:59, 01:59] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:14, 02:42](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 03:11](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 02:08](256 MB) + +PASS -- COMPILE 'atml_intel' [35:00, 35:00] ( 9 warnings 1189 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:30, 14:55](1600 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [16:21, 14:40](1607 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:09, 09:16](871 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:55, 05:55] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:11, 08:51](1611 MB) + +PASS -- COMPILE 'atmw_intel' [32:02, 32:02] ( 1 warnings 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:37, 03:10](1606 MB) + +PASS -- COMPILE 'atmaero_intel' [31:22, 31:22] ( 1 warnings 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:38, 07:01](1659 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:42, 07:59](1725 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:03, 07:34](1735 MB) SYNOPSIS: -Starting Date/Time: 20240429 17:50:27 -Ending Date/Time: 20240429 21:45:18 -Total Time: 03h:55m:28s +Starting Date/Time: 20240501 15:20:11 +Ending Date/Time: 20240501 20:09:19 +Total Time: 04h:49m:47s Compiles Completed: 33/33 Tests Completed: 159/159 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 97ee167d89..39c3aca92d 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -fc1d99cd44c4dfa5f95d34deede2a4e0ff81577b +ee1e3c5e5a1cc1f622452890e61b3950a3e73ebd Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) + bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) + cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,274 +35,274 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_453139 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240430 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14513 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:11, 14:24] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:09, 05:32](3175 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:33] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 17:22](1756 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 18:51](2032 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:23](1113 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:58, 19:27](1653 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:15] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:51, 23:02](1685 MB) - -PASS -- COMPILE 's2swa_intel' [15:11, 15:04] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:52, 05:47](3211 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 05:48](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:59, 03:26](3248 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 05:50](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:00, 03:25](3277 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:52, 06:12](3550 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:52, 05:48](3201 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:59, 04:49](3068 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:10, 05:47](3209 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:10, 10:25](3343 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:33, 06:33](3630 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:06, 11:03](4125 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:33, 06:54](4372 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:59, 05:35](3173 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 14:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 04:46](1742 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:59, 04:30](1779 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 04:32] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:59, 08:34](3246 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:15] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:13, 06:03](1751 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 04:41](1778 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 13:22] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:55, 08:12](2831 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:37, 05:19](3213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 16:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:11, 17:31](1765 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:34, 08:30](1168 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 19:47](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 04:00] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:15, 24:43](1709 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:54] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:26, 03:34](700 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:53, 02:53](1605 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:57, 03:03](1606 MB) -PASS -- TEST 'control_latlon_intel' [07:49, 02:54](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:57, 03:00](1598 MB) -PASS -- TEST 'control_c48_intel' [11:57, 07:09](1757 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:34, 06:02](868 MB) -PASS -- TEST 'control_c192_intel' [12:09, 10:41](1743 MB) -PASS -- TEST 'control_c384_intel' [16:17, 11:37](2003 MB) -PASS -- TEST 'control_c384gdas_intel' [15:28, 09:10](1361 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:43](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:24, 01:06](504 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:41](652 MB) -PASS -- TEST 'control_iovr4_intel' [03:27, 02:36](659 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:33](652 MB) -PASS -- TEST 'control_p8_intel' [04:15, 03:01](1631 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:15, 03:02](1635 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:38, 02:57](1636 MB) -PASS -- TEST 'control_restart_p8_intel' [03:16, 01:41](890 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:28, 02:52](1621 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:38](928 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:24, 03:01](1617 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:19, 03:05](1713 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:17](1628 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 03:57](1699 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:36, 03:01](1637 MB) -PASS -- TEST 'merra2_thompson_intel' [06:40, 03:20](1635 MB) -PASS -- TEST 'regional_control_intel' [06:44, 05:13](859 MB) -PASS -- TEST 'regional_restart_intel' [08:47, 02:46](1025 MB) -PASS -- TEST 'regional_decomp_intel' [06:40, 05:34](851 MB) -PASS -- TEST 'regional_2threads_intel' [05:42, 03:44](852 MB) -PASS -- TEST 'regional_noquilt_intel' [06:43, 05:09](1364 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:47, 05:11](859 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:14](858 MB) -PASS -- TEST 'regional_wofs_intel' [07:45, 06:40](1922 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:36] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:32, 07:45](1110 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:44](1290 MB) -PASS -- TEST 'rap_decomp_intel' [10:01, 08:07](1030 MB) -PASS -- TEST 'rap_2threads_intel' [10:04, 07:57](1191 MB) -PASS -- TEST 'rap_restart_intel' [06:24, 04:13](1102 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:27, 07:46](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:58, 08:48](1038 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:28, 05:50](1132 MB) -PASS -- TEST 'hrrr_control_intel' [06:00, 04:03](1039 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:00, 04:06](1028 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:23](1104 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:28, 02:10](999 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:29, 07:38](1095 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:13](1998 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:01](2068 MB) - -PASS -- COMPILE 'csawmg_intel' [13:12, 10:59] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:41, 06:06](748 MB) -PASS -- TEST 'control_ras_intel' [05:25, 03:19](738 MB) - -PASS -- COMPILE 'wam_intel' [12:12, 10:36] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [04:28, 02:06](659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 11:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:41, 02:40](1628 MB) -PASS -- TEST 'regional_control_faster_intel' [10:45, 04:40](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 04:22] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:56, 02:41](1620 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:58, 02:44](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:10](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:24, 02:55](819 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:45, 04:21](811 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:51](826 MB) -PASS -- TEST 'control_diag_debug_intel' [05:56, 02:43](1673 MB) -PASS -- TEST 'control_debug_p8_intel' [06:47, 02:52](1651 MB) -PASS -- TEST 'regional_debug_intel' [20:48, 17:26](849 MB) -PASS -- TEST 'rap_control_debug_intel' [07:24, 04:47](1198 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:23, 04:50](1202 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 04:56](1195 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:56](1201 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 04:56](1200 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:11](1290 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 04:55](1209 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 04:59](1209 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:01](1205 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 04:53](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:52](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:54](1198 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:55](1205 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:53](1138 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 05:49](1204 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:28, 04:49](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:31, 08:31](1209 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:10, 04:09] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:21, 04:59](525 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:34] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:28](1166 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 06:31](1047 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:16, 03:32](987 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 07:08](1089 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:14, 03:00](969 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 03:37](922 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:24, 04:52](1033 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:24, 01:53](933 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 13:55] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:55, 02:09](1198 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:46, 01:01](1122 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:39, 01:16](1114 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 10:44] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:48, 04:17](1002 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:03] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:53](1075 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:50](1076 MB) -PASS -- TEST 'conus13km_debug_intel' [15:53, 14:33](1227 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:46](931 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:26](1101 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:38](1297 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:07] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:00](1114 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 12:04] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:29](743 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:26, 06:00](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:59](831 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:15](864 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:36, 14:56](882 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 06:19](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:31](516 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:48, 03:12](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 08:06](475 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:10, 13:54] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:52, 05:27](3186 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 18:19] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:59, 17:15](1741 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:02, 18:22](2031 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:26](1106 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:47, 19:36](1648 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:11] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:41, 22:44](1648 MB) + +PASS -- COMPILE 's2swa_intel' [14:10, 14:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:33, 05:42](3214 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:16, 05:45](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:08, 03:20](3261 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:02, 05:47](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:53, 03:31](3273 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:02, 06:13](3553 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:30, 05:46](3204 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:43, 04:44](3063 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:15, 05:45](3212 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:50, 10:26](3344 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:18, 06:29](3622 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:10, 10:59](4168 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:45, 06:55](4374 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:44, 05:28](3172 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 14:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:12, 04:44](1740 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 04:26](1772 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:10] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:21, 08:43](3249 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:56] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:11, 05:57](1750 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:10, 12:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:32, 04:29](1784 MB) + +PASS -- COMPILE 's2s_intel' [12:10, 12:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:50, 08:16](2827 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:11, 20:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:30, 05:26](3211 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 17:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:05, 17:30](1763 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 08:30](1173 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:17, 19:52](1679 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:57] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 24:37](1712 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 12:02] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:30, 03:33](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:59, 02:56](1605 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:08, 03:03](1602 MB) +PASS -- TEST 'control_latlon_intel' [09:54, 02:55](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:06, 03:02](1593 MB) +PASS -- TEST 'control_c48_intel' [13:58, 07:10](1772 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:35, 06:02](880 MB) +PASS -- TEST 'control_c192_intel' [18:08, 10:36](1747 MB) +PASS -- TEST 'control_c384_intel' [17:20, 11:41](2004 MB) +PASS -- TEST 'control_c384gdas_intel' [18:19, 09:04](1359 MB) +PASS -- TEST 'control_stochy_intel' [04:26, 01:48](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:01](508 MB) +PASS -- TEST 'control_lndp_intel' [08:27, 01:38](654 MB) +PASS -- TEST 'control_iovr4_intel' [09:29, 02:32](655 MB) +PASS -- TEST 'control_iovr5_intel' [03:26, 02:27](656 MB) +PASS -- TEST 'control_p8_intel' [04:20, 02:58](1625 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:23, 02:56](1621 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:42, 02:51](1644 MB) +PASS -- TEST 'control_restart_p8_intel' [03:17, 01:40](889 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:19, 02:53](1621 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:07, 01:40](928 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:28, 03:08](1605 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:19, 03:02](1729 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:01, 05:12](1633 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:38, 04:01](1687 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:35, 03:06](1640 MB) +PASS -- TEST 'merra2_thompson_intel' [05:51, 03:18](1642 MB) +PASS -- TEST 'regional_control_intel' [06:44, 05:18](856 MB) +PASS -- TEST 'regional_restart_intel' [05:39, 02:45](1018 MB) +PASS -- TEST 'regional_decomp_intel' [06:40, 05:35](851 MB) +PASS -- TEST 'regional_2threads_intel' [04:40, 03:48](858 MB) +PASS -- TEST 'regional_noquilt_intel' [06:42, 05:33](1364 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:09](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:13](861 MB) +PASS -- TEST 'regional_wofs_intel' [07:36, 06:46](1919 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:17] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:31, 07:50](1104 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:08, 04:48](1289 MB) +PASS -- TEST 'rap_decomp_intel' [10:00, 08:14](1029 MB) +PASS -- TEST 'rap_2threads_intel' [09:01, 08:00](1182 MB) +PASS -- TEST 'rap_restart_intel' [06:20, 04:05](1107 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:06, 07:46](1092 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:01, 08:11](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:28, 05:54](1137 MB) +PASS -- TEST 'hrrr_control_intel' [06:21, 03:59](1032 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 04:08](1028 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:01, 03:23](1114 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:12](1004 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:19, 07:35](1109 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:11](1998 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 08:55](2077 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:12] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:43, 06:08](748 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:24](740 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:28] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [03:22, 02:06](654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 12:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:34, 02:47](1622 MB) +PASS -- TEST 'regional_control_faster_intel' [07:39, 04:44](803 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:44] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:40](1616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 02:37](1609 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:23, 03:06](817 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:51](823 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:07](863 MB) +PASS -- TEST 'control_ras_debug_intel' [05:21, 02:50](820 MB) +PASS -- TEST 'control_diag_debug_intel' [04:47, 02:46](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [04:45, 02:51](1640 MB) +PASS -- TEST 'regional_debug_intel' [18:41, 17:16](848 MB) +PASS -- TEST 'rap_control_debug_intel' [05:24, 04:57](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:25, 04:51](1190 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:57](1207 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:58](1201 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:59](1199 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:16](1295 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:01](1202 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:09](1207 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:09](1193 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:52](1208 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:52](1144 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:57](1201 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:07](1200 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:57](1195 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 05:48](1202 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:57](1204 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:22](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 03:13] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:23, 05:07](508 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:21] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 04:32](1168 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 06:27](1057 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:28](992 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:51, 06:46](1102 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:15, 02:56](965 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 03:39](923 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:14, 04:57](1037 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 01:52](927 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 13:20] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:57, 02:07](1201 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:46, 01:02](1127 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:19](1109 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:55] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:18](990 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 03:36] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:53](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:54](1077 MB) +PASS -- TEST 'conus13km_debug_intel' [15:52, 14:15](1228 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:50, 14:07](927 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:13](1105 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:44, 13:48](1262 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:21] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 04:53](1113 MB) + +PASS -- COMPILE 'hafsw_intel' [15:10, 12:52] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:29](741 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:47](1127 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:21, 06:50](828 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:11, 13:10](977 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 14:54](880 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 06:16](500 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 07:36](520 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:48, 03:15](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:26, 08:11](465 MB) PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:14](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:52, 04:05](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:53, 05:19](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:27, 01:27](396 MB) -PASS -- TEST 'gnv1_nested_intel' [07:51, 04:36](803 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:06] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:05, 12:54](568 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:28] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:59, 09:45](651 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:07, 09:54](710 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:14] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 07:06](696 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:11, 11:50] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:19, 06:30](778 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 06:28](815 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 15:54](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:05] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 02:37](1133 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:42](1080 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:33](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:35](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:35](1016 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:40](1120 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:38](1134 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:32](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 05:58](1061 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 05:54](1034 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:37](1122 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:32](2488 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:32](2500 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 03:05] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:14](1063 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:29] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1141 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:21] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:49](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:52](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:31](321 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 12:30] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 04:15](1608 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:15](1608 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:46, 02:22](896 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 04:04] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [35:33, 33:19](1629 MB) - -PASS -- COMPILE 'atmw_intel' [17:11, 12:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:45](1675 MB) - -PASS -- COMPILE 'atmaero_intel' [16:11, 12:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:30, 04:03](3023 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:25, 04:52](3089 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:04, 05:00](3114 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:06] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:43, 21:34](4320 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:51, 04:04](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:20](586 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:27](410 MB) +PASS -- TEST 'gnv1_nested_intel' [06:51, 04:39](800 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:50] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:09](564 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:10, 13:49] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:59, 09:56](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:03, 09:50](705 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 13:51] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:04, 07:10](696 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 12:36] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:23](830 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:26](815 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 15:57](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:32] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:36](1135 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:40](1083 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:33](1009 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:37](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:40](1009 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:36](1126 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1129 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:38](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:13, 05:58](1059 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:13, 05:53](1037 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:42](1133 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:44](2492 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:35](2431 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:11] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:13](1057 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:04] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:36](1134 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:02] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:49](259 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:48](329 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:32](321 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 12:24] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:41, 04:10](1602 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:14](1602 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:47, 02:18](896 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 04:06] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 05:56](1621 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:45] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:44](1670 MB) + +PASS -- COMPILE 'atmaero_intel' [11:11, 11:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:19, 04:00](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:15, 04:57](3087 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 04:59](3103 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 03:22] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:41, 21:09](4595 MB) SYNOPSIS: -Starting Date/Time: 20240429 07:54:50 -Ending Date/Time: 20240429 09:33:25 -Total Time: 01h:39m:22s +Starting Date/Time: 20240501 13:51:13 +Ending Date/Time: 20240501 15:18:50 +Total Time: 01h:28m:06s Compiles Completed: 38/38 Tests Completed: 180/180 @@ -313,64 +313,3 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: SUCCESS ====END OF ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -d35f6da7caf2a4d320aeb75613de67533a11d1b7 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_205619 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 'atml_debug_intel' [09:11, 04:19] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:13, 05:46](1632 MB) - -SYNOPSIS: -Starting Date/Time: 20240429 11:52:48 -Ending Date/Time: 20240429 12:14:12 -Total Time: 00h:21m:32s -Compiles Completed: 1/1 -Tests Completed: 1/1 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF ORION REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 7d7cd4c611..ed6cb3faff 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: -d35f6da7caf2a4d320aeb75613de67533a11d1b7 +a987c604f37531e8dc63d28127df5b6921805e0b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.6.2-89-g3d7067a) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps0.9.2-32-g4e19850c) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (remotes/origin/HEAD-11-gda95cc4) + bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl-1-gbbcabb5) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4226-g9b0ac7b1) + 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) + cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,235 +35,235 @@ 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-20240426 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_121661 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240430 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_17560 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:30, 11:28] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:29, 01:21](2971 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:50, 29:44] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [53:09, 02:07](1559 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:00, 02:00](1718 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [34:38, 01:33](847 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [53:10, 01:47](1579 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:36, 15:28] ( 1506 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [07:24, 02:13](1600 MB) - -PASS -- COMPILE 's2swa_intel' [22:41, 22:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [01:18, 01:31](3006 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [01:18, 01:56](3005 MB) -PASS -- TEST 'cpld_restart_p8_intel' [52:55, 00:55](3059 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [01:18, 01:32](3029 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [52:56, 00:51](3082 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [01:18, 01:15](3316 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [01:18, 01:39](3000 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [01:19, 01:37](2930 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [01:18, 01:56](3004 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [01:27, 03:22](3953 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:47, 03:18](4253 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [01:18, 01:02](2965 MB) - -PASS -- COMPILE 's2sw_intel' [22:43, 22:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [01:16, 01:08](1585 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [01:16, 01:14](1636 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 11:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:34, 01:08](1632 MB) - -PASS -- COMPILE 's2s_intel' [14:33, 13:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:25, 00:54](2654 MB) - -PASS -- COMPILE 's2swa_faster_intel' [31:52, 31:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [52:07, 01:49](3002 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:30, 11:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:29, 01:06](1574 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [54:08, 00:52](901 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [54:09, 00:58](1583 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:33, 13:28] ( 1542 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:27, 00:50](1611 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [22:35, 21:59] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [48:58, 00:33](571 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [48:58, 00:36](1476 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:58, 00:34](1475 MB) -PASS -- TEST 'control_latlon_intel' [48:58, 00:32](1461 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:58, 00:43](1481 MB) -PASS -- TEST 'control_c48_intel' [48:18, 01:08](1593 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [47:25, 01:06](714 MB) -PASS -- TEST 'control_c192_intel' [47:20, 00:47](1587 MB) -PASS -- TEST 'control_c384_intel' [47:24, 01:38](1909 MB) -PASS -- TEST 'control_c384gdas_intel' [46:09, 02:15](1093 MB) -PASS -- TEST 'control_stochy_intel' [45:21, 00:36](530 MB) -PASS -- TEST 'control_stochy_restart_intel' [42:56, 00:15](333 MB) -PASS -- TEST 'control_lndp_intel' [45:17, 00:40](528 MB) -PASS -- TEST 'control_iovr4_intel' [45:15, 00:54](524 MB) -PASS -- TEST 'control_iovr5_intel' [45:09, 00:55](523 MB) -PASS -- TEST 'control_p8_intel' [44:41, 00:56](1512 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [44:38, 01:08](1502 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [44:38, 01:10](1512 MB) -PASS -- TEST 'control_restart_p8_intel' [40:22, 01:07](696 MB) -PASS -- TEST 'control_noqr_p8_intel' [44:38, 00:56](1490 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [40:22, 01:07](698 MB) -PASS -- TEST 'control_decomp_p8_intel' [44:33, 00:46](1500 MB) -PASS -- TEST 'control_2threads_p8_intel' [44:33, 01:07](1587 MB) -PASS -- TEST 'control_p8_lndp_intel' [43:35, 00:26](1508 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [42:58, 01:26](1565 MB) -PASS -- TEST 'control_p8_mynn_intel' [42:55, 01:08](1510 MB) -PASS -- TEST 'merra2_thompson_intel' [41:48, 01:59](1513 MB) -PASS -- TEST 'regional_control_intel' [41:41, 00:24](609 MB) -PASS -- TEST 'regional_restart_intel' [35:59, 00:33](778 MB) -PASS -- TEST 'regional_decomp_intel' [35:58, 01:07](608 MB) -PASS -- TEST 'regional_2threads_intel' [41:36, 00:13](672 MB) -PASS -- TEST 'regional_noquilt_intel' [41:35, 00:31](1145 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [41:27, 00:34](607 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [41:18, 00:24](609 MB) -PASS -- TEST 'regional_wofs_intel' [41:17, 01:00](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [21:43, 21:04] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [49:45, 01:00](920 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:46, 00:24](1096 MB) -PASS -- TEST 'rap_decomp_intel' [49:45, 00:49](919 MB) -PASS -- TEST 'rap_2threads_intel' [49:45, 01:37](1008 MB) -PASS -- TEST 'rap_restart_intel' [41:18, 01:25](789 MB) -PASS -- TEST 'rap_sfcdiff_intel' [49:45, 01:21](915 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:45, 01:07](918 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [41:12, 01:54](784 MB) -PASS -- TEST 'hrrr_control_intel' [49:45, 01:20](910 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [49:45, 01:15](911 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [49:46, 01:37](996 MB) -PASS -- TEST 'hrrr_control_restart_intel' [41:05, 00:14](744 MB) -PASS -- TEST 'rrfs_v1beta_intel' [49:45, 01:32](914 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [49:45, 00:15](1876 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [49:45, 00:31](1860 MB) - -PASS -- COMPILE 'csawmg_intel' [13:35, 12:53] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [57:54, 00:45](602 MB) -PASS -- TEST 'control_ras_intel' [57:54, 01:06](562 MB) - -PASS -- COMPILE 'wam_intel' [17:43, 17:30] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [51:43, 01:04](274 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:39, 17:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [51:46, 01:07](1502 MB) -PASS -- TEST 'regional_control_faster_intel' [51:45, 00:31](609 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [21:35, 20:40] ( 871 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [41:02, 00:26](1487 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:40, 00:38](1490 MB) -PASS -- TEST 'control_stochy_debug_intel' [40:22, 01:01](693 MB) -PASS -- TEST 'control_lndp_debug_intel' [40:22, 00:19](692 MB) -PASS -- TEST 'control_csawmg_debug_intel' [40:17, 00:47](731 MB) -PASS -- TEST 'control_ras_debug_intel' [40:07, 00:17](701 MB) -PASS -- TEST 'control_diag_debug_intel' [40:07, 00:28](1555 MB) -PASS -- TEST 'control_debug_p8_intel' [34:35, 00:11](1518 MB) -PASS -- TEST 'regional_debug_intel' [38:21, 01:01](631 MB) -PASS -- TEST 'rap_control_debug_intel' [37:56, 01:04](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [37:37, 00:18](1068 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [37:13, 01:08](1074 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [31:34, 01:06](1077 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [37:03, 00:10](1072 MB) -PASS -- TEST 'rap_diag_debug_intel' [37:03, 01:10](1157 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [36:57, 00:59](1076 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [36:49, 00:58](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [36:42, 01:05](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [36:17, 01:06](1073 MB) -PASS -- TEST 'rap_noah_debug_intel' [36:10, 00:14](1069 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [36:03, 00:12](1070 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [35:56, 00:57](1074 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [35:55, 00:14](1072 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [35:46, 00:16](1078 MB) -PASS -- TEST 'rap_flake_debug_intel' [35:34, 00:11](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [35:26, 01:24](1082 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:17, 04:21] ( 843 warnings ) -PASS -- TEST 'control_wam_debug_intel' [56:00, 00:08](299 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:39, 18:00] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [34:33, 00:30](958 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [34:30, 01:32](790 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [34:20, 02:39](780 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [33:35, 01:27](853 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [33:24, 02:01](841 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [32:57, 02:07](792 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:05, 01:28](685 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [28:25, 00:28](668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:38, 16:24] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [32:14, 01:12](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [28:28, 01:04](1005 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [28:25, 00:52](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:38, 15:20] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:59, 00:30](810 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:17, 03:27] ( 774 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:33, 00:14](952 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [31:27, 00:19](955 MB) -PASS -- TEST 'conus13km_debug_intel' [30:56, 00:43](1035 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [30:43, 00:31](703 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [30:41, 00:46](1036 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [30:31, 00:44](1103 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:40, 16:45] ( 774 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [30:29, 01:08](979 MB) - -PASS -- COMPILE 'hafsw_intel' [14:35, 13:43] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [30:27, 01:23](620 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [30:23, 00:53](966 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [30:21, 02:06](661 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:13, 01:59](699 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:59, 01:49](705 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:51, 01:18](387 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [29:33, 01:27](407 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [29:18, 00:42](294 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:18, 02:43](372 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [27:46, 00:45](413 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [27:28, 01:04](415 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [27:22, 01:11](488 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [26:44, 00:34](311 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:20, 05:53] ( 1450 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:27, 00:50](501 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:35, 14:05] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:08, 00:56](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [26:04, 00:56](710 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:32, 15:16] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:01, 01:11](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:35, 16:01] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [25:47, 01:37](664 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:46, 01:33](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:13, 00:35](880 MB) - -PASS -- COMPILE 'atml_intel' [20:38, 20:07] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [25:04, 01:14](1548 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [24:55, 01:09](1548 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [18:28, 00:38](740 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:24, 04:33] ( 867 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [24:38, 01:48](1566 MB) - -PASS -- COMPILE 'atmaero_intel' [11:35, 10:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [24:11, 01:34](2852 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [23:58, 01:01](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [23:46, 00:56](2925 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:24, 09:51] ( 871 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:54, 00:50](4433 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:34, 20:07] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [50:19, 01:43](2975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:35, 19:35] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [50:18, 01:29](1594 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [31:14, 01:35](1708 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [31:05, 02:08](853 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:19, 01:57](1578 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:24, 08:51] ( 1506 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [01:30, 01:51](1599 MB) + +PASS -- COMPILE 's2swa_intel' [21:44, 20:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [41:21, 01:30](3005 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:10, 01:57](3002 MB) +PASS -- TEST 'cpld_restart_p8_intel' [32:55, 01:00](3063 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [49:10, 01:42](3030 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [39:51, 01:54](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [49:10, 01:30](3318 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [49:10, 01:37](3003 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [42:23, 01:21](2927 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:20, 01:31](3002 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [49:19, 03:48](3951 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:19, 03:24](4251 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [49:10, 01:20](2966 MB) + +PASS -- COMPILE 's2sw_intel' [11:26, 10:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [59:27, 01:07](1583 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:27, 01:14](1636 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [29:53, 29:26] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:00, 01:51](1635 MB) + +PASS -- COMPILE 's2s_intel' [10:25, 10:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [00:27, 00:43](2647 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [53:21, 01:38](3001 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [28:52, 27:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [42:02, 01:02](1603 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:43, 01:12](905 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:11, 01:27](1574 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:49, 26:16] ( 1542 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [44:06, 01:29](1619 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [21:36, 21:04] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [39:52, 01:12](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [39:52, 01:16](1465 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [39:52, 01:18](1477 MB) +PASS -- TEST 'control_latlon_intel' [39:52, 01:13](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:06, 00:33](1467 MB) +PASS -- TEST 'control_c48_intel' [39:51, 01:02](1597 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [39:51, 00:53](717 MB) +PASS -- TEST 'control_c192_intel' [39:52, 01:22](1586 MB) +PASS -- TEST 'control_c384_intel' [39:56, 01:09](1901 MB) +PASS -- TEST 'control_c384gdas_intel' [39:56, 02:13](1092 MB) +PASS -- TEST 'control_stochy_intel' [39:52, 00:26](528 MB) +PASS -- TEST 'control_stochy_restart_intel' [37:27, 00:16](333 MB) +PASS -- TEST 'control_lndp_intel' [39:52, 00:18](529 MB) +PASS -- TEST 'control_iovr4_intel' [39:52, 00:34](524 MB) +PASS -- TEST 'control_iovr5_intel' [39:52, 00:45](525 MB) +PASS -- TEST 'control_p8_intel' [39:52, 01:43](1498 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [39:52, 01:40](1509 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [39:35, 01:58](1507 MB) +PASS -- TEST 'control_restart_p8_intel' [32:23, 01:44](690 MB) +PASS -- TEST 'control_noqr_p8_intel' [39:33, 01:40](1489 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [32:22, 01:47](699 MB) +PASS -- TEST 'control_decomp_p8_intel' [37:27, 00:46](1500 MB) +PASS -- TEST 'control_2threads_p8_intel' [36:24, 00:50](1592 MB) +PASS -- TEST 'control_p8_lndp_intel' [36:23, 01:17](1505 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [36:21, 01:46](1565 MB) +PASS -- TEST 'control_p8_mynn_intel' [35:18, 01:01](1510 MB) +PASS -- TEST 'merra2_thompson_intel' [35:03, 01:59](1509 MB) +PASS -- TEST 'regional_control_intel' [35:00, 01:02](608 MB) +PASS -- TEST 'regional_restart_intel' [27:13, 00:23](776 MB) +PASS -- TEST 'regional_decomp_intel' [34:21, 01:05](608 MB) +PASS -- TEST 'regional_2threads_intel' [33:39, 01:11](667 MB) +PASS -- TEST 'regional_noquilt_intel' [33:09, 00:24](1143 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [33:01, 00:20](610 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [32:57, 00:15](609 MB) +PASS -- TEST 'regional_wofs_intel' [32:55, 00:51](1578 MB) + +PASS -- COMPILE 'rrfs_intel' [13:27, 12:39] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [32:51, 01:14](919 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [32:26, 00:43](1093 MB) +PASS -- TEST 'rap_decomp_intel' [32:22, 01:39](920 MB) +PASS -- TEST 'rap_2threads_intel' [32:14, 01:46](1009 MB) +PASS -- TEST 'rap_restart_intel' [23:26, 01:07](787 MB) +PASS -- TEST 'rap_sfcdiff_intel' [32:03, 01:54](915 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [29:52, 01:08](915 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [20:34, 01:17](786 MB) +PASS -- TEST 'hrrr_control_intel' [29:51, 01:51](913 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [29:44, 01:23](911 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [21:57, 01:54](988 MB) +PASS -- TEST 'hrrr_control_restart_intel' [22:36, 01:04](740 MB) +PASS -- TEST 'rrfs_v1beta_intel' [29:12, 01:40](912 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [28:28, 01:01](1877 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:15, 01:02](1861 MB) + +PASS -- COMPILE 'csawmg_intel' [32:56, 32:01] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [26:21, 01:08](599 MB) +PASS -- TEST 'control_ras_intel' [26:13, 01:16](561 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 10:04] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [42:57, 00:24](271 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:44, 19:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [21:07, 01:22](1509 MB) +PASS -- TEST 'regional_control_faster_intel' [26:39, 00:42](609 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:26, 11:12] ( 871 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:11, 00:54](1487 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:01, 00:33](1487 MB) +PASS -- TEST 'control_stochy_debug_intel' [25:43, 00:30](691 MB) +PASS -- TEST 'control_lndp_debug_intel' [25:43, 00:52](690 MB) +PASS -- TEST 'control_csawmg_debug_intel' [25:09, 01:02](731 MB) +PASS -- TEST 'control_ras_debug_intel' [24:09, 00:43](701 MB) +PASS -- TEST 'control_diag_debug_intel' [22:52, 00:34](1546 MB) +PASS -- TEST 'control_debug_p8_intel' [22:36, 01:03](1524 MB) +PASS -- TEST 'regional_debug_intel' [22:17, 00:27](632 MB) +PASS -- TEST 'rap_control_debug_intel' [21:53, 00:18](1073 MB) +PASS -- TEST 'hrrr_control_debug_intel' [21:27, 00:52](1067 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [21:14, 00:58](1071 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [11:18, 01:06](1070 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:02, 00:49](1076 MB) +PASS -- TEST 'rap_diag_debug_intel' [18:24, 01:09](1158 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:44, 00:46](1076 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:14, 00:17](1072 MB) +PASS -- TEST 'rap_lndp_debug_intel' [17:50, 00:35](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:44, 00:38](1074 MB) +PASS -- TEST 'rap_noah_debug_intel' [17:40, 01:12](1068 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [17:02, 00:31](1076 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:00, 00:19](1074 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [16:56, 00:30](1068 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [16:23, 00:29](1076 MB) +PASS -- TEST 'rap_flake_debug_intel' [15:57, 00:41](1073 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:52, 02:01](1078 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:20, 03:22] ( 843 warnings ) +PASS -- TEST 'control_wam_debug_intel' [43:50, 00:57](297 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:42, 18:57] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:51, 00:41](966 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:36, 01:49](789 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:22, 01:36](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:40, 01:33](850 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:30, 01:27](837 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:24, 01:31](785 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:12, 01:31](690 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:37, 00:36](668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:32, 16:06] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [13:54, 01:16](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:03, 00:45](1007 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:50, 00:34](881 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:28, 12:09] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:42, 01:27](810 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:25, 08:29] ( 774 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:31, 01:09](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:05, 01:02](954 MB) +PASS -- TEST 'conus13km_debug_intel' [12:15, 01:02](1037 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:06, 00:54](710 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:51, 00:38](1043 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:42, 00:36](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:17, 04:24] ( 774 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:27, 01:13](979 MB) + +PASS -- COMPILE 'hafsw_intel' [16:31, 15:49] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:23, 02:08](618 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:17, 00:51](971 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:46, 01:30](664 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:35, 01:32](695 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:27, 01:24](713 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:11, 01:08](390 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:49, 01:25](402 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:27, 00:49](282 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:29, 02:10](372 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:13, 01:27](413 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:29, 00:49](418 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 01:42](488 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:00, 01:19](314 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:23, 08:08] ( 1450 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:21, 01:16](496 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:35, 18:52] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:33, 01:38](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:13, 00:47](709 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:30, 11:17] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:04, 00:50](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:29, 13:04] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [04:34, 02:11](664 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [03:47, 01:28](640 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [03:28, 00:17](882 MB) + +PASS -- COMPILE 'atml_intel' [20:35, 16:57] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:20, 02:05](1540 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [03:17, 02:05](1549 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [55:38, 00:51](740 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:21, 05:07] ( 867 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [02:59, 01:25](1559 MB) + +PASS -- COMPILE 'atmaero_intel' [15:28, 10:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [02:19, 00:57](2850 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [01:42, 01:50](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [01:36, 01:29](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:24, 06:27] ( 871 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [01:36, 01:10](4443 MB) SYNOPSIS: -Starting Date/Time: 20240429 16:35:39 -Ending Date/Time: 20240429 18:02:24 -Total Time: 01h:27m:18s +Starting Date/Time: 20240501 14:48:33 +Ending Date/Time: 20240501 16:24:47 +Total Time: 01h:36m:59s Compiles Completed: 31/31 Tests Completed: 156/156 diff --git a/tests/rt.sh b/tests/rt.sh index 790fd85843..4454eb7fed 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -522,6 +522,7 @@ handle_error() { rt_trap() { echo "rt.sh: Exited abnormally, killing workflow and cleaning up" + trap "" SIGINT [[ ${ROCOTO:-false} == true ]] && rocoto_kill [[ ${ECFLOW:-false} == true ]] && ecflow_kill cleanup @@ -698,17 +699,6 @@ case ${MACHINE_ID} in module load ecflow/5.6.0.13 fi module load intel/19.1.3.304 python/3.8.6 - if [[ "${ECFLOW:-false}" == true ]] ; then - # ECF_ROOT=${ECF_ROOT:-} - # ECFLOW_START="${ECF_ROOT}/scripts/server_check.sh" - # ECFLOW_STOP="${ECF_ROOT}/bin/ecflow_stop.sh" - export ECF_OUTPUTDIR="${PATHRT}/ecf_outputdir" - export ECF_COMDIR="${PATHRT}/ecf_comdir" - rm -rf "${ECF_OUTPUTDIR}" "${ECF_COMDIR}" - mkdir -p "${ECF_OUTPUTDIR}" - mkdir -p "${ECF_COMDIR}" - # export ECFLOW_START ECFLOW_STOP - fi export colonifnco=":output" # hack DISKNM="/lfs/h2/emc/nems/noscrub/emc.nems/RT" @@ -728,9 +718,6 @@ case ${MACHINE_ID} in if [[ "${ROCOTO:-false}" == true ]] ; then module use /ncrc/proj/epic/rocoto/modulefiles module load rocoto - # ROCOTORUN=$(command -v rocotorun) - # ROCOTOSTAT=$(command -v rocotostat) - # ROCOTOCOMPLETE=$(command -v rocotocomplete) ROCOTO_SCHEDULER="slurm" fi @@ -743,8 +730,6 @@ case ${MACHINE_ID} in module load gcc/12.2.0 if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.8.4 - # ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh - # ECFLOW_STOP=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_stop.sh ECF_HOST=$(hostname) ECF_PORT=$(( $(id -u) + 1500 )) export ECF_PORT ECF_HOST @@ -765,17 +750,11 @@ case ${MACHINE_ID} in set -x if [[ "${ROCOTO:-false}" == true ]] ; then module load rocoto - # ROCOTORUN=$(command -v rocotorun) - # ROCOTOSTAT=$(command -v rocotostat) - # ROCOTOCOMPLETE=$(command -v rocotocomplete) ROCOTO_SCHEDULER=slurm fi if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.11.4 - # ECFLOW_START="$(command -v ecflow_start.sh)" - # ECFLOW_STOP="$(command -v ecflow_stop.sh)" - # export ECFLOW_START ECFLOW_STOP fi QUEUE="batch" @@ -798,17 +777,12 @@ case ${MACHINE_ID} in if [[ "${ROCOTO:-false}" == true ]] ; then module load contrib rocoto - # ROCOTORUN=$(command -v rocotorun) - # ROCOTOSTAT=$(command -v rocotostat) - # ROCOTOCOMPLETE=$(command -v rocotocomplete) ROCOTO_SCHEDULER="slurm" fi module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.8.4 - # ECFLOW_START="/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_start.sh" - # ECFLOW_STOP="/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_stop.sh" ECF_HOST=$(hostname) ECF_PORT="$(( $(id -u) + 1500 ))" export ECF_PORT ECF_HOST @@ -829,17 +803,12 @@ case ${MACHINE_ID} in set -x if [[ "${ROCOTO:-false}" == true ]] ; then module load contrib rocoto - # ROCOTORUN=$(command -v rocotorun) - # ROCOTOSTAT=$(command -v rocotostat) - # ROCOTOCOMPLETE=$(command -v rocotocomplete) ROCOTO_SCHEDULER="slurm" fi module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.8.4 - # ECFLOW_START="/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh" - # ECFLOW_STOP="/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_stop.sh" ECF_HOST=$(hostname) ECF_PORT="$(( $(id -u) + 1500 ))" export ECF_PORT ECF_HOST @@ -869,17 +838,11 @@ case ${MACHINE_ID} in if [[ "${ROCOTO:-false}" == true ]] ; then module load rocoto - # ROCOTORUN=$(command -v rocotorun) - # ROCOTOSTAT=$(command -v rocotostat) - # ROCOTOCOMPLETE=$(command -v rocotocomplete) ROCOTO_SCHEDULER="slurm" fi if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.11.4 - # ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh - # ECFLOW_STOP=/apps/ecflow/5.11.4/bin/ecflow_stop.sh - # export ECFLOW_START ECFLOW_STOP fi module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core @@ -901,9 +864,6 @@ case ${MACHINE_ID} in set -x if [[ "${ROCOTO:-false}" == true ]] ; then module load rocoto/1.3.2 - # ROCOTORUN=$(command -v rocotorun) - # ROCOTOSTAT=$(command -v rocotostat) - # ROCOTOCOMPLETE=$(command -v rocotocomplete) ROCOTO_SCHEDULER=slurm fi if [[ "${ECFLOW:-false}" == true ]] ; then @@ -914,8 +874,6 @@ case ${MACHINE_ID} in module use /data/prod/jedi/spack-stack/modulefiles if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.8.4 - # ECFLOW_START="/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh" - # ECFLOW_STOP="/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_stop.sh" ECF_HOST=$(hostname) ECF_PORT="$(( $(id -u) + 1500 ))" export ECF_PORT ECF_HOST @@ -949,8 +907,6 @@ case ${MACHINE_ID} in module load stack-python/3.10.8 # export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages if [[ "${ECFLOW:-false}" == true ]] ; then - # ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh - # ECFLOW_STOP=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_stop.sh ECF_HOST=$(hostname) ECF_PORT=$(( $(id -u) + 1500 )) export ECF_PORT ECF_HOST @@ -969,9 +925,6 @@ case ${MACHINE_ID} in if [[ "${ROCOTO:-false}" == true ]] ; then - # ROCOTORUN=$(command -v rocotorun) - # ROCOTOSTAT=$(command -v rocotostat) - # ROCOTOCOMPLETE=$(command -v rocotocomplete) ROCOTO_SCHEDULER="pbspro" fi ;; @@ -1018,9 +971,6 @@ case ${MACHINE_ID} in if [[ "${ROCOTO:-false}" == true ]] ; then module load rocoto/1.3.3 - # ROCOTORUN=$(command -v rocotorun) - # ROCOTOSTAT=$(command -v rocotostat) - # ROCOTOCOMPLETE=$(command -v rocotocomplete) ROCOTO_SCHEDULER=slurm fi @@ -1168,25 +1118,20 @@ fi if [[ ${ECFLOW} == true ]]; then echo "Verifying ECFLOW support..." case ${MACHINE_ID} in - wcoss2|acorn) - ECFLOW_START="$(command -v server_check.sh)" - ECFLOW_STOP="$(command -v ecflow_stop.sh)" - ;; expanse|stampede|noaacloud) die "ECFLOW not supported on this machine, please do not use '-e'." ;; *) ECFLOW_START="$(command -v ecflow_start.sh)" - ECFLOW_STOP="$(command -v ecflow_stop.sh)" ;; esac - export ECFLOW_START ECFLOW_STOP + export ECFLOW_START - export ECF_OUTPUTDIR="${PATHRT}/ecf_outputdir" - export ECF_COMDIR="${PATHRT}/ecf_comdir" - rm -rf "${ECF_OUTPUTDIR}" "${ECF_COMDIR}" - mkdir -p "${ECF_OUTPUTDIR}" - mkdir -p "${ECF_COMDIR}" + #export ECF_OUTPUTDIR="${PATHRT}/ecf_outputdir" + #export ECF_COMDIR="${PATHRT}/ecf_comdir" + #rm -rf "${ECF_OUTPUTDIR}" "${ECF_COMDIR}" + #mkdir -p "${ECF_OUTPUTDIR}" + #mkdir -p "${ECF_COMDIR}" # Default maximum number of compile and run jobs MAX_BUILDS=10 #Max build jobs MAX_JOBS=30 #Max test/run jobs diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 24f8c8d286..1d72ada3fe 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -6,6 +6,8 @@ if [[ "$0" = "${BASH_SOURCE[0]}" ]]; then exit 1 fi +ECFLOW_RUNNING=false + # Note: this file must only contain subroutines, and variables that # are not dependent on the caller. Most regression test variables # (such as ACCNR) are not set until after rt.sh sources this file. @@ -658,25 +660,30 @@ ecflow_run() { fi # Start the ecflow_server + echo "rt_utils.sh: Checking status of the ecflow_server..." set +e ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}" not_running=$? set -e if [[ ${not_running} -eq 1 ]]; then - echo "ecflow_server is NOT running on ${ECF_HOST}:${ECF_PORT}" + echo "rt_utils.sh: ecflow_server is not running on ${ECF_HOST}:${ECF_PORT}" + echo "rt_utils.sh: attempting to start ecflow_server..." - if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then - #shellcheck disable=SC2029 - ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -p ${ECF_PORT}\"" - elif [[ ${MACHINE_ID} == hera || ${MACHINE_ID} == jet ]]; then - #shellcheck disable=SC2029 - ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -d ${RUNDIR_ROOT}/ecflow_server\"" - else - ${ECFLOW_START} -p "${ECF_PORT}" -d "${RUNDIR_ROOT}/ecflow_server" - fi - echo "Since this script is starting the ecflow_server, we will stop it at the end" - export STOP_ECFLOW_AT_END=true + save_traps=$(trap) + trap "" SIGINT # Ignore INT signal during ecflow startup + case ${MACHINE_ID} in + wcoss2|acorn|hera|jet) + #shellcheck disable=SC2029 + ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -p ${ECF_PORT}\"" + ;; + *) + ${ECFLOW_START} -p "${ECF_PORT}" -d "${RUNDIR_ROOT}/ecflow_server" + ;; + esac + + ECFLOW_RUNNING=true + eval "${save_traps}" # Try pinging ecflow server now, and erroring out if not there. set +e ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}" @@ -684,25 +691,27 @@ ecflow_run() { set -e if [[ ${not_running} -eq 1 ]]; then - echo "ERROR: Failure to start ecflow, exiting..." + echo "rt_utils.sh: ERROR -- Failure to start ecflow. Exiting..." exit 1 fi else - echo "ecflow_server is already running on ${ECF_HOST}:${ECF_PORT}" + echo "rt_utils.sh: Confirmed: ecflow_server is running on ${ECF_HOST}:${ECF_PORT}" + ECFLOW_RUNNING=true fi - ECFLOW_RUNNING=true + echo "rt_utils.sh: Starting ECFLOW tasks..." set +e ecflow_client --load="${ECFLOW_RUN}/${ECFLOW_SUITE}.def" --host="${ECF_HOST}" --port="${ECF_PORT}" ecflow_client --begin="${ECFLOW_SUITE}" --host="${ECF_HOST}" --port="${ECF_PORT}" ecflow_client --restart --host="${ECF_HOST}" --port="${ECF_PORT}" set -e + sleep 10 active_tasks=1 - sleep 10 max_active_tasks=$( ecflow_client --get_state "/${ECFLOW_SUITE}" ) max_active_tasks=$( grep "task " <<< "${max_active_tasks}" ) max_active_tasks=$( grep -cP 'state:active|state:submitted|state:queued' <<< "${max_active_tasks}" ) + echo "rt_utils.sh: Total number of tasks processed -- ${max_active_tasks}" while [[ "${active_tasks}" -ne 0 ]] do sleep 10 & wait $! @@ -716,6 +725,7 @@ ecflow_run() { done sleep 65 # wait one ECF_INTERVAL plus 5 seconds + echo "rt_utils.sh: ECFLOW tasks completed, cleaning up suite" set +e ecflow_client --delete=force yes "/${ECFLOW_SUITE}" set -e @@ -723,39 +733,30 @@ ecflow_run() { } ecflow_kill() { - echo "rt_utils.sh: Killing ECFLOW Workflow..." - [[ ${ECFLOW_RUNNING:-false} == true ]] || return - set +e - ecflow_client --suspend "/${ECFLOW_SUITE}" - ecflow_client --kill "/${ECFLOW_SUITE}" - sleep 20 - ecflow_client --delete=force yes "/${ECFLOW_SUITE}" - set -e + [[ ${ECFLOW_RUNNING:-false} == true ]] || return + echo "rt_utils.sh: Deleting ECFLOW suite: ${ECFLOW_SUITE}" + set +e + ecflow_client --suspend "/${ECFLOW_SUITE}" + ecflow_client --kill "/${ECFLOW_SUITE}" + sleep 20 + ecflow_client --delete=force yes "/${ECFLOW_SUITE}" + set -e } ecflow_stop() { - echo "rt_utils.sh: Stopping ECFLOW Workflow..." [[ ${ECFLOW_RUNNING:-false} == true ]] || return + echo "rt_utils.sh: Checking whether to stop ecflow_server..." set +e SUITES=$( ecflow_client --get ) SUITES=$( grep "^suite" <<< "${SUITES}" ) - echo "SUITES=${SUITES}" if [[ -z "${SUITES}" ]]; then + echo "rt_utils.sh: No other suites running, stopping ecflow_server" ecflow_client --halt=yes ecflow_client --check_pt ecflow_client --terminate=yes - fi - if [[ ${STOP_ECFLOW_AT_END} == true ]]; then - echo "rt_utils.sh: Stopping ECFLOW Server..." - case ${MACHINE_ID} in - wcoss2|acorn|hera|jet) - #shellcheck disable=SC2029 - ssh "${ECF_HOST}" "bash -l -c \"${ECFLOW_STOP} -p ${ECF_PORT}\"" - ;; - *) - ${ECFLOW_STOP} -p "${ECF_PORT}" - ;; - esac + else + echo "rt_utils.sh: Active suites running, NOT stopping ecflow_server..." + echo "SUITES are: ${SUITES}" fi set -e } diff --git a/tests/test_changes.list b/tests/test_changes.list index 41e638ce0e..cff472391f 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,4 +1,2 @@ -control_p8_atmlnd_sbs intel -control_p8_atmlnd intel -control_restart_p8_atmlnd intel -control_p8_atmlnd_debug intel +merra2_thompson intel +atmaero_control_p8_rad_micro intel From 223b9aebf5203091ec4a7921a48ec3df59a1950c Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Tue, 7 May 2024 09:37:57 -0400 Subject: [PATCH 07/16] update inputdata for Bu angle fix; re-enable cpld C48 warmstart test (#2235) * UFSWM - update input data directory to fix CICE grid files for incorrect Bu angle, update C48 coupled warmstart files and remove 4-deg ocean files --- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 169 +++- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 584 ++++++-------- tests/logs/RegressionTests_gaea.log | 532 ++++++------- tests/logs/RegressionTests_hera.log | 743 ++++++++++-------- tests/logs/RegressionTests_hercules.log | 706 ++++++++--------- tests/logs/RegressionTests_jet.log | 474 +++++------ tests/logs/RegressionTests_orion.log | 532 ++++++------- tests/logs/RegressionTests_wcoss2.log | 458 +++++------ tests/opnReqTest | 10 +- tests/rt.conf | 66 +- tests/rt.sh | 2 +- tests/test_changes.list | 54 +- 15 files changed, 2304 insertions(+), 2106 deletions(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 40b36bd83a..26b75780f3 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240430 +export BL_DATE=20240503 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 98af0db899..e829c13338 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed May 1 16:47:10 UTC 2024 +Mon May 6 03:31:26 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/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 = 273.804433 - 0: The maximum resident set size (KB) = 1253420 + 0: The total amount of wall time = 272.641469 + 0: The maximum resident set size (KB) = 1268416 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/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 = 960.167656 - 0: The maximum resident set size (KB) = 1231384 + 0: The total amount of wall time = 939.651847 + 0: The maximum resident set size (KB) = 1254768 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 247.343877 - 0: The maximum resident set size (KB) = 1232416 + 0: The total amount of wall time = 241.788160 + 0: The maximum resident set size (KB) = 1249176 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/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 = 245.896195 - 0: The maximum resident set size (KB) = 1231104 + 0: The total amount of wall time = 244.812605 + 0: The maximum resident set size (KB) = 1246164 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 251.053244 - 0: The maximum resident set size (KB) = 1228068 + 0: The total amount of wall time = 242.401979 + 0: The maximum resident set size (KB) = 1247912 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/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 = 253.154960 - 0: The maximum resident set size (KB) = 1233000 + 0: The total amount of wall time = 245.916587 + 0: The maximum resident set size (KB) = 1245720 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/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 = 242.649383 - 0: The maximum resident set size (KB) = 1233424 + 0: The total amount of wall time = 244.965128 + 0: The maximum resident set size (KB) = 1242856 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed May 1 17:54:31 UTC 2024 -Elapsed time: 01h:07m:25s. Have a nice day! +Mon May 6 04:33:54 UTC 2024 +Elapsed time: 01h:02m:28s. 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 24258447f8..a36694bc8d 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 May 1 15:19:59 UTC 2024 +Mon May 6 21:46:21 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,159 @@ 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 = 1448.267808 - 0: The maximum resident set size (KB) = 1364020 + 0: The total amount of wall time = 1337.937513 + 0: The maximum resident set size (KB) = 1366960 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/rst_rst +Checking test rst results .... + Comparing sfcf021.tile1.nc ............MISSING file + Comparing sfcf021.tile2.nc ............MISSING file + Comparing sfcf021.tile3.nc ............MISSING file + Comparing sfcf021.tile4.nc ............MISSING file + Comparing sfcf021.tile5.nc ............MISSING file + Comparing sfcf021.tile6.nc ............MISSING file + Comparing atmf021.tile1.nc ............MISSING file + Comparing atmf021.tile2.nc ............MISSING file + Comparing atmf021.tile3.nc ............MISSING file + Comparing atmf021.tile4.nc ............MISSING file + Comparing atmf021.tile5.nc ............MISSING file + Comparing atmf021.tile6.nc ............MISSING file + Comparing sfcf024.tile1.nc ............MISSING file + Comparing sfcf024.tile2.nc ............MISSING file + Comparing sfcf024.tile3.nc ............MISSING file + Comparing sfcf024.tile4.nc ............MISSING file + Comparing sfcf024.tile5.nc ............MISSING file + Comparing sfcf024.tile6.nc ............MISSING file + Comparing atmf024.tile1.nc ............MISSING file + Comparing atmf024.tile2.nc ............MISSING file + Comparing atmf024.tile3.nc ............MISSING file + Comparing atmf024.tile4.nc ............MISSING file + Comparing atmf024.tile5.nc ............MISSING file + Comparing atmf024.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.coupler.res ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING file + Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING file + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING file + + +Test rst FAIL + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 398.324973 + 0: The maximum resident set size (KB) = 1344212 + +Test std_base PASS + +FAILED TESTS: +Test rst failed in check_result failed +OPERATION REQUIREMENT TEST FAILED +Tue May 7 00:38:15 UTC 2024 +Elapsed time: 02h:51m:56s. Have a nice day! +Tue May 7 01:53:20 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322035/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +280,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 = 444.246604 - 0: The maximum resident set size (KB) = 1359328 + 0: The total amount of wall time = 405.576010 + 0: The maximum resident set size (KB) = 1340024 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322035/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +350,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 = 448.797587 - 0: The maximum resident set size (KB) = 1359444 + 0: The total amount of wall time = 395.446701 + 0: The maximum resident set size (KB) = 1344300 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed May 1 16:30:01 UTC 2024 -Elapsed time: 01h:10m:03s. Have a nice day! +Tue May 7 02:25:02 UTC 2024 +Elapsed time: 00h:31m:43s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 653742ca0c..126227365f 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed May 1 12:44:33 UTC 2024 +Mon May 6 13:15:23 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/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 = 1265.539423 - 0: The maximum resident set size (KB) = 593464 + 0: The total amount of wall time = 1289.474304 + 0: The maximum resident set size (KB) = 591012 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/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 = 2156.871537 - 0: The maximum resident set size (KB) = 548144 + 0: The total amount of wall time = 2173.814168 + 0: The maximum resident set size (KB) = 555696 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/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 = 2145.775444 - 0: The maximum resident set size (KB) = 556196 + 0: The total amount of wall time = 2138.683822 + 0: The maximum resident set size (KB) = 555504 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/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 = 2148.252094 - 0: The maximum resident set size (KB) = 561788 + 0: The total amount of wall time = 2194.552952 + 0: The maximum resident set size (KB) = 553188 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed May 1 15:05:29 UTC 2024 -Elapsed time: 02h:20m:57s. Have a nice day! +Mon May 6 15:40:27 UTC 2024 +Elapsed time: 02h:25m:06s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 5e21b08bec..a0b92401cb 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -521f9348ebc590effdc0b5054b94946e209679d4 +74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) + 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) - cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,335 +35,271 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240430 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_24021 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_78724 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:16, 19:14] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:36, 04:51](3073 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:17, 20:26] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:59, 13:43](1692 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:06, 14:58](1825 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:59, 07:03](959 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:59, 15:42](1662 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:18, 09:05] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:40, 21:19](1695 MB) - -PASS -- COMPILE 's2swa_intel' [21:15, 19:15] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:33, 05:36](3093 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:50, 05:36](3093 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:43, 03:15](3149 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:40, 05:35](3123 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:06, 03:15](3176 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:34, 05:30](3091 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:29, 04:36](3387 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:48, 05:35](3102 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [34:45, 08:44](3638 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:02, 05:47](3613 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:16, 09:44](4343 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:29, 06:48](4650 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:19, 05:17](3067 MB) - -PASS -- COMPILE 's2sw_intel' [20:14, 18:33] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:30, 04:09](1681 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:43, 04:14](1729 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:14, 09:06] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:48, 07:37](3155 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:14, 08:33] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:29, 05:16](1703 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:15, 14:15] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:10, 04:12](1726 MB) - -PASS -- COMPILE 's2s_intel' [16:15, 14:11] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:13, 06:37](2668 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:16, 22:51] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:54, 05:28](3103 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:19, 19:18] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:57, 14:14](1705 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:07](1018 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:40, 15:59](1678 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:34] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:48, 22:58](1712 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:32] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:35, 03:23](672 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:05, 02:22](1563 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:16, 02:25](1574 MB) -PASS -- TEST 'control_latlon_intel' [07:01, 02:24](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:05, 02:24](1569 MB) -PASS -- TEST 'control_c48_intel' [15:10, 06:11](1621 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:42, 05:15](739 MB) -PASS -- TEST 'control_c192_intel' [12:43, 08:38](1684 MB) -PASS -- TEST 'control_c384_intel' [13:35, 08:49](2006 MB) -PASS -- TEST 'control_c384gdas_intel' [15:19, 07:15](1201 MB) -PASS -- TEST 'control_stochy_intel' [03:34, 01:26](625 MB) -PASS -- TEST 'control_stochy_restart_intel' [08:40, 00:52](443 MB) -PASS -- TEST 'control_lndp_intel' [12:31, 01:20](623 MB) -PASS -- TEST 'control_iovr4_intel' [13:41, 02:04](620 MB) -PASS -- TEST 'control_iovr5_intel' [12:40, 02:06](625 MB) -PASS -- TEST 'control_p8_intel' [13:30, 02:28](1604 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:26, 02:28](1608 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:22, 02:26](1601 MB) -PASS -- TEST 'control_restart_p8_intel' [03:34, 01:24](804 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:27, 02:26](1584 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:21](806 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:23, 02:33](1601 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:07, 04:23](1598 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:46, 03:16](1654 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:36, 02:30](1608 MB) -PASS -- TEST 'merra2_thompson_intel' [11:29, 02:46](1612 MB) -PASS -- TEST 'regional_control_intel' [06:02, 04:27](632 MB) -PASS -- TEST 'regional_restart_intel' [03:57, 02:29](798 MB) -PASS -- TEST 'regional_decomp_intel' [06:57, 04:44](629 MB) -PASS -- TEST 'regional_noquilt_intel' [05:56, 04:25](1158 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:06, 04:27](629 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:01, 04:29](631 MB) -PASS -- TEST 'regional_wofs_intel' [07:04, 05:36](1609 MB) - -PASS -- COMPILE 'rrfs_intel' [12:18, 11:01] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:06, 06:08](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:04, 03:40](1197 MB) -PASS -- TEST 'rap_decomp_intel' [09:11, 06:24](1008 MB) -PASS -- TEST 'rap_restart_intel' [05:19, 03:14](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:14, 06:05](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:12, 06:23](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 04:33](879 MB) -PASS -- TEST 'hrrr_control_intel' [06:12, 03:13](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:12, 03:15](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [20:26, 02:47](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:44](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:06, 05:56](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:48, 07:21](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:47, 07:06](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [16:19, 10:04] ( 6 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:00, 05:50](694 MB) -PASS -- TEST 'control_ras_intel' [04:27, 02:51](659 MB) - -PASS -- COMPILE 'wam_intel' [15:18, 09:27] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:30, 01:53](381 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:20, 12:31] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:50, 02:20](1603 MB) -PASS -- TEST 'regional_control_faster_intel' [05:58, 04:15](625 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:18, 08:22] ( 890 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:30](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:19, 02:29](1597 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:39, 02:52](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:31](797 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:08, 03:59](840 MB) -PASS -- TEST 'control_ras_debug_intel' [03:36, 02:40](808 MB) -PASS -- TEST 'control_diag_debug_intel' [04:21, 02:37](1655 MB) -PASS -- TEST 'control_debug_p8_intel' [03:58, 02:37](1628 MB) -PASS -- TEST 'regional_debug_intel' [16:58, 15:44](661 MB) -PASS -- TEST 'rap_control_debug_intel' [05:35, 04:41](1179 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:31](1175 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 04:44](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:40, 04:38](1181 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:38](1178 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:20, 04:55](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:41](1182 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 04:48](1181 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:35, 04:38](1180 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:33, 04:36](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:30](1177 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:32, 04:37](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:35](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:31, 04:38](1177 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:31, 05:25](1184 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:36, 04:35](1178 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:04, 07:55](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:19, 05:12] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:29, 04:46](420 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:14, 09:31] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:46, 03:25](1060 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:07](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:06, 02:44](884 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 02:53](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:57, 03:51](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:43, 01:31](775 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:18, 11:34] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:34, 01:50](1084 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:55](1085 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:07](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 09:40] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:06, 03:38](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:17, 05:40] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:38](1061 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:22](1057 MB) -PASS -- TEST 'conus13km_debug_intel' [15:49, 13:17](1136 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:39, 13:21](821 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:31, 13:19](1201 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:16, 05:29] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:32, 04:36](1083 MB) - -PASS -- COMPILE 'hafsw_intel' [20:19, 15:33] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:39, 04:28](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:14, 04:59](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:48, 06:19](779 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_regional_atm_wav_intel' [, ]( MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:43, 11:55](814 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 04:38](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:28, 05:40](495 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 02:18](391 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:06, 06:13](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:01, 03:15](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 03:00](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:22, 03:44](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:12](427 MB) -PASS -- TEST 'gnv1_nested_intel' [05:20, 03:18](788 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:19, 06:51] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:20, 11:57](614 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:20, 19:19] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:01](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:36, 07:10](696 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [24:20, 16:27] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:44, 05:12](676 MB) - -PASS -- COMPILE 'hafs_all_intel' [21:21, 13:50] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:35, 05:29](752 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:42, 05:30](737 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:27, 16:09](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:20, 07:36] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:28](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:30](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:23, 02:20](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:22](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:32, 02:24](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:35, 02:29](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:29](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:21](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:51, 05:38](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:32, 05:35](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:31](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:44, 03:52](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:39, 03:52](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:18, 04:53] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:01](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:18, 07:35] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:30, 02:28](750 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:06](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:01](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:38, 00:41](453 MB) - -PASS -- COMPILE 'atml_intel' [13:20, 12:49] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:42, 06:11](1639 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:38, 05:49](1632 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 03:16](850 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:18, 07:23] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:25, 05:28](1667 MB) - -PASS -- COMPILE 'atmw_intel' [13:21, 12:37] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:32](1639 MB) - -PASS -- COMPILE 'atmaero_intel' [12:19, 11:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:55, 03:35](2950 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:12](3007 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:18](3012 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:18, 06:11] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:21, 21:49](4529 MB) +PASS -- COMPILE 's2swa_32bit_intel' [28:39, 19:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:42, 04:55](3074 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:39, 21:09] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:13, 13:45](1689 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:14, 15:07](1827 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:37, 07:12](958 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [09:00, 15:49](1656 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:40, 09:33] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:48, 21:23](1708 MB) + +PASS -- COMPILE 's2swa_intel' [28:43, 19:34] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:47, 05:38](3091 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:46, 05:35](3092 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:28, 03:19](3149 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:57, 05:36](3128 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:04, 03:19](3180 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [05:37, 05:32](3090 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:37, 04:36](3390 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:56, 05:36](3104 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:24, 08:46](3633 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:06, 06:01](3614 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:36, 09:48](4345 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:22, 07:13](4651 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:34, 05:16](3069 MB) + +PASS -- COMPILE 's2sw_intel' [27:43, 19:02] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:50, 04:11](1681 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:03, 04:16](1732 MB) + +PASS -- COMPILE 's2swa_debug_intel' [18:36, 09:30] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [21:06, 07:44](3148 MB) + +PASS -- COMPILE 's2sw_debug_intel' [17:38, 08:48] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [25:42, 05:15](1707 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [23:39, 14:36] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:49, 04:16](1728 MB) + +PASS -- COMPILE 's2s_intel' [23:39, 14:33] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [28:28, 06:42](2666 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [24:30, 02:00](2683 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:13, 01:08](2123 MB) + +PASS -- COMPILE 's2swa_faster_intel' [32:44, 23:13] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:07, 05:31](3102 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:34, 19:46] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:42, 14:11](1702 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:11, 07:19](1017 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:49, 16:03](1672 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [35:33, 08:45] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:38, 22:54](1718 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:29, 12:35] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:26, 03:24](672 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 02:26](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:16, 02:28](1578 MB) +PASS -- TEST 'control_latlon_intel' [05:02, 02:23](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:19, 02:24](1574 MB) +PASS -- TEST 'control_c48_intel' [13:13, 06:13](1618 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:34, 05:15](735 MB) +PASS -- TEST 'control_c192_intel' [13:41, 08:42](1687 MB) +PASS -- TEST 'control_c384_intel' [15:38, 09:02](2006 MB) +PASS -- TEST 'control_c384gdas_intel' [15:59, 07:25](1208 MB) +PASS -- TEST 'control_stochy_intel' [03:45, 01:26](630 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 00:53](437 MB) +PASS -- TEST 'control_lndp_intel' [02:32, 01:23](625 MB) +PASS -- TEST 'control_iovr4_intel' [03:49, 02:07](622 MB) +PASS -- TEST 'control_iovr5_intel' [03:50, 02:05](625 MB) +PASS -- TEST 'control_p8_intel' [06:14, 02:28](1595 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 02:28](1595 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 02:28](1603 MB) +PASS -- TEST 'control_restart_p8_intel' [05:24, 01:30](802 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:22, 02:28](1593 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 01:28](804 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:11, 02:33](1600 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:45, 04:30](1593 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:14, 03:17](1653 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:05, 02:31](1606 MB) +PASS -- TEST 'merra2_thompson_intel' [05:43, 02:48](1604 MB) +PASS -- TEST 'regional_control_intel' [06:53, 04:35](631 MB) +PASS -- TEST 'regional_restart_intel' [06:00, 02:30](801 MB) +PASS -- TEST 'regional_decomp_intel' [06:47, 04:52](630 MB) +PASS -- TEST 'regional_noquilt_intel' [07:03, 04:36](1162 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:06, 04:36](625 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:02, 04:36](632 MB) +PASS -- TEST 'regional_wofs_intel' [08:01, 05:56](1599 MB) + +PASS -- COMPILE 'rrfs_intel' [32:29, 11:13] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:07, 06:06](1005 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:47, 03:44](1195 MB) +PASS -- TEST 'rap_decomp_intel' [09:18, 06:23](1005 MB) +PASS -- TEST 'rap_restart_intel' [05:18, 03:22](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:18, 06:05](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:13, 06:28](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:22, 04:34](881 MB) +PASS -- TEST 'hrrr_control_intel' [05:08, 03:12](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:08, 03:20](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:07, 02:47](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:51, 01:45](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:52, 06:01](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:31, 07:24](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:39, 07:07](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [31:33, 10:17] ( 6 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:59, 05:56](695 MB) +PASS -- TEST 'control_ras_intel' [04:37, 02:57](655 MB) + +PASS -- COMPILE 'wam_intel' [27:26, 09:35] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:31, 01:56](385 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [29:34, 12:35] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:21, 02:24](1604 MB) +PASS -- TEST 'regional_control_faster_intel' [06:46, 04:18](626 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [25:26, 08:32] ( 890 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:04, 02:31](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:05, 02:27](1594 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:14, 02:55](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:15, 02:34](800 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:00, 03:55](840 MB) +PASS -- TEST 'control_ras_debug_intel' [06:14, 02:35](811 MB) +PASS -- TEST 'control_diag_debug_intel' [09:08, 02:35](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [08:01, 02:38](1623 MB) +PASS -- TEST 'regional_debug_intel' [19:02, 16:05](664 MB) +PASS -- TEST 'rap_control_debug_intel' [08:35, 04:39](1180 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:30, 04:36](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:30, 04:37](1182 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 04:38](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:38, 04:42](1181 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:06, 04:53](1268 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:37, 04:46](1182 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:37, 04:50](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:43, 04:38](1185 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:40, 04:40](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:39, 04:31](1178 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:38, 04:44](1183 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 07:32](1181 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:37, 04:34](1177 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 05:23](1185 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:44, 04:43](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:01, 07:54](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [20:30, 05:21] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:25, 04:40](425 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [22:34, 09:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:34, 03:44](1062 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:02, 05:08](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:58, 02:47](882 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:56, 02:54](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:51](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:32](780 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:14, 11:34] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:29, 01:53](1087 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:42, 00:58](1087 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:31, 01:07](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 09:37] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:55, 03:38](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 05:43] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:30, 04:29](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 04:25](1056 MB) +PASS -- TEST 'conus13km_debug_intel' [17:54, 13:17](1136 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:53, 13:25](819 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:50, 13:18](1202 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:14, 05:22] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:36](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [18:18, 15:43] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:29, 04:32](718 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 05:04](1067 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:42, 06:26](777 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:30, 10:53](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:51, 12:03](812 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:20, 04:40](475 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:46, 05:45](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:09, 02:21](391 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:47, 06:15](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:19](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:26, 03:05](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:30, 03:47](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:16](426 MB) +PASS -- TEST 'gnv1_nested_intel' [06:17, 03:23](792 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [21:23, 07:08] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:26, 12:07](613 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [32:21, 19:19] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:32, 07:03](626 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:51, 07:10](691 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [27:20, 16:31] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:26, 05:17](676 MB) + +PASS -- COMPILE 'hafs_all_intel' [25:24, 14:04] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:31, 05:34](760 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:29, 05:35](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:20, 16:12](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 07:44] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:32, 02:30](747 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:37, 01:34](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:28, 02:22](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:37, 02:23](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:35, 02:23](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:36, 02:29](748 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:37, 02:29](762 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:41, 02:22](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:46, 05:42](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:34, 05:41](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:29](748 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 03:52](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:32, 03:57](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 05:02] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:33, 05:03](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:19, 07:45] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:29, 02:30](760 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:12, 02:19] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:43, 01:08](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 01:04](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:44](451 MB) + +PASS -- COMPILE 'atml_intel' [17:13, 12:54] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:00, 06:02](1641 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:46, 06:17](1635 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:03, 03:16](851 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:19, 07:33] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 05:29](1665 MB) + +PASS -- COMPILE 'atmw_intel' [16:20, 12:40] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:35, 01:33](1637 MB) + +PASS -- COMPILE 'atmaero_intel' [14:13, 11:05] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:35, 03:36](2950 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:43, 04:13](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 04:19](3010 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:13, 06:12] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:24, 22:12](4531 MB) SYNOPSIS: -Starting Date/Time: 20240430 21:59:35 -Ending Date/Time: 20240430 23:38:01 -Total Time: 01h:39m:15s +Starting Date/Time: 20240506 14:49:48 +Ending Date/Time: 20240506 19:49:44 +Total Time: 05h:00m:44s Compiles Completed: 38/38 -Tests Completed: 172/173 -Failed Tests: -* TEST hafs_regional_atm_wav_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2221/tests/logs/log_derecho/run_hafs_regional_atm_wav_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -521f9348ebc590effdc0b5054b94946e209679d4 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) - cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240430 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_43701 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'hafsw_intel' [16:15, 15:49] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:12, 10:53](799 MB) - -SYNOPSIS: -Starting Date/Time: 20240501 07:00:20 -Ending Date/Time: 20240501 07:31:08 -Total Time: 00h:30m:58s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 175/175 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 8384cf2789..5c860d155e 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -521f9348ebc590effdc0b5054b94946e209679d4 +74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) + 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) - cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,276 +35,278 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240430 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_5026 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240503 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_241906 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:14, 18:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:03, 07:31](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:14, 22:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:41, 13:59](1685 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:42, 14:15](1808 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:13, 07:08](945 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:04, 15:03](1668 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:20] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:47, 23:42](1707 MB) - -PASS -- COMPILE 's2swa_intel' [19:14, 18:30] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:08, 07:49](3096 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 07:56](3096 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:12, 04:51](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:08, 07:58](3121 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 04:57](3174 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:03, 07:14](3413 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:03, 07:55](3096 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:00, 07:21](3019 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:09, 07:58](3097 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:57, 10:26](3266 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 07:36](3601 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:28, 12:57](4036 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:53, 09:05](4342 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:55, 07:40](3065 MB) - -PASS -- COMPILE 's2sw_intel' [16:12, 15:58] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:54, 04:49](1685 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:54, 05:17](1730 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:15] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:30, 10:28](3129 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:12, 11:02] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:10, 05:57](1700 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:12, 15:20] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 05:09](1725 MB) - -PASS -- COMPILE 's2s_intel' [15:12, 15:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:58, 06:53](2663 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:14, 21:38] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:32, 07:42](3101 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:15, 23:34] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:43, 14:53](1701 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:38, 07:23](1000 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:40, 17:11](1682 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:14, 14:39] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:35, 26:23](1718 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:16, 16:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:33, 03:41](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 03:04](1568 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:23, 03:08](1580 MB) -PASS -- TEST 'control_latlon_intel' [04:07, 03:01](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:17, 03:03](1568 MB) -PASS -- TEST 'control_c48_intel' [08:42, 06:35](1601 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:01, 05:39](722 MB) -PASS -- TEST 'control_c192_intel' [11:13, 09:52](1683 MB) -PASS -- TEST 'control_c384_intel' [19:28, 18:11](1984 MB) -PASS -- TEST 'control_c384gdas_intel' [16:56, 14:14](1186 MB) -PASS -- TEST 'control_stochy_intel' [03:32, 02:14](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:31, 01:01](430 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 02:20](628 MB) -PASS -- TEST 'control_iovr4_intel' [03:37, 02:50](623 MB) -PASS -- TEST 'control_iovr5_intel' [03:44, 02:56](623 MB) -PASS -- TEST 'control_p8_intel' [05:42, 03:42](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 03:33](1608 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:25](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [03:10, 01:51](790 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:16](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:14, 02:04](792 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:00, 03:28](1595 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:41](1684 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:03, 05:19](1606 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:11](1657 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:23](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [05:29, 03:40](1604 MB) -PASS -- TEST 'regional_control_intel' [06:14, 04:56](615 MB) -PASS -- TEST 'regional_restart_intel' [04:47, 03:21](789 MB) -PASS -- TEST 'regional_decomp_intel' [06:09, 05:00](615 MB) -PASS -- TEST 'regional_2threads_intel' [04:06, 03:04](765 MB) -PASS -- TEST 'regional_noquilt_intel' [06:11, 04:38](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:20, 04:40](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:07, 04:39](615 MB) -PASS -- TEST 'regional_wofs_intel' [08:07, 06:11](1590 MB) - -PASS -- COMPILE 'rrfs_intel' [15:15, 14:56] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:22, 06:38](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:08, 03:56](1184 MB) -PASS -- TEST 'rap_decomp_intel' [08:23, 06:59](1009 MB) -PASS -- TEST 'rap_2threads_intel' [08:02, 06:02](1097 MB) -PASS -- TEST 'rap_restart_intel' [05:23, 03:39](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:23, 06:55](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:42, 07:15](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:01, 05:22](879 MB) -PASS -- TEST 'hrrr_control_intel' [05:14, 03:43](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:14, 03:48](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:13, 03:04](1081 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:47, 01:55](837 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:23, 06:56](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 08:05](1967 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:50, 07:42](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [15:16, 14:35] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:44, 06:35](696 MB) -PASS -- TEST 'control_ras_intel' [05:33, 03:24](655 MB) - -PASS -- COMPILE 'wam_intel' [15:12, 14:18] -PASS -- TEST 'control_wam_intel' [03:30, 02:08](370 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:13, 15:44] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:08, 03:12](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [05:41, 04:41](614 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:14, 11:56] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:02, 02:53](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:35, 02:56](1589 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:45, 03:08](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:59, 02:53](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:39, 04:40](824 MB) -PASS -- TEST 'control_ras_debug_intel' [03:43, 02:52](794 MB) -PASS -- TEST 'control_diag_debug_intel' [04:46, 03:35](1640 MB) -PASS -- TEST 'control_debug_p8_intel' [04:47, 03:50](1618 MB) -PASS -- TEST 'regional_debug_intel' [17:50, 16:30](633 MB) -PASS -- TEST 'rap_control_debug_intel' [06:36, 05:36](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:36, 05:24](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 05:25](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 05:32](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:23](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:05, 05:18](1251 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:35, 05:18](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:06](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:03](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:32, 05:00](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:54](1166 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:32, 04:59](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:09, 07:51](1165 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:29, 04:55](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 05:49](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:31, 05:00](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:06, 08:35](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:14, 08:44] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:30, 04:55](396 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:17, 12:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:46](1048 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:01, 05:50](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 03:22](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 05:16](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:02, 02:47](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 03:27](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:02, 04:19](783 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 01:47](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:01, 02:02](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:08, 01:16](1074 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:07, 01:38](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 13:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:16, 04:23](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:13, 10:17] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:42, 04:53](1047 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:37, 04:52](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [15:50, 14:10](1130 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:24](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:16](1109 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:11](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 09:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 04:56](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [18:13, 17:32] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:22](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:41, 04:35](1057 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:37, 07:48](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:52, 11:42](788 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:42, 12:30](804 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 05:19](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 06:50](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:19, 02:56](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:35, 07:58](433 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 04:30](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:13, 03:38](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:14, 04:40](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:44](401 MB) -PASS -- TEST 'gnv1_nested_intel' [05:22, 04:04](769 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:16, 12:24] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:06, 12:57](586 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:15, 20:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:09, 07:49](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:04, 07:43](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:13, 19:52] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:08, 06:04](790 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:12, 17:06] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:59, 06:12](745 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:23, 06:05](731 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:14, 20:04](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:22, 13:22] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:35](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:36](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:25](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:31](637 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:30](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:25, 02:34](759 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:34](758 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:24](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:58, 05:53](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:58, 06:02](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:36](758 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 04:35](2014 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:31, 04:36](2013 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:50] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:24](744 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 12:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:58, 02:33](758 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 05:19] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:52, 01:54](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:48, 01:28](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:06, 01:02](456 MB) - -PASS -- COMPILE 'atml_intel' [17:14, 16:49] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:45, 08:02](1633 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:41, 08:01](1632 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:40](837 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:15, 13:37] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 07:02](1651 MB) - -PASS -- COMPILE 'atmw_intel' [15:15, 14:29] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:48](1648 MB) - -PASS -- COMPILE 'atmaero_intel' [14:13, 13:41] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:20, 06:38](2948 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:15, 07:09](3012 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:07, 07:15](3020 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:12, 11:03] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:29, 19:17](4477 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:59, 08:57](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:15, 25:24] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:34, 13:49](1685 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:13, 14:34](1808 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [22:49, 07:07](945 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:24, 15:10](1669 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:11, 14:48] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:26, 24:04](1707 MB) + +PASS -- COMPILE 's2swa_intel' [55:13, 54:16] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:01, 07:51](3097 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:00, 07:50](3096 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:48, 05:13](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 08:06](3121 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:43, 05:22](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:30, 06:35](3407 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:42, 07:44](3097 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:36, 07:06](3021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:00, 07:56](3098 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:43, 10:54](3267 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:40, 07:19](3600 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:03, 13:10](4035 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:13, 09:03](4340 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:38, 07:58](3065 MB) + +PASS -- COMPILE 's2sw_intel' [20:11, 19:43] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 05:28](1686 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:05, 05:44](1730 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:11, 14:21] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:45, 10:34](3129 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:11, 13:41] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 06:08](1701 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:11, 17:18] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 05:30](1725 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 16:30] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:26, 06:55](2663 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:35, 02:10](2685 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:10, 01:04](2116 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:14, 24:26] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:30, 08:01](3102 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:11, 24:50] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:37, 14:50](1702 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:37](1000 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:06, 17:09](1682 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 15:11] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:27, 26:59](1718 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:13, 17:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:18, 03:40](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:32, 03:01](1568 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:52, 03:29](1580 MB) +PASS -- TEST 'control_latlon_intel' [13:43, 04:03](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:51, 04:01](1569 MB) +PASS -- TEST 'control_c48_intel' [22:15, 06:36](1604 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:27, 05:39](722 MB) +PASS -- TEST 'control_c192_intel' [33:06, 09:44](1682 MB) +PASS -- TEST 'control_c384_intel' [41:19, 18:03](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [30:09, 14:07](1187 MB) +PASS -- TEST 'control_stochy_intel' [05:42, 01:53](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [18:32, 01:02](430 MB) +PASS -- TEST 'control_lndp_intel' [07:52, 01:46](628 MB) +PASS -- TEST 'control_iovr4_intel' [10:17, 02:34](623 MB) +PASS -- TEST 'control_iovr5_intel' [10:17, 02:28](623 MB) +PASS -- TEST 'control_p8_intel' [27:16, 03:37](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [26:35, 03:27](1607 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [26:17, 03:25](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [04:21, 02:12](789 MB) +PASS -- TEST 'control_noqr_p8_intel' [26:05, 03:31](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:15, 02:16](793 MB) +PASS -- TEST 'control_decomp_p8_intel' [21:08, 03:20](1596 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:30, 02:38](1679 MB) +PASS -- TEST 'control_p8_lndp_intel' [27:58, 05:17](1606 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [27:20, 04:12](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [14:15, 03:49](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [11:14, 03:56](1604 MB) +PASS -- TEST 'regional_control_intel' [06:25, 04:45](615 MB) +PASS -- TEST 'regional_restart_intel' [03:36, 02:35](789 MB) +PASS -- TEST 'regional_decomp_intel' [05:46, 04:57](615 MB) +PASS -- TEST 'regional_2threads_intel' [04:43, 03:14](767 MB) +PASS -- TEST 'regional_noquilt_intel' [05:44, 04:43](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:55, 04:49](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:47, 04:58](615 MB) +PASS -- TEST 'regional_wofs_intel' [19:46, 06:16](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [16:13, 15:21] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [20:10, 06:52](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:16, 04:00](1183 MB) +PASS -- TEST 'rap_decomp_intel' [21:16, 07:20](1009 MB) +PASS -- TEST 'rap_2threads_intel' [20:12, 06:11](1093 MB) +PASS -- TEST 'rap_restart_intel' [06:14, 03:36](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [20:21, 06:55](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:13, 07:23](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:14, 05:04](879 MB) +PASS -- TEST 'hrrr_control_intel' [15:12, 03:56](1005 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [16:03, 04:06](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [14:01, 03:03](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:36, 02:24](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:15, 06:41](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [16:40, 08:14](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:35, 08:00](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [16:12, 15:30] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:41, 06:40](695 MB) +PASS -- TEST 'control_ras_intel' [06:33, 03:47](658 MB) + +PASS -- COMPILE 'wam_intel' [16:12, 15:13] +PASS -- TEST 'control_wam_intel' [05:26, 02:36](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:11, 17:14] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:16, 03:51](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [06:51, 04:40](615 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:37] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:03, 03:01](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:02, 02:56](1589 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:23](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:31, 02:52](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:15](825 MB) +PASS -- TEST 'control_ras_debug_intel' [04:29, 02:54](794 MB) +PASS -- TEST 'control_diag_debug_intel' [03:54, 03:01](1640 MB) +PASS -- TEST 'control_debug_p8_intel' [04:49, 03:18](1618 MB) +PASS -- TEST 'regional_debug_intel' [17:49, 16:25](633 MB) +PASS -- TEST 'rap_control_debug_intel' [05:33, 05:05](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:31, 05:02](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 05:13](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:34, 05:05](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:37, 05:02](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:41, 05:17](1251 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:14](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:34, 05:08](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:33, 05:12](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:10](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:34, 04:54](1166 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 05:06](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:49](1169 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:29, 04:55](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:34, 06:00](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:39, 05:08](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:01, 08:39](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:10, 08:47] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:36, 04:57](397 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:11, 15:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:08, 03:54](1053 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:53](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:36](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:49, 05:13](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:02, 02:46](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 03:29](887 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:56, 04:07](784 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:29, 01:51](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:15, 13:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:59, 02:19](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:48, 01:04](1075 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:37, 01:32](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 13:16] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:57, 04:22](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:16, 09:14] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 04:54](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 04:52](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [15:47, 14:06](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:54, 14:03](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:45, 08:05](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:37, 14:00](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 09:34] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:42, 05:07](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 15:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:15](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 04:31](1059 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:33](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:14, 11:40](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:27, 12:53](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:09, 05:18](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:24, 06:43](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:07, 02:57](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:01, 08:17](432 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:54, 03:55](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:10, 03:30](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:03, 04:41](568 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:42, 01:43](402 MB) +PASS -- TEST 'gnv1_nested_intel' [08:17, 04:10](765 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:11, 11:21] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:02, 12:59](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:11, 19:26] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 07:42](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 07:50](787 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 17:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:38, 05:58](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 14:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:29, 06:08](749 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:22, 06:05](732 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:06, 20:11](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 11:16] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:28, 02:36](745 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:57, 01:36](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:28, 02:28](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:26, 02:28](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 02:30](637 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:34](758 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 02:37](758 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 02:26](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 06:05](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:50, 06:01](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:40, 02:34](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:58, 04:35](2013 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:52, 04:38](2013 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 07:00] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 05:23](743 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:10] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 02:35](745 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 03:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:12, 01:56](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:44, 02:39](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:44, 00:56](456 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 14:10] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:50, 07:56](1633 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:54, 07:56](1633 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:41, 03:35](837 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:11, 09:11] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:38, 06:37](1648 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 13:03] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:11, 02:31](1650 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 12:21] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:32, 06:20](2946 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:25, 06:29](3012 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:13, 06:26](3020 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:11, 12:46] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:58, 18:30](4483 MB) SYNOPSIS: -Starting Date/Time: 20240501 02:23:40 -Ending Date/Time: 20240501 03:51:13 -Total Time: 01h:29m:01s +Starting Date/Time: 20240506 10:57:09 +Ending Date/Time: 20240506 12:53:05 +Total Time: 01h:56m:51s Compiles Completed: 38/38 -Tests Completed: 180/180 +Tests Completed: 182/182 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index bc07a8a85e..4b8a404edc 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -521f9348ebc590effdc0b5054b94946e209679d4 +74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) + 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) @@ -24,368 +24,425 @@ 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-20240430 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1718044 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1490583 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:41] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:11, 05:32](3187 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 17:29] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:58, 17:04](1748 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:08, 18:17](2004 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 08:03](1131 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 19:14](1652 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:48] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:05, 22:41](1664 MB) - -PASS -- COMPILE 's2swa_intel' [13:12, 13:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:19, 05:53](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:28, 05:50](3226 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:19, 03:25](3254 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:18, 05:49](3243 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:17, 03:26](3284 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:14, 05:32](3551 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:14, 05:51](3215 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:20, 04:42](3077 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:51](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:11, 10:09](3350 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 06:10](3621 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:51, 09:37](4166 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:00, 05:58](4349 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:18, 05:30](3182 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 12:41] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:13, 04:44](1744 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:20, 04:21](1788 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:48] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:13, 08:25](3254 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:45] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:02, 05:50](1726 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:07, 04:19](1788 MB) - -PASS -- COMPILE 's2s_intel' [12:11, 11:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:41, 09:23](2836 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:12, 17:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:16, 05:32](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 17:13](1772 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:11, 08:04](1174 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:01, 19:46](1677 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:27] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 25:06](1725 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:12] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:22, 03:25](701 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:51, 02:58](1607 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:03](1609 MB) -PASS -- TEST 'control_latlon_intel' [06:48, 02:54](1596 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:55, 02:58](1597 MB) -PASS -- TEST 'control_c48_intel' [10:50, 07:38](1751 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:27, 06:24](871 MB) -PASS -- TEST 'control_c192_intel' [14:11, 10:31](1747 MB) -PASS -- TEST 'control_c384_intel' [14:13, 10:33](2013 MB) -PASS -- TEST 'control_c384gdas_intel' [13:40, 07:58](1401 MB) -PASS -- TEST 'control_stochy_intel' [04:22, 01:38](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:05](506 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:34](659 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:28](652 MB) -PASS -- TEST 'control_iovr5_intel' [03:22, 02:29](654 MB) -PASS -- TEST 'control_p8_intel' [03:58, 03:00](1635 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:59, 02:57](1633 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:50, 02:51](1629 MB) -PASS -- TEST 'control_restart_p8_intel' [02:45, 01:36](895 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:48, 02:55](1621 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:51, 01:36](937 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:48, 03:00](1624 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:47](1714 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:18](1628 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:49, 03:55](1688 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:54, 02:57](1638 MB) -PASS -- TEST 'merra2_thompson_intel' [04:51, 03:18](1650 MB) -PASS -- TEST 'regional_control_intel' [06:40, 05:10](847 MB) -PASS -- TEST 'regional_restart_intel' [03:41, 02:43](1019 MB) -PASS -- TEST 'regional_decomp_intel' [06:38, 05:33](852 MB) -PASS -- TEST 'regional_2threads_intel' [04:39, 03:14](843 MB) -PASS -- TEST 'regional_noquilt_intel' [06:42, 05:09](1357 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:12](859 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 05:07](849 MB) -PASS -- TEST 'regional_wofs_intel' [07:38, 06:41](1912 MB) - -PASS -- COMPILE 'rrfs_intel' [11:14, 10:35] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:40, 07:41](1106 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:08](1286 MB) -PASS -- TEST 'rap_decomp_intel' [08:36, 08:07](1046 MB) -PASS -- TEST 'rap_2threads_intel' [08:36, 07:15](1193 MB) -PASS -- TEST 'rap_restart_intel' [04:41, 04:01](1109 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:38, 07:42](1107 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:38, 08:09](1037 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:39, 05:50](1136 MB) -PASS -- TEST 'hrrr_control_intel' [04:38, 03:59](1040 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:32, 04:07](1032 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:33, 03:41](1110 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:09](1011 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:40](1107 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:12](2001 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2060 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:43] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:37, 06:00](749 MB) -PASS -- TEST 'control_ras_intel' [04:20, 03:16](751 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 03:47] -PASS -- TEST 'control_csawmg_gnu' [09:41, 08:25](549 MB) - -PASS -- COMPILE 'wam_intel' [10:12, 09:54] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [02:24, 02:05](654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:56, 02:39](1639 MB) -PASS -- TEST 'regional_control_faster_intel' [05:44, 04:45](832 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:16] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:34](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:50, 02:32](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:01](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:45](823 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:39, 04:08](864 MB) -PASS -- TEST 'control_ras_debug_intel' [03:22, 02:43](828 MB) -PASS -- TEST 'control_diag_debug_intel' [03:48, 02:44](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [03:45, 02:48](1654 MB) -PASS -- TEST 'regional_debug_intel' [18:39, 17:19](848 MB) -PASS -- TEST 'rap_control_debug_intel' [05:23, 04:51](1214 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:46](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:54](1212 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:49](1210 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 04:50](1208 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:33, 05:05](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 04:54](1215 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:52](1210 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:22, 04:54](1210 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:54](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:41](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:59](1213 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:53](1205 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 04:53](1202 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 05:56](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:23, 04:55](1213 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:38, 08:19](1211 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:39] -PASS -- TEST 'control_csawmg_debug_gnu' [05:42, 02:12](530 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:11] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [08:23, 05:03](522 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 10:11] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:59, 03:51](1165 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:36, 06:24](1030 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:29, 03:23](993 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:33, 06:03](1090 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:37, 03:07](965 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:30, 03:35](923 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:50](1034 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:51](940 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:19] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:50, 02:11](1174 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:41, 00:55](1122 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:42, 01:19](1106 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:05] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 04:09](993 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:28] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:48](1095 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:43](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [15:51, 14:16](1235 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 13:56](934 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:04](1158 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 14:23](1299 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:16] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:52](1124 MB) - -PASS -- COMPILE 'hafsw_intel' [12:11, 11:39] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:16, 04:52](742 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:30, 05:47](1114 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 06:49](810 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:19](863 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 15:13](877 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:27](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 06:34](521 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:40, 02:40](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:36, 07:10](476 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:38](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:49, 03:29](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:04](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:10](405 MB) -PASS -- TEST 'gnv1_nested_intel' [07:43, 04:05](801 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:18] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:49, 12:43](573 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 12:09] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:56, 08:41](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:05, 08:45](749 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:10] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 06:21](704 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:47] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:21](832 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:20, 06:23](819 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:02](1217 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:09] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:46](1174 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1099 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:35](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:42](1014 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:42](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:40](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:41](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:36](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:12](1062 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:16, 06:31](1047 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:41](1152 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:49](2445 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:49](2501 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:10](1069 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 05:53] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:37](1167 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:46](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:52](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:31](325 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 11:59] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:06](1621 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:00, 04:08](1597 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:11](904 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:17] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 05:40](1631 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 10:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:44](1664 MB) - -PASS -- COMPILE 'atmaero_intel' [11:12, 10:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:03, 04:01](2959 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:50](3097 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:56](3111 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:31] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:56, 20:56](4445 MB) - -PASS -- COMPILE 'atm_gnu' [04:11, 03:56] -PASS -- TEST 'control_c48_gnu' [12:43, 11:11](1544 MB) -PASS -- TEST 'control_stochy_gnu' [04:23, 03:20](507 MB) -PASS -- TEST 'control_ras_gnu' [06:22, 04:47](516 MB) -PASS -- TEST 'control_p8_gnu' [06:59, 04:35](1265 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:35](1268 MB) -PASS -- TEST 'control_flake_gnu' [11:23, 10:32](552 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:12, 03:39] -PASS -- TEST 'rap_control_gnu' [12:32, 10:46](860 MB) -PASS -- TEST 'rap_decomp_gnu' [13:33, 10:54](858 MB) -PASS -- TEST 'rap_2threads_gnu' [11:39, 09:45](948 MB) -PASS -- TEST 'rap_restart_gnu' [06:40, 05:29](591 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:37, 10:44](858 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:37, 10:53](857 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:40, 07:59](586 MB) -PASS -- TEST 'hrrr_control_gnu' [06:37, 05:34](857 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:40](845 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:33, 04:59](936 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:33](857 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:54](571 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:51](664 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:45, 10:40](855 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:10, 03:47] -PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:40](1288 MB) -PASS -- TEST 'regional_debug_gnu' [12:42, 10:02](567 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:37](871 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:32](872 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:37](875 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:35](880 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:32, 03:18](945 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 03:59](876 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 02:38](872 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:33](868 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:32](503 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:44](499 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:38](1260 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:32](874 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:47](880 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:36, 04:17](877 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:13] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 05:32](3185 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 17:18] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:04, 17:05](1752 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 17:57](2031 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:15, 08:10](1122 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 19:20](1642 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:14] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:07, 22:36](1699 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 13:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:20, 05:48](3199 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:36, 06:13](3195 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:35, 03:30](3255 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:56](3238 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:33, 03:32](3254 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:19, 05:33](3559 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:18, 05:45](3224 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:19, 04:45](3059 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:35, 06:23](3228 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:26, 10:12](3340 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 06:28](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:13, 10:08](4144 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:33, 06:24](4369 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:24, 05:25](3168 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 12:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:46](1744 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:12, 04:17](1787 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:49] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:05, 08:30](3250 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:30] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:58, 05:43](1759 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:22](1794 MB) + +PASS -- COMPILE 's2s_intel' [12:12, 11:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:49, 09:23](2831 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:35](2834 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:48, 01:25](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:19, 05:33](3199 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:18, 17:20](1786 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:23, 08:06](1177 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:05, 19:44](1646 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:24] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 25:08](1709 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:14] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:25, 03:32](705 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:57](1604 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:56, 03:02](1606 MB) +PASS -- TEST 'control_latlon_intel' [04:47, 02:55](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:52, 03:01](1601 MB) +PASS -- TEST 'control_c48_intel' [08:51, 07:41](1756 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:25](880 MB) +PASS -- TEST 'control_c192_intel' [12:04, 10:41](1750 MB) +PASS -- TEST 'control_c384_intel' [13:00, 10:44](2004 MB) +PASS -- TEST 'control_c384gdas_intel' [11:55, 08:07](1398 MB) +PASS -- TEST 'control_stochy_intel' [02:23, 01:42](665 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:34, 01:01](500 MB) +PASS -- TEST 'control_lndp_intel' [02:23, 01:36](660 MB) +PASS -- TEST 'control_iovr4_intel' [03:33, 02:34](654 MB) +PASS -- TEST 'control_iovr5_intel' [03:25, 02:33](655 MB) +PASS -- TEST 'control_p8_intel' [04:00, 03:02](1635 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:05, 03:01](1603 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:56](1632 MB) +PASS -- TEST 'control_restart_p8_intel' [02:54, 01:36](889 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:01, 02:56](1583 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:58, 01:37](938 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:00, 03:04](1614 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:57, 02:47](1715 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:58, 05:17](1626 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:01, 04:04](1689 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:59, 03:05](1639 MB) +PASS -- TEST 'merra2_thompson_intel' [04:56, 03:19](1628 MB) +PASS -- TEST 'regional_control_intel' [06:41, 05:14](847 MB) +PASS -- TEST 'regional_restart_intel' [03:42, 02:45](1018 MB) +PASS -- TEST 'regional_decomp_intel' [06:42, 05:32](849 MB) +PASS -- TEST 'regional_2threads_intel' [04:43, 03:16](842 MB) +PASS -- TEST 'regional_noquilt_intel' [06:38, 05:09](1360 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 05:10](854 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:39, 05:14](848 MB) +PASS -- TEST 'regional_wofs_intel' [07:44, 06:49](1912 MB) + +PASS -- COMPILE 'rrfs_intel' [11:13, 10:45] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:44, 07:47](1114 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:13](1296 MB) +PASS -- TEST 'rap_decomp_intel' [08:38, 08:07](1035 MB) +PASS -- TEST 'rap_2threads_intel' [08:36, 07:26](1185 MB) +PASS -- TEST 'rap_restart_intel' [04:51, 04:03](1110 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:38, 07:44](1111 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 08:08](1044 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:43, 05:52](1126 MB) +PASS -- TEST 'hrrr_control_intel' [04:40, 04:01](1035 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 04:07](1037 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:36, 03:40](1104 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:10](1006 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:45, 07:37](1098 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:24](1984 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2070 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 10:32] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:43, 05:59](755 MB) +PASS -- TEST 'control_ras_intel' [04:23, 03:15](748 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:11, 03:36] +PASS -- TEST 'control_csawmg_gnu' [09:44, 08:27](548 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 10:08] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [02:26, 02:04](657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:12, 10:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:56, 02:37](1639 MB) +PASS -- TEST 'regional_control_faster_intel' [05:40, 04:41](853 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 04:48] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:46, 02:36](1621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:32](1617 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:23, 02:59](822 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:45](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:42, 04:06](868 MB) +PASS -- TEST 'control_ras_debug_intel' [03:23, 02:46](827 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:39](1679 MB) +PASS -- TEST 'control_debug_p8_intel' [03:44, 02:49](1649 MB) +PASS -- TEST 'regional_debug_intel' [18:40, 17:17](826 MB) +PASS -- TEST 'rap_control_debug_intel' [05:23, 04:55](1208 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:44](1208 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:45](1214 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:59](1212 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:53](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:40, 05:08](1291 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1210 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:59](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:56](1205 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:47](1208 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:50](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:54](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 07:55](1210 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:50](1207 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:53](1208 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:57](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:38, 08:27](1188 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:35] +PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:23](528 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:21] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:23, 05:14](517 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:19] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 04:17](1164 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:25](1058 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 03:23](984 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 06:11](1081 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 03:09](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:32, 03:36](943 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:40, 04:51](1031 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 01:53](935 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:38] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:53, 02:05](1198 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:44, 00:55](1124 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 01:15](1118 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:19] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:38, 04:09](991 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:55] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:51](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:41](1081 MB) +PASS -- TEST 'conus13km_debug_intel' [15:55, 14:34](1233 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:27](930 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:11](1159 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 14:34](1300 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:37] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:07](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [12:15, 11:59] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:19, 04:55](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:36, 05:54](1125 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:22, 06:56](839 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:26](859 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 15:10](874 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:51, 05:32](501 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:47](519 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:44](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:01, 07:09](481 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:42, 03:41](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:46, 03:30](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:51, 04:03](593 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:26, 01:13](407 MB) +PASS -- TEST 'gnv1_nested_intel' [05:40, 04:09](801 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:08] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:50, 12:47](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:12, 12:14] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:42](637 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:03, 08:49](747 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 12:08] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:01, 06:22](744 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:14, 11:22] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:23](835 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:15, 06:26](825 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:10](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:11, 06:06] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:40](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:38](1092 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:33](1022 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 02:38](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:34](1008 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:35](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:41](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:16, 02:38](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:10](1061 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:15, 06:16](1042 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:46](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:53](2487 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:50](2511 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:12, 02:56] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:20](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:44] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:44](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:49](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:31](327 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 12:11] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:01, 04:15](1608 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:59, 04:08](1611 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:18](902 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:20] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:54, 05:29](1627 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:42](1670 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 11:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:00, 04:02](3042 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 05:15](3067 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:56](3112 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:29] ( 885 warnings 6 remarks ) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB) + +PASS -- COMPILE 'atm_gnu' [04:10, 03:44] +PASS -- TEST 'control_c48_gnu' [11:43, 11:03](1543 MB) +PASS -- TEST 'control_stochy_gnu' [04:23, 03:24](506 MB) +PASS -- TEST 'control_ras_gnu' [05:20, 04:43](518 MB) +PASS -- TEST 'control_p8_gnu' [05:58, 04:38](1264 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:31](1275 MB) +PASS -- TEST 'control_flake_gnu' [11:22, 10:25](553 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:11, 03:49] +PASS -- TEST 'rap_control_gnu' [11:32, 10:40](857 MB) +PASS -- TEST 'rap_decomp_gnu' [11:32, 10:45](860 MB) +PASS -- TEST 'rap_2threads_gnu' [10:39, 09:46](945 MB) +PASS -- TEST 'rap_restart_gnu' [06:40, 05:33](585 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:45](858 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:35, 10:59](861 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:41, 08:05](588 MB) +PASS -- TEST 'hrrr_control_gnu' [06:36, 05:38](858 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:37](842 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:33, 05:11](937 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:35](861 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:28, 02:52](569 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:48](665 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:41, 10:36](855 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:44] +PASS -- TEST 'control_diag_debug_gnu' [02:48, 01:38](1290 MB) +PASS -- TEST 'regional_debug_gnu' [11:41, 10:39](568 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:22, 02:39](869 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:20, 02:38](872 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:20, 02:35](877 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:20, 02:36](880 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:54](955 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 03:59](872 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:36](871 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:36](874 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:31](506 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:44](496 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:43, 01:39](1261 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:35](872 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:23, 02:48](875 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:15](880 MB) PASS -- COMPILE 'wam_debug_gnu' [02:10, 01:52] -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:34] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:32](712 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 05:01](714 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:34, 08:35](764 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:30](754 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:01](713 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:36, 07:00](557 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:24, 02:30](548 MB) -PASS -- TEST 'conus13km_control_gnu' [03:52, 03:08](886 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:41, 05:29](888 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:42, 01:46](578 MB) +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:38] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:25](717 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 05:02](713 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:33](767 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 04:31](756 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:34, 05:00](716 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:35, 06:58](559 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 02:32](550 MB) +PASS -- TEST 'conus13km_control_gnu' [04:56, 03:10](887 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:46, 05:35](887 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:47](559 MB) -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:21] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:38, 05:43](739 MB) +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:31] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:44](742 MB) -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:44] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:34](721 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:19, 02:26](723 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:42, 08:32](899 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:46, 06:53](587 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:18](904 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:40, 07:05](960 MB) +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 03:45] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:27](721 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:23, 02:26](721 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:53, 06:54](900 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:44, 06:48](589 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:42, 06:56](905 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:43, 06:56](968 MB) -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:34] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:34](744 MB) +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:11, 04:13] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:33](745 MB) -PASS -- COMPILE 's2swa_gnu' [15:11, 14:30] +PASS -- COMPILE 's2swa_gnu' [15:12, 14:40] -PASS -- COMPILE 's2s_gnu' [15:12, 14:28] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:13, 10:50](1358 MB) +PASS -- COMPILE 's2s_gnu' [15:12, 14:37] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:10, 06:42](1361 MB) -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:36] +PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:46] -PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:28] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:03, 21:58](1326 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:37] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:02, 24:35](1322 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:29] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [18:56, 18:03](1334 MB) +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:23] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:53, 12:56](1331 MB) -PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:59] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:05](706 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:18] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 02:53](704 MB) SYNOPSIS: -Starting Date/Time: 20240501 01:32:37 -Ending Date/Time: 20240501 03:05:09 -Total Time: 01h:32m:50s +Starting Date/Time: 20240506 01:41:36 +Ending Date/Time: 20240506 04:12:23 +Total Time: 02h:31m:25s Compiles Completed: 54/54 -Tests Completed: 240/240 +Tests Completed: 241/242 +Failed Tests: +* TEST regional_atmaq_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2235/ufs-weather-model/tests/logs/log_hera/run_regional_atmaq_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 HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +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-20240503 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3365779 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-n) - RUN SINGLE TEST: regional_atmaq_debug +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 04:31] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [35:19, 31:06](4469 MB) + +SYNOPSIS: +Starting Date/Time: 20240506 14:53:48 +Ending Date/Time: 20240506 16:24:37 +Total Time: 01h:30m:59s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index b7191797dd..064db3b3c4 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -521f9348ebc590effdc0b5054b94946e209679d4 +74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) + 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) - cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,363 +35,365 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240430 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1563076 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240503 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1927015 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 11:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:59, 07:35](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:18, 13:25](1769 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:31, 14:08](2179 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:28, 06:45](1166 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:11, 15:02](1686 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 03:55] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:16, 20:22](1735 MB) - -PASS -- COMPILE 's2swa_intel' [13:12, 10:56] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:01, 07:37](2063 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:10, 07:35](2101 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:03, 04:22](1955 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:57, 07:39](1993 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:07, 04:22](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:02, 08:54](2507 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:59, 07:47](2056 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:08, 06:30](1910 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:12, 07:40](2085 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:39, 15:35](2797 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:08, 05:42](2920 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:33, 08:56](3632 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:57, 06:08](3612 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:03, 04:58](2038 MB) - -PASS -- COMPILE 's2sw_intel' [12:12, 10:10] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:48, 07:13](1767 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:56, 03:57](1820 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 04:35] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:49, 06:51](2051 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:12, 04:12] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 04:42](1806 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:12, 07:42] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:04, 03:59](1812 MB) - -PASS -- COMPILE 's2s_intel' [11:12, 08:18] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:40, 07:22](2835 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:13, 11:55] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:55, 07:17](2066 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 15:10] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:53, 13:54](1812 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:06, 06:52](1300 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:01, 15:25](1734 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:23] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:50](1790 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:21, 02:50](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [14:44, 02:29](1605 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:50, 02:34](1625 MB) -PASS -- TEST 'control_latlon_intel' [14:43, 02:29](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:49, 02:31](1601 MB) -PASS -- TEST 'control_c48_intel' [14:46, 06:57](1746 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:26, 05:45](855 MB) -PASS -- TEST 'control_c192_intel' [21:53, 08:59](1751 MB) -PASS -- TEST 'control_c384_intel' [21:25, 09:31](2052 MB) -PASS -- TEST 'control_c384gdas_intel' [19:53, 07:10](1522 MB) -PASS -- TEST 'control_stochy_intel' [08:20, 01:29](673 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:24, 00:53](548 MB) -PASS -- TEST 'control_lndp_intel' [07:20, 01:26](673 MB) -PASS -- TEST 'control_iovr4_intel' [14:22, 02:07](664 MB) -PASS -- TEST 'control_iovr5_intel' [12:38, 02:05](659 MB) -PASS -- TEST 'control_p8_intel' [12:51, 02:32](1638 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:48, 02:32](1649 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:50, 02:27](1654 MB) -PASS -- TEST 'control_restart_p8_intel' [04:43, 01:24](921 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:48, 02:31](1625 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:21](969 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:46, 02:40](1622 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:39, 02:20](1723 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:29, 04:22](1650 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:55, 03:24](1710 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:56, 02:31](1654 MB) -PASS -- TEST 'merra2_thompson_intel' [07:53, 02:50](1649 MB) -PASS -- TEST 'regional_control_intel' [09:27, 04:31](955 MB) -PASS -- TEST 'regional_restart_intel' [03:25, 02:30](1105 MB) -PASS -- TEST 'regional_decomp_intel' [09:35, 04:45](944 MB) -PASS -- TEST 'regional_2threads_intel' [06:32, 02:53](918 MB) -PASS -- TEST 'regional_noquilt_intel' [09:32, 04:19](1492 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:31, 04:33](957 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:24, 04:27](961 MB) -PASS -- TEST 'regional_wofs_intel' [09:33, 05:42](2089 MB) - -PASS -- COMPILE 'rrfs_intel' [07:10, 06:51] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:48, 06:41](1203 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:46, 03:38](1440 MB) -PASS -- TEST 'rap_decomp_intel' [09:34, 06:59](1168 MB) -PASS -- TEST 'rap_2threads_intel' [09:33, 06:09](1360 MB) -PASS -- TEST 'rap_restart_intel' [04:52, 03:26](1126 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:46, 06:31](1203 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 06:54](1132 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 04:55](1179 MB) -PASS -- TEST 'hrrr_control_intel' [04:48, 03:22](1071 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:40, 03:26](1038 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:03](1115 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:21, 01:49](1034 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:00, 06:21](1207 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:35](2021 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:29](2182 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 06:37] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:30, 05:18](812 MB) -PASS -- TEST 'control_ras_intel' [03:18, 02:47](801 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 03:44] -PASS -- TEST 'control_csawmg_gnu' [11:38, 06:39](811 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 06:24] -PASS -- TEST 'control_wam_intel' [02:23, 01:48](784 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:11, 08:54] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:52, 02:17](1632 MB) -PASS -- TEST 'regional_control_faster_intel' [05:27, 04:09](961 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 03:37] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 02:09](1635 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:36, 02:05](1642 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:27](839 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:12](835 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:34, 03:21](876 MB) -PASS -- TEST 'control_ras_debug_intel' [03:24, 02:15](834 MB) -PASS -- TEST 'control_diag_debug_intel' [03:39, 02:12](1697 MB) -PASS -- TEST 'control_debug_p8_intel' [03:32, 02:21](1661 MB) -PASS -- TEST 'regional_debug_intel' [14:30, 14:08](904 MB) -PASS -- TEST 'rap_control_debug_intel' [04:17, 03:57](1219 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:18, 03:50](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:18, 03:55](1219 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 04:04](1224 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:26, 04:00](1225 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:33, 04:07](1303 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:17, 04:03](1220 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:16, 04:05](1223 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:16, 03:59](1223 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:56](1224 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:53](1217 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:16, 03:56](1218 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:28](1213 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:59](1226 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:46](1225 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:18, 03:55](1224 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:52, 06:54](1220 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:11, 03:18] -PASS -- TEST 'control_csawmg_debug_gnu' [02:38, 01:46](792 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 02:34] ( 855 warnings ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 06:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:14](1281 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:50, 05:22](1133 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:45, 02:58](1029 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:43, 05:12](1287 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:37, 02:38](1042 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:44, 03:05](986 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:04, 04:15](1101 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:20, 01:37](959 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:37, 01:45](1310 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:29, 00:43](1209 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:26, 01:05](1156 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 06:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 03:43](1090 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:25] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 03:57](1102 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:50](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [12:34, 11:36](1332 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:30, 11:41](1000 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:30, 06:38](1241 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:30, 11:27](1395 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 02:39] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 03:59](1162 MB) - -PASS -- COMPILE 'hafsw_intel' [13:10, 10:18] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:24](868 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:10](1271 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:08, 06:14](957 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 13:58](987 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 15:01](1008 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:18](610 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 06:50](619 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:46, 02:44](433 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 07:34](546 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:42, 03:48](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:43, 03:45](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:44, 04:45](667 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:22](451 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:10] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:43, 11:20](637 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:10, 09:57] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:54, 16:19](770 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:53, 16:52](814 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:04, 09:43](833 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:10, 09:10] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:10, 05:35](941 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:04, 05:40](912 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:52, 16:24](1347 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [05:10, 04:33] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:16, 02:14](1144 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:42](1093 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:09](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:15, 02:10](1019 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:15, 02:11](1013 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 02:07](1134 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:25, 02:07](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:01](1008 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:56, 05:10](1159 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:50, 05:11](1150 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:07](1130 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:02](2435 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 03:11](2444 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 02:24] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:17](1076 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 05:04] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:06](1147 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:40] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 01:09](340 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:55](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:38](560 MB) - -PASS -- COMPILE 'atml_intel' [09:10, 07:25] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:09, 05:28](1655 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:01, 05:37](1636 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 03:03](944 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:19] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:02, 04:45](1659 MB) - -PASS -- COMPILE 'atmw_intel' [10:10, 09:43] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:54, 01:30](1704 MB) - -PASS -- COMPILE 'atmaero_intel' [11:20, 06:45] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:05, 03:45](1786 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:57, 04:12](1809 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:48, 04:13](1812 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 02:27] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:35, 16:19](4602 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 03:48] -PASS -- TEST 'control_c48_gnu' [10:53, 09:35](1576 MB) -PASS -- TEST 'control_stochy_gnu' [03:23, 02:23](735 MB) -PASS -- TEST 'control_ras_gnu' [04:22, 03:49](730 MB) -PASS -- TEST 'control_p8_gnu' [04:49, 03:44](1513 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:51, 03:37](1517 MB) -PASS -- TEST 'control_flake_gnu' [05:22, 04:29](802 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 03:48] -PASS -- TEST 'rap_control_gnu' [08:42, 07:46](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [08:45, 07:50](1084 MB) -PASS -- TEST 'rap_2threads_gnu' [07:48, 07:05](1121 MB) -PASS -- TEST 'rap_restart_gnu' [05:10, 03:58](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:39, 07:41](1098 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:38, 07:57](1085 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:53, 05:50](883 MB) -PASS -- TEST 'hrrr_control_gnu' [05:40, 04:04](1072 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:38, 04:03](1137 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:51, 03:40](1023 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 04:09](1071 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:21, 02:15](882 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:12](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:52, 07:43](1078 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 04:54] -PASS -- TEST 'control_diag_debug_gnu' [02:42, 01:20](1623 MB) -PASS -- TEST 'regional_debug_gnu' [07:34, 06:36](923 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:28, 01:57](1101 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 02:03](1090 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:56](1097 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 01:58](1096 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:28, 02:17](1272 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:05](1096 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:14](1103 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:19, 02:13](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:11](732 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:29](721 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:26](1504 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:02](1098 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:25, 02:12](1107 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:53, 03:19](1104 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:11, 02:10] -PASS -- TEST 'control_wam_debug_gnu' [03:24, 01:56](504 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 03:45] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:45, 07:15](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:48, 03:56](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:38, 06:41](973 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:39, 03:25](892 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 03:51](952 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:00, 05:25](861 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:03](855 MB) -PASS -- TEST 'conus13km_control_gnu' [05:37, 02:37](1266 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:31, 01:02](1172 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:24](928 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 07:43] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:32](991 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:10, 05:03] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 01:59](974 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:03](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:31, 05:32](1280 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:39](951 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:28, 03:30](1190 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:39](1347 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:10, 05:03] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:26, 02:05](999 MB) - -PASS -- COMPILE 's2swa_gnu' [15:10, 14:32] - -PASS -- COMPILE 's2s_gnu' [14:10, 13:59] - -PASS -- COMPILE 's2swa_debug_gnu' [03:10, 03:01] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:10, 14:46] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:36] - -PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:46] +PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:58] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:15, 10:34](1891 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 22:28] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [49:25, 14:24](1764 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:25, 14:10](2187 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:26, 06:36](1184 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:43, 15:56](1688 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:47] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:08, 20:18](1723 MB) + +PASS -- COMPILE 's2swa_intel' [12:11, 12:06] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [48:12, 10:54](2065 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:19, 11:48](2069 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:10, 04:48](1964 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [41:19, 07:43](1977 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:25, 04:24](1725 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [49:33, 12:39](2493 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [38:40, 08:04](2063 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [33:23, 06:28](1891 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:11, 10:54](2055 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [47:52, 17:23](2802 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:28, 06:09](2917 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [42:09, 09:40](3634 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:56, 07:44](3625 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [32:17, 05:04](2019 MB) + +PASS -- COMPILE 's2sw_intel' [13:10, 12:12] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [47:12, 07:10](1767 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:17, 06:38](1826 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 05:06] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:07, 06:46](2046 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:06] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:55, 04:42](1803 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:48] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:14, 03:57](1808 MB) + +PASS -- COMPILE 's2s_intel' [10:11, 09:34] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:44, 07:18](2827 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [25:44, 02:07](2832 MB) +PASS -- TEST 'cpld_restart_c48_intel' [26:03, 01:06](2298 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:24] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [47:10, 07:49](2078 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 16:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:15, 14:33](1794 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:42](1287 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:55, 15:29](1723 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:19] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:52, 21:32](1781 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:10, 07:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [42:13, 02:49](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [42:18, 02:35](1608 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [43:33, 02:30](1610 MB) +PASS -- TEST 'control_latlon_intel' [42:10, 02:38](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [46:21, 03:41](1616 MB) +PASS -- TEST 'control_c48_intel' [45:12, 07:00](1743 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [44:48, 05:46](859 MB) +PASS -- TEST 'control_c192_intel' [52:36, 10:15](1766 MB) +PASS -- TEST 'control_c384_intel' [50:03, 09:24](2043 MB) +PASS -- TEST 'control_c384gdas_intel' [53:53, 09:51](1517 MB) +PASS -- TEST 'control_stochy_intel' [43:32, 02:41](670 MB) +PASS -- TEST 'control_stochy_restart_intel' [08:36, 01:01](548 MB) +PASS -- TEST 'control_lndp_intel' [40:37, 02:38](661 MB) +PASS -- TEST 'control_iovr4_intel' [18:35, 02:03](662 MB) +PASS -- TEST 'control_iovr5_intel' [18:32, 02:06](659 MB) +PASS -- TEST 'control_p8_intel' [14:04, 02:30](1639 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:04, 03:47](1640 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [13:04, 03:43](1637 MB) +PASS -- TEST 'control_restart_p8_intel' [06:45, 01:25](930 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:02, 03:46](1631 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:22](988 MB) +PASS -- TEST 'control_decomp_p8_intel' [13:16, 03:52](1631 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:58, 02:27](1718 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:49, 04:32](1634 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:00, 03:34](1710 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:58, 02:39](1651 MB) +PASS -- TEST 'merra2_thompson_intel' [12:05, 02:56](1660 MB) +PASS -- TEST 'regional_control_intel' [08:36, 05:00](964 MB) +PASS -- TEST 'regional_restart_intel' [04:38, 02:26](1105 MB) +PASS -- TEST 'regional_decomp_intel' [07:37, 04:36](946 MB) +PASS -- TEST 'regional_2threads_intel' [10:35, 02:58](914 MB) +PASS -- TEST 'regional_noquilt_intel' [12:41, 04:26](1484 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:37, 04:34](960 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [12:29, 04:37](955 MB) +PASS -- TEST 'regional_wofs_intel' [12:33, 05:42](2075 MB) + +PASS -- COMPILE 'rrfs_intel' [12:10, 07:20] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [14:01, 06:37](1219 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:09, 04:22](1411 MB) +PASS -- TEST 'rap_decomp_intel' [11:50, 06:46](1125 MB) +PASS -- TEST 'rap_2threads_intel' [08:37, 06:06](1368 MB) +PASS -- TEST 'rap_restart_intel' [04:54, 03:25](1132 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:47, 06:26](1205 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:45, 06:59](1136 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:55, 05:01](1195 MB) +PASS -- TEST 'hrrr_control_intel' [05:22, 03:21](1078 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:27](1046 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:04](1127 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:29, 01:56](1021 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:18](1195 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:53](2018 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 07:23](2170 MB) + +PASS -- COMPILE 'csawmg_intel' [11:10, 07:12] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:30, 05:19](805 MB) +PASS -- TEST 'control_ras_intel' [04:17, 02:48](806 MB) + +PASS -- COMPILE 'csawmg_gnu' [08:10, 04:33] +PASS -- TEST 'control_csawmg_gnu' [08:38, 06:30](812 MB) + +PASS -- COMPILE 'wam_intel' [09:11, 07:29] +PASS -- TEST 'control_wam_intel' [03:24, 01:48](785 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:50] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:51, 02:16](1636 MB) +PASS -- TEST 'regional_control_faster_intel' [04:28, 04:03](957 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:09] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:14](1620 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:33, 02:09](1628 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:17](824 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:39](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:30, 03:35](871 MB) +PASS -- TEST 'control_ras_debug_intel' [03:15, 02:14](840 MB) +PASS -- TEST 'control_diag_debug_intel' [03:41, 02:22](1686 MB) +PASS -- TEST 'control_debug_p8_intel' [03:37, 02:21](1648 MB) +PASS -- TEST 'regional_debug_intel' [14:32, 14:02](896 MB) +PASS -- TEST 'rap_control_debug_intel' [04:19, 03:59](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:59](1219 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:58](1220 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 04:06](1228 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:17, 03:56](1224 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:21](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:18, 04:04](1213 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:16, 04:00](1228 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:17, 04:00](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 03:59](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:54](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:06](1226 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:19, 06:32](1219 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:22, 03:55](1214 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:48](1226 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:23, 03:59](1212 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 06:51](1225 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:25] +PASS -- TEST 'control_csawmg_debug_gnu' [04:37, 02:01](788 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 02:24] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:10, 07:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:21](1272 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:54, 05:30](1140 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 02:52](1018 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:04](1276 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:54, 02:37](1047 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:00](985 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:54, 04:04](1095 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:21, 01:35](969 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 09:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:46, 01:50](1312 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:34, 00:51](1196 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:27, 01:05](1163 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 07:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:31, 03:43](1056 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 03:30] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 03:59](1101 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:21, 03:52](1089 MB) +PASS -- TEST 'conus13km_debug_intel' [17:31, 11:46](1304 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:32, 12:00](995 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:28, 06:42](1244 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:27, 11:38](1403 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:35] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:18, 04:01](1154 MB) + +PASS -- COMPILE 'hafsw_intel' [13:10, 10:47] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:26](871 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:20, 05:13](1286 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:21, 06:29](953 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:05, 14:08](973 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:14, 15:19](1005 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:51, 05:28](606 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:11, 07:07](615 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:40, 02:53](432 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:50, 07:41](542 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:40, 03:57](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:39, 03:42](618 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:43, 04:49](682 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:27, 01:22](448 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:01] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:43, 11:21](635 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:13, 16:56] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:05, 16:00](769 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:57, 16:52](840 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:10, 13:35] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:54, 09:58](836 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:10, 10:01] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:03, 05:35](960 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:02, 05:35](927 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:47, 16:22](1335 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:14] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:16, 02:10](1148 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:21](1080 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:15, 02:08](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:15, 02:09](1008 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:15, 02:10](1012 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:13](1139 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:14, 02:13](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:06](1011 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:51, 04:58](1155 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:48, 04:53](1146 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:11](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 03:04](2432 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:08](2440 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:03] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:17](1075 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:21] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:16](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:56](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:19, 00:48](559 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:35](559 MB) + +PASS -- COMPILE 'atml_intel' [11:10, 09:21] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:03, 05:19](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:56, 05:23](1639 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 02:48](947 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:10, 03:28] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:54, 04:39](1667 MB) + +PASS -- COMPILE 'atmw_intel' [18:10, 13:04] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:34](1689 MB) + +PASS -- COMPILE 'atmaero_intel' [17:10, 12:40] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:47, 03:32](1799 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:15](1817 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:38, 04:20](1831 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:11, 04:49] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:33, 16:40](4575 MB) + +PASS -- COMPILE 'atm_gnu' [10:15, 06:24] +PASS -- TEST 'control_c48_gnu' [10:38, 09:31](1558 MB) +PASS -- TEST 'control_stochy_gnu' [03:22, 02:18](731 MB) +PASS -- TEST 'control_ras_gnu' [04:19, 03:51](730 MB) +PASS -- TEST 'control_p8_gnu' [04:44, 03:40](1512 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:43, 03:29](1518 MB) +PASS -- TEST 'control_flake_gnu' [05:21, 04:24](812 MB) + +PASS -- COMPILE 'rrfs_gnu' [10:10, 06:17] +PASS -- TEST 'rap_control_gnu' [08:30, 07:45](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [08:30, 07:55](1087 MB) +PASS -- TEST 'rap_2threads_gnu' [07:45, 07:08](1147 MB) +PASS -- TEST 'rap_restart_gnu' [06:54, 03:58](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:40, 07:39](1089 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 07:49](1086 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:51, 05:41](885 MB) +PASS -- TEST 'hrrr_control_gnu' [04:47, 03:57](1073 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:34, 04:03](1139 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:30, 03:36](1029 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:36, 04:02](1073 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:18, 02:03](883 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:18, 02:05](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 07:35](1083 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 07:20] +PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:17](1625 MB) +PASS -- TEST 'regional_debug_gnu' [07:28, 06:26](924 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:16, 01:58](1100 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:22, 01:53](1089 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 02:00](1095 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:16, 01:56](1097 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:23, 02:04](1269 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:16, 03:07](1096 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:17, 01:58](1098 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:17, 01:58](1093 MB) +PASS -- TEST 'control_ras_debug_gnu' [06:15, 01:12](730 MB) +PASS -- TEST 'control_stochy_debug_gnu' [06:15, 01:17](725 MB) +PASS -- TEST 'control_debug_p8_gnu' [05:32, 01:18](1506 MB) +PASS -- TEST 'rap_flake_debug_gnu' [06:21, 01:59](1101 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [07:18, 02:13](1101 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:47, 03:21](1104 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:06] +PASS -- TEST 'control_wam_debug_gnu' [06:25, 01:54](502 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [12:10, 07:20] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:45, 07:13](965 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:34, 03:45](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 06:44](968 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:48, 03:29](873 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 03:46](952 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:55, 05:22](859 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:21, 01:58](857 MB) +PASS -- TEST 'conus13km_control_gnu' [04:42, 02:39](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:37, 01:07](1174 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:35, 01:25](928 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 11:03] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:32, 04:24](997 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:10, 08:54] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:00](988 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 01:59](970 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:24](1282 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:27, 05:47](973 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:14](1190 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:39](1349 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:10, 08:54] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 02:04](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [27:10, 22:03] + +PASS -- COMPILE 's2s_gnu' [22:11, 18:09] + +PASS -- COMPILE 's2swa_debug_gnu' [18:11, 14:55] + +PASS -- COMPILE 's2sw_pdlib_gnu' [22:11, 19:26] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:10, 11:14] + +PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 18:17] SYNOPSIS: -Starting Date/Time: 20240430 22:59:38 -Ending Date/Time: 20240501 00:25:35 -Total Time: 01h:26m:27s +Starting Date/Time: 20240506 09:21:02 +Ending Date/Time: 20240506 11:27:27 +Total Time: 02h:07m:02s Compiles Completed: 54/54 -Tests Completed: 235/235 +Tests Completed: 237/237 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index cc7f856b7a..5b91586486 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -b2d7f816b6835880d15332692fc1c04af4fe7467 +74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) + 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) - cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,245 +35,247 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240430 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4040815 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240503 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_554453 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [38:23, 38:22] ( 2 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:40, 07:39](1779 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:11, 54:10] ( 2 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:49, 21:02](1662 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:14, 22:48](1846 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:21, 10:30](991 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:09, 24:08](1623 MB) - -PASS -- COMPILE 's2swa_intel' [38:50, 38:50] ( 1 warnings 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:08, 08:21](1783 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:47, 08:17](1779 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:45, 04:43](1661 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 08:17](1834 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:22, 04:37](1692 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:12, 08:08](2244 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 08:14](1812 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:42](1779 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:20, 07:50](1803 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:43, 07:15](1784 MB) - -PASS -- COMPILE 's2sw_intel' [36:22, 36:21] ( 1 warnings 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:04, 05:53](1647 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 06:03](1704 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:46, 05:45] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:13, 10:49](1821 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:05, 05:04] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:42, 07:25](1677 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [32:42, 32:42] ( 1 warnings 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 05:54](1666 MB) - -PASS -- COMPILE 's2s_intel' [32:29, 32:29] ( 1 warnings 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:54, 13:06](2790 MB) - -PASS -- COMPILE 's2swa_faster_intel' [33:33, 33:32] ( 1 warnings 1608 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:36, 08:51](1819 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:39, 47:38] ( 1 warnings 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:10, 21:00](1654 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 11:16](1020 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:09, 27:36](1653 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:14, 05:14] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:48, 32:29](1683 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [34:30, 34:29] ( 2 warnings 1151 remarks ) -PASS -- TEST 'control_flake_intel' [04:54, 04:29](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:54, 04:06](1520 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:03, 04:17](1538 MB) -PASS -- TEST 'control_latlon_intel' [04:39, 04:00](1548 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:53, 04:06](1543 MB) -PASS -- TEST 'control_c48_intel' [12:35, 11:55](1720 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:30, 10:10](845 MB) -PASS -- TEST 'control_c192_intel' [15:52, 14:53](1666 MB) -PASS -- TEST 'control_c384_intel' [21:31, 19:48](1814 MB) -PASS -- TEST 'control_c384gdas_intel' [18:57, 16:10](1008 MB) -PASS -- TEST 'control_stochy_intel' [02:36, 02:16](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:21](431 MB) -PASS -- TEST 'control_lndp_intel' [02:25, 02:09](601 MB) -PASS -- TEST 'control_iovr4_intel' [04:00, 03:45](598 MB) -PASS -- TEST 'control_iovr5_intel' [04:43, 04:19](595 MB) -PASS -- TEST 'control_p8_intel' [05:59, 04:35](1564 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:33, 04:17](1564 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:53, 04:32](1578 MB) -PASS -- TEST 'control_restart_p8_intel' [03:58, 02:42](821 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:51, 04:35](1558 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 02:27](836 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:04, 04:44](1562 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:13, 04:52](1662 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:17, 08:20](1565 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:51, 06:11](1624 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:20, 04:55](1591 MB) -PASS -- TEST 'merra2_thompson_intel' [07:04, 05:23](1585 MB) -PASS -- TEST 'regional_control_intel' [09:45, 09:06](770 MB) -PASS -- TEST 'regional_restart_intel' [05:48, 05:14](917 MB) -PASS -- TEST 'regional_decomp_intel' [10:04, 09:29](763 MB) -PASS -- TEST 'regional_2threads_intel' [07:40, 07:05](741 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:11, 09:21](763 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:08, 09:21](757 MB) - -PASS -- COMPILE 'rrfs_intel' [32:54, 32:54] ( 4 warnings 1119 remarks ) -PASS -- TEST 'rap_control_intel' [14:12, 12:39](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 07:00](1219 MB) -PASS -- TEST 'rap_decomp_intel' [15:53, 14:44](989 MB) -PASS -- TEST 'rap_2threads_intel' [13:14, 12:18](1087 MB) -PASS -- TEST 'rap_restart_intel' [08:06, 06:25](995 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:30, 13:15](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:47, 13:37](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:51, 10:05](1002 MB) -PASS -- TEST 'hrrr_control_intel' [07:18, 06:01](991 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:57, 07:23](979 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:39, 06:19](1055 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:52, 04:28](917 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:22, 13:04](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [16:15, 15:48](1927 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:20, 14:56](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [32:05, 32:05] ( 2 warnings 1096 remarks ) -PASS -- TEST 'control_csawmg_intel' [11:06, 10:17](673 MB) -PASS -- TEST 'control_ras_intel' [06:03, 05:26](667 MB) - -PASS -- COMPILE 'wam_intel' [30:06, 30:06] ( 1 warnings 982 remarks ) -PASS -- TEST 'control_wam_intel' [04:22, 03:43](501 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [32:02, 32:02] ( 1 warnings 1295 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:11, 04:34](1576 MB) -PASS -- TEST 'regional_control_faster_intel' [09:43, 09:03](767 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:54, 05:53] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 04:22](1503 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:45, 03:46](1564 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:39, 04:04](748 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:42, 03:28](745 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:03, 05:23](794 MB) -PASS -- TEST 'control_ras_debug_intel' [04:03, 03:46](772 MB) -PASS -- TEST 'control_diag_debug_intel' [04:52, 03:52](1610 MB) -PASS -- TEST 'control_debug_p8_intel' [04:29, 03:47](1589 MB) -PASS -- TEST 'regional_debug_intel' [23:16, 22:38](768 MB) -PASS -- TEST 'rap_control_debug_intel' [06:53, 06:15](1146 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:31, 06:17](1141 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:49, 06:30](1153 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:42, 06:25](1151 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 07:04](1154 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:13, 06:41](1236 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:48, 06:29](1144 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:41, 06:28](1148 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:52, 06:37](1129 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 06:51](1155 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:33, 06:14](1146 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 06:12](1147 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 10:08](1149 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:38, 06:14](1145 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:10, 07:50](1155 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:58, 06:36](1151 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:09, 10:46](1154 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:17, 04:17] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:44, 06:24](446 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:27, 30:27] ( 4 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 06:45](1073 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:41, 10:34](905 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:10, 05:42](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:53, 09:36](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:44, 05:02](906 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:53, 05:27](858 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:41, 09:07](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:01, 02:32](829 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:02, 43:02] ( 4 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:07, 03:17](1078 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:34, 01:33](1024 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:00, 02:06](1008 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:47, 30:45] ( 4 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:24, 06:34](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:25, 04:24] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:09, 06:49](1034 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:41, 05:57](1029 MB) -PASS -- TEST 'conus13km_debug_intel' [19:19, 18:35](1141 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:41, 18:46](847 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:56, 11:10](1083 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:29, 18:35](1189 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:33, 04:33] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:34, 06:54](1077 MB) - -PASS -- COMPILE 'hafsw_intel' [34:52, 34:52] ( 2 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [11:44, 10:17](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:56, 11:06](1078 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:00, 15:58](775 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [22:24, 20:53](807 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:10, 21:36](824 MB) -PASS -- TEST 'gnv1_nested_intel' [11:55, 10:27](779 MB) - -PASS -- COMPILE 'hafs_all_intel' [32:42, 32:42] ( 1 warnings 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:42, 12:16](767 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:03, 14:25](755 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:10] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 04:05](1059 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 02:31](1035 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 04:02](929 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 04:04](926 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 04:16](932 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 04:09](1061 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 04:09](1064 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:57, 03:49](921 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:03, 09:16](880 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:33, 07:55](850 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:57, 03:44](1064 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:11, 05:59](2347 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 06:04](2393 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:42, 03:39] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 08:09](1011 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 08:11] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:00, 03:37](1052 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:59, 01:59] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:14, 02:42](233 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 03:11](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 02:08](256 MB) - -PASS -- COMPILE 'atml_intel' [35:00, 35:00] ( 9 warnings 1189 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:30, 14:55](1600 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [16:21, 14:40](1607 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:09, 09:16](871 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:55, 05:55] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:11, 08:51](1611 MB) - -PASS -- COMPILE 'atmw_intel' [32:02, 32:02] ( 1 warnings 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:37, 03:10](1606 MB) - -PASS -- COMPILE 'atmaero_intel' [31:22, 31:22] ( 1 warnings 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:38, 07:01](1659 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:42, 07:59](1725 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:03, 07:34](1735 MB) +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [32:13, 31:58] ( 2 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 06:58](1796 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:50] ( 2 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:09, 20:54](1667 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:13, 23:09](1888 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 10:51](993 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:40, 23:55](1637 MB) + +PASS -- COMPILE 's2swa_intel' [38:14, 37:20] ( 1 warnings 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:23, 07:40](1826 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:44, 07:40](1829 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:55, 04:33](1709 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:23, 07:42](1842 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 04:51](1721 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:16, 07:17](2262 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:16, 07:54](1809 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:43, 06:38](1788 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:42, 07:45](1813 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:31, 07:12](1796 MB) + +PASS -- COMPILE 's2sw_intel' [31:13, 30:31] ( 1 warnings 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 05:59](1656 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:41, 05:52](1715 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:27] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:00, 10:48](1826 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 05:08] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:22, 07:18](1677 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:23] ( 1 warnings 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 05:46](1719 MB) + +PASS -- COMPILE 's2s_intel' [33:13, 33:05] ( 1 warnings 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:09, 12:49](2801 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:09, 03:36](2803 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:05, 02:04](2267 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:19, 34:20] ( 1 warnings 1608 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:36, 09:14](1804 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:14, 47:57] ( 1 warnings 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:43, 21:09](1683 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:54, 10:45](1034 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:55, 26:01](1659 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:44] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:37, 32:12](1697 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:54] ( 2 warnings 1151 remarks ) +PASS -- TEST 'control_flake_intel' [05:32, 04:58](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:43, 04:11](1542 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:45, 04:45](1554 MB) +PASS -- TEST 'control_latlon_intel' [10:38, 04:05](1547 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:45, 04:50](1534 MB) +PASS -- TEST 'control_c48_intel' [14:44, 11:57](1730 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:02, 10:09](847 MB) +PASS -- TEST 'control_c192_intel' [16:47, 14:47](1682 MB) +PASS -- TEST 'control_c384_intel' [25:13, 18:45](1816 MB) +PASS -- TEST 'control_c384gdas_intel' [24:22, 14:32](1014 MB) +PASS -- TEST 'control_stochy_intel' [03:56, 02:42](601 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:41, 01:26](437 MB) +PASS -- TEST 'control_lndp_intel' [03:54, 02:25](599 MB) +PASS -- TEST 'control_iovr4_intel' [04:56, 03:59](596 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 04:08](603 MB) +PASS -- TEST 'control_p8_intel' [11:28, 04:10](1577 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:26, 04:27](1577 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:55, 04:08](1568 MB) +PASS -- TEST 'control_restart_p8_intel' [04:13, 02:14](819 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:22, 04:03](1565 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 02:11](837 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:15, 04:09](1565 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:24, 03:44](1666 MB) +PASS -- TEST 'control_p8_lndp_intel' [12:09, 07:06](1572 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:34, 05:15](1630 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:47, 04:08](1584 MB) +PASS -- TEST 'merra2_thompson_intel' [09:54, 04:31](1584 MB) +PASS -- TEST 'regional_control_intel' [11:58, 07:27](764 MB) +PASS -- TEST 'regional_restart_intel' [04:49, 04:01](933 MB) +PASS -- TEST 'regional_decomp_intel' [12:47, 07:53](757 MB) +PASS -- TEST 'regional_2threads_intel' [06:48, 05:02](754 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:51, 07:26](758 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:50, 07:23](762 MB) + +PASS -- COMPILE 'rrfs_intel' [34:12, 33:19] ( 4 warnings 1119 remarks ) +PASS -- TEST 'rap_control_intel' [12:26, 11:05](986 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:08, 06:05](1220 MB) +PASS -- TEST 'rap_decomp_intel' [13:09, 11:27](989 MB) +PASS -- TEST 'rap_2threads_intel' [12:26, 10:26](1086 MB) +PASS -- TEST 'rap_restart_intel' [08:25, 05:22](990 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:41, 11:05](995 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:19, 11:19](985 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 07:47](999 MB) +PASS -- TEST 'hrrr_control_intel' [07:23, 05:48](990 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 05:50](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:23, 05:12](1054 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:49](922 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:51, 10:52](990 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:43, 13:32](1916 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:50, 12:49](1937 MB) + +PASS -- COMPILE 'csawmg_intel' [32:13, 31:24] ( 2 warnings 1096 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:53, 08:19](692 MB) +PASS -- TEST 'control_ras_intel' [06:24, 04:39](667 MB) + +PASS -- COMPILE 'wam_intel' [30:13, 29:56] ( 1 warnings 982 remarks ) +PASS -- TEST 'control_wam_intel' [03:26, 02:54](506 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [32:17, 31:41] ( 1 warnings 1295 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:45, 03:52](1578 MB) +PASS -- TEST 'regional_control_faster_intel' [07:58, 07:06](765 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:05] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:56, 03:20](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 03:25](1556 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:47](760 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:26](766 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:48, 05:18](814 MB) +PASS -- TEST 'control_ras_debug_intel' [05:26, 03:32](774 MB) +PASS -- TEST 'control_diag_debug_intel' [04:56, 03:23](1617 MB) +PASS -- TEST 'control_debug_p8_intel' [04:52, 03:50](1588 MB) +PASS -- TEST 'regional_debug_intel' [23:49, 22:15](812 MB) +PASS -- TEST 'rap_control_debug_intel' [07:29, 06:08](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:28, 05:56](1151 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 06:04](1146 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 06:06](1148 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:26, 06:14](1154 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:42, 06:28](1233 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 06:17](1149 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 06:14](1149 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:06](1154 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 06:06](1157 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:27, 06:00](1150 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 06:06](1148 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:26, 09:55](1148 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 06:02](1146 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 07:36](1157 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:27, 06:06](1154 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:32, 10:31](1153 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:12] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:27, 06:10](447 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:13, 30:19] ( 4 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:50, 05:23](1077 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:05, 09:29](900 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:13, 04:33](866 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:41, 08:08](938 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:00, 04:01](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:15, 04:59](857 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:58, 07:09](897 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:42, 03:20](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:16, 43:26] ( 4 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:09, 03:01](1109 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:38](1050 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:41](1024 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:21, 31:01] ( 4 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 05:37](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:56] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 06:08](1024 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:00](1028 MB) +PASS -- TEST 'conus13km_debug_intel' [21:06, 18:49](1136 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:25, 19:13](845 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:03, 10:51](1083 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:21, 18:40](1204 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:18] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:10](1073 MB) + +PASS -- COMPILE 'hafsw_intel' [36:14, 35:28] ( 2 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:23, 07:06](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 06:54](1093 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:43, 09:32](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 16:33](793 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 18:28](822 MB) +PASS -- TEST 'gnv1_nested_intel' [07:28, 05:54](775 MB) + +PASS -- COMPILE 'hafs_all_intel' [32:20, 32:09] ( 1 warnings 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:28, 08:57](771 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:32, 08:58](755 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:03] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:52, 04:10](1053 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:32, 02:08](1030 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:43, 03:55](923 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:56, 04:07](922 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:48, 04:15](918 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:53, 04:14](1062 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:00, 04:20](1060 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:50, 04:28](926 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:09, 08:29](888 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:39, 08:15](841 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:34, 04:07](1061 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:31, 06:08](2342 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:26, 06:25](2385 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 04:16] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:52, 08:05](1015 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:16, 08:20] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:36](1055 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:41] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:43](230 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:21](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:33, 00:55](255 MB) + +PASS -- COMPILE 'atml_intel' [35:12, 34:36] ( 9 warnings 1189 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:54, 10:08](1595 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:47, 10:10](1597 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 04:42](865 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:24] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:53, 07:34](1628 MB) + +PASS -- COMPILE 'atmw_intel' [32:13, 31:39] ( 1 warnings 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:38, 03:08](1603 MB) + +PASS -- COMPILE 'atmaero_intel' [31:13, 31:10] ( 1 warnings 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:34, 05:26](1697 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:44, 06:33](1728 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:46](1744 MB) SYNOPSIS: -Starting Date/Time: 20240501 15:20:11 -Ending Date/Time: 20240501 20:09:19 -Total Time: 04h:49m:47s +Starting Date/Time: 20240506 00:56:29 +Ending Date/Time: 20240506 04:17:54 +Total Time: 03h:21m:58s Compiles Completed: 33/33 -Tests Completed: 159/159 +Tests Completed: 161/161 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 39c3aca92d..342cb4c8e3 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -ee1e3c5e5a1cc1f622452890e61b3950a3e73ebd +74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) + 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) - cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,276 +35,278 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240430 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14513 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_338803 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:10, 13:54] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:52, 05:27](3186 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 18:19] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:59, 17:15](1741 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:02, 18:22](2031 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:26](1106 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:47, 19:36](1648 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:11] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:41, 22:44](1648 MB) - -PASS -- COMPILE 's2swa_intel' [14:10, 14:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:33, 05:42](3214 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:16, 05:45](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:08, 03:20](3261 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:02, 05:47](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:53, 03:31](3273 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:02, 06:13](3553 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:30, 05:46](3204 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:43, 04:44](3063 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:15, 05:45](3212 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:50, 10:26](3344 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:18, 06:29](3622 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:10, 10:59](4168 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:45, 06:55](4374 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:44, 05:28](3172 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 14:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:12, 04:44](1740 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 04:26](1772 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:10] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:21, 08:43](3249 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:56] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:11, 05:57](1750 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:10, 12:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:32, 04:29](1784 MB) - -PASS -- COMPILE 's2s_intel' [12:10, 12:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:50, 08:16](2827 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:11, 20:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:30, 05:26](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 17:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:05, 17:30](1763 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 08:30](1173 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:17, 19:52](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:57] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 24:37](1712 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 12:02] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:30, 03:33](696 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:59, 02:56](1605 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:08, 03:03](1602 MB) -PASS -- TEST 'control_latlon_intel' [09:54, 02:55](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:06, 03:02](1593 MB) -PASS -- TEST 'control_c48_intel' [13:58, 07:10](1772 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:35, 06:02](880 MB) -PASS -- TEST 'control_c192_intel' [18:08, 10:36](1747 MB) -PASS -- TEST 'control_c384_intel' [17:20, 11:41](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [18:19, 09:04](1359 MB) -PASS -- TEST 'control_stochy_intel' [04:26, 01:48](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:01](508 MB) -PASS -- TEST 'control_lndp_intel' [08:27, 01:38](654 MB) -PASS -- TEST 'control_iovr4_intel' [09:29, 02:32](655 MB) -PASS -- TEST 'control_iovr5_intel' [03:26, 02:27](656 MB) -PASS -- TEST 'control_p8_intel' [04:20, 02:58](1625 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:23, 02:56](1621 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:42, 02:51](1644 MB) -PASS -- TEST 'control_restart_p8_intel' [03:17, 01:40](889 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:19, 02:53](1621 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:07, 01:40](928 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:28, 03:08](1605 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:19, 03:02](1729 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:01, 05:12](1633 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:38, 04:01](1687 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:35, 03:06](1640 MB) -PASS -- TEST 'merra2_thompson_intel' [05:51, 03:18](1642 MB) -PASS -- TEST 'regional_control_intel' [06:44, 05:18](856 MB) -PASS -- TEST 'regional_restart_intel' [05:39, 02:45](1018 MB) -PASS -- TEST 'regional_decomp_intel' [06:40, 05:35](851 MB) -PASS -- TEST 'regional_2threads_intel' [04:40, 03:48](858 MB) -PASS -- TEST 'regional_noquilt_intel' [06:42, 05:33](1364 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:09](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:13](861 MB) -PASS -- TEST 'regional_wofs_intel' [07:36, 06:46](1919 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:17] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:31, 07:50](1104 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:08, 04:48](1289 MB) -PASS -- TEST 'rap_decomp_intel' [10:00, 08:14](1029 MB) -PASS -- TEST 'rap_2threads_intel' [09:01, 08:00](1182 MB) -PASS -- TEST 'rap_restart_intel' [06:20, 04:05](1107 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:06, 07:46](1092 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:01, 08:11](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:28, 05:54](1137 MB) -PASS -- TEST 'hrrr_control_intel' [06:21, 03:59](1032 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 04:08](1028 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:01, 03:23](1114 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:12](1004 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:19, 07:35](1109 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:11](1998 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 08:55](2077 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:12] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:43, 06:08](748 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:24](740 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:28] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [03:22, 02:06](654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 12:01] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:34, 02:47](1622 MB) -PASS -- TEST 'regional_control_faster_intel' [07:39, 04:44](803 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:44] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:40](1616 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 02:37](1609 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:23, 03:06](817 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:51](823 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:07](863 MB) -PASS -- TEST 'control_ras_debug_intel' [05:21, 02:50](820 MB) -PASS -- TEST 'control_diag_debug_intel' [04:47, 02:46](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [04:45, 02:51](1640 MB) -PASS -- TEST 'regional_debug_intel' [18:41, 17:16](848 MB) -PASS -- TEST 'rap_control_debug_intel' [05:24, 04:57](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:25, 04:51](1190 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:57](1207 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:58](1201 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:59](1199 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:16](1295 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:01](1202 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:09](1207 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:09](1193 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:52](1208 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:52](1144 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:57](1201 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:07](1200 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:57](1195 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 05:48](1202 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:57](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:22](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:10, 03:13] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:23, 05:07](508 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:21] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 04:32](1168 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 06:27](1057 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:28](992 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:51, 06:46](1102 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:15, 02:56](965 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 03:39](923 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:14, 04:57](1037 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 01:52](927 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 13:20] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:57, 02:07](1201 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:46, 01:02](1127 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:19](1109 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:55] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:18](990 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 03:36] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:53](1081 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:54](1077 MB) -PASS -- TEST 'conus13km_debug_intel' [15:52, 14:15](1228 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:50, 14:07](927 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:13](1105 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:44, 13:48](1262 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:21] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 04:53](1113 MB) - -PASS -- COMPILE 'hafsw_intel' [15:10, 12:52] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:29](741 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:47](1127 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:21, 06:50](828 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:11, 13:10](977 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 14:54](880 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 06:16](500 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 07:36](520 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:48, 03:15](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:26, 08:11](465 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:14](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:51, 04:04](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:20](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:27](410 MB) -PASS -- TEST 'gnv1_nested_intel' [06:51, 04:39](800 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:50] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:09](564 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:10, 13:49] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:59, 09:56](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:03, 09:50](705 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 13:51] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:04, 07:10](696 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:11, 12:36] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:23](830 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:26](815 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 15:57](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:32] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:36](1135 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:40](1083 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:33](1009 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:37](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:40](1009 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:36](1126 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1129 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:38](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:13, 05:58](1059 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:13, 05:53](1037 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:42](1133 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:44](2492 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:35](2431 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:11] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:13](1057 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:04] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:36](1134 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:02] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:49](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:48](329 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:32](321 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 12:24] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:41, 04:10](1602 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:14](1602 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:47, 02:18](896 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 04:06] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 05:56](1621 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:45] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:44](1670 MB) - -PASS -- COMPILE 'atmaero_intel' [11:11, 11:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:19, 04:00](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:15, 04:57](3087 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 04:59](3103 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 03:22] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:41, 21:09](4595 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:15] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 05:44](3185 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:24] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:57, 18:34](1746 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:17, 18:22](2027 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [28:05, 08:44](1115 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:42, 21:57](1647 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:22] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:36, 23:59](1695 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 15:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:02, 06:06](3208 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 06:01](3216 MB) +PASS -- TEST 'cpld_restart_p8_intel' [43:05, 03:46](3253 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:02, 06:01](3242 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [43:45, 04:15](3274 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:39, 06:22](3553 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:02, 05:52](3198 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:49, 04:58](3073 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:16, 06:08](3207 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:57, 10:55](3343 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [41:19, 07:03](3626 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:51, 11:20](4117 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:06, 08:14](4357 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:42, 05:39](3168 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 14:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:16, 04:57](1728 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:32, 04:47](1772 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:20] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:40, 09:09](3235 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:04] ( 1451 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:20, 06:06](1748 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 14:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:36](1773 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 12:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:53, 08:14](2833 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:26](2838 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:17, 01:25](2243 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 19:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:03, 06:14](3212 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:15, 18:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:33, 17:52](1771 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:39, 08:40](1118 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:29, 19:50](1672 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 04:06] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:35, 24:43](1707 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:36] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:30, 03:51](697 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 03:07](1592 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:17, 03:09](1601 MB) +PASS -- TEST 'control_latlon_intel' [04:04, 03:02](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:14, 03:06](1601 MB) +PASS -- TEST 'control_c48_intel' [09:11, 07:18](1702 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:09, 06:12](878 MB) +PASS -- TEST 'control_c192_intel' [13:07, 11:04](1746 MB) +PASS -- TEST 'control_c384_intel' [18:05, 15:03](2007 MB) +PASS -- TEST 'control_c384gdas_intel' [16:49, 09:39](1354 MB) +PASS -- TEST 'control_stochy_intel' [02:31, 02:05](654 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:45, 01:08](503 MB) +PASS -- TEST 'control_lndp_intel' [02:26, 01:42](656 MB) +PASS -- TEST 'control_iovr4_intel' [03:55, 02:36](650 MB) +PASS -- TEST 'control_iovr5_intel' [03:42, 02:47](656 MB) +PASS -- TEST 'control_p8_intel' [05:16, 03:13](1622 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [42:57, 03:11](1632 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [42:51, 03:01](1585 MB) +PASS -- TEST 'control_restart_p8_intel' [37:43, 01:50](890 MB) +PASS -- TEST 'control_noqr_p8_intel' [42:26, 03:07](1616 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:51](927 MB) +PASS -- TEST 'control_decomp_p8_intel' [42:22, 03:13](1611 MB) +PASS -- TEST 'control_2threads_p8_intel' [42:37, 03:17](1720 MB) +PASS -- TEST 'control_p8_lndp_intel' [44:37, 05:25](1631 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [42:59, 04:09](1691 MB) +PASS -- TEST 'control_p8_mynn_intel' [41:47, 03:16](1633 MB) +PASS -- TEST 'merra2_thompson_intel' [42:27, 03:36](1636 MB) +PASS -- TEST 'regional_control_intel' [43:11, 05:27](860 MB) +PASS -- TEST 'regional_restart_intel' [05:47, 02:46](1020 MB) +PASS -- TEST 'regional_decomp_intel' [43:27, 05:48](856 MB) +PASS -- TEST 'regional_2threads_intel' [41:29, 04:02](848 MB) +PASS -- TEST 'regional_noquilt_intel' [41:54, 05:14](1366 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [41:56, 05:25](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [41:40, 05:25](858 MB) +PASS -- TEST 'regional_wofs_intel' [42:07, 07:01](1923 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 10:54] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [43:36, 08:02](1061 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [36:20, 05:10](1291 MB) +PASS -- TEST 'rap_decomp_intel' [36:23, 08:23](1035 MB) +PASS -- TEST 'rap_2threads_intel' [35:56, 08:11](1175 MB) +PASS -- TEST 'rap_restart_intel' [06:28, 04:06](1103 MB) +PASS -- TEST 'rap_sfcdiff_intel' [35:16, 07:54](1102 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [34:45, 08:18](1026 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 05:53](1126 MB) +PASS -- TEST 'hrrr_control_intel' [06:16, 04:07](1035 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:16, 04:17](1024 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:31, 03:26](1113 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:29, 02:11](1003 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:23, 07:47](1094 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:23](1991 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 09:09](2070 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 13:06] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:44, 06:08](749 MB) +PASS -- TEST 'control_ras_intel' [06:21, 03:25](744 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 11:34] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [05:22, 02:13](654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 12:41] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:32, 02:45](1627 MB) +PASS -- TEST 'regional_control_faster_intel' [07:43, 04:43](854 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:36] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:52, 02:48](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:53, 02:54](1620 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:08](817 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:23, 02:58](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:08](865 MB) +PASS -- TEST 'control_ras_debug_intel' [05:25, 02:54](827 MB) +PASS -- TEST 'control_diag_debug_intel' [04:49, 02:49](1668 MB) +PASS -- TEST 'control_debug_p8_intel' [03:49, 02:56](1606 MB) +PASS -- TEST 'regional_debug_intel' [19:52, 17:29](836 MB) +PASS -- TEST 'rap_control_debug_intel' [06:28, 04:59](1199 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:52](1203 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 05:00](1202 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:54](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:54](1202 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:15](1288 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 05:09](1206 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 05:01](1205 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:01](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:00](1206 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:56](1197 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:59](1202 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 08:00](1209 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 05:01](1197 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:59](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:04](1200 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:33, 08:24](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:23] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:22, 05:10](521 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 11:13] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 04:34](1169 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 06:35](1055 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:46, 03:32](988 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:59, 06:52](1071 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:52, 03:01](964 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 03:43](927 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:22, 04:54](1039 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:53](925 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:10] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:59, 02:13](1199 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:53, 01:02](1126 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:51, 01:16](1106 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:50] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:19](954 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:16] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:58](1086 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:53](1081 MB) +PASS -- TEST 'conus13km_debug_intel' [15:57, 14:21](1232 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:56, 14:10](928 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:25](1155 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:37](1295 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:05] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:36, 05:02](1118 MB) + +PASS -- COMPILE 'hafsw_intel' [17:11, 16:33] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:21, 05:54](684 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:09](1116 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:31, 07:02](833 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:26, 13:26](864 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:25, 15:08](888 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 06:25](499 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 07:39](522 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:04, 03:21](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:36, 08:04](468 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 04:21](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:51, 03:58](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:57, 05:36](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:27, 01:24](405 MB) +PASS -- TEST 'gnv1_nested_intel' [07:59, 04:49](806 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [21:18, 07:00] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:03](573 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [29:11, 16:14] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:02, 09:59](678 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:15, 10:05](741 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [34:18, 16:05] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:13, 07:24](639 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:19, 15:10] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:30, 06:39](833 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:36, 06:34](816 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:59, 15:58](1211 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [27:18, 09:52] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:41](1136 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:41](1089 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:34](1018 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:34](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:41](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:17, 02:41](1126 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:17, 02:39](1137 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:37](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 05:58](1055 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:14, 06:06](1033 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:45](1137 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:36](2434 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:46](2500 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [21:12, 04:48] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:16](1055 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [23:12, 09:43] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:40](1145 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [12:11, 02:06] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:50](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:48](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:40](321 MB) + +PASS -- COMPILE 'atml_intel' [21:13, 14:46] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:45, 04:19](1595 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:14](1612 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:28](897 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:12, 05:35] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:37, 05:42](1610 MB) + +PASS -- COMPILE 'atmw_intel' [30:11, 12:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:31, 01:48](1625 MB) + +PASS -- COMPILE 'atmaero_intel' [29:11, 12:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:27, 04:04](3027 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:23, 05:03](3088 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:11, 05:00](3100 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [17:12, 03:50] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:00, 22:45](4577 MB) SYNOPSIS: -Starting Date/Time: 20240501 13:51:13 -Ending Date/Time: 20240501 15:18:50 -Total Time: 01h:28m:06s +Starting Date/Time: 20240506 09:36:17 +Ending Date/Time: 20240506 11:36:51 +Total Time: 02h:01m:13s Compiles Completed: 38/38 -Tests Completed: 180/180 +Tests Completed: 182/182 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index ed6cb3faff..8f8ad7b085 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -a987c604f37531e8dc63d28127df5b6921805e0b +58f6e863baafb6be6c58b625ba5669f80a1d82ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl-1-gbbcabb5) + 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop-51-g683061b) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) - cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,237 +35,239 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240430 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_17560 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_168635 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:34, 20:07] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [50:19, 01:43](2975 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:35, 19:35] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [50:18, 01:29](1594 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [31:14, 01:35](1708 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [31:05, 02:08](853 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:19, 01:57](1578 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:24, 08:51] ( 1506 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [01:30, 01:51](1599 MB) - -PASS -- COMPILE 's2swa_intel' [21:44, 20:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [41:21, 01:30](3005 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:10, 01:57](3002 MB) -PASS -- TEST 'cpld_restart_p8_intel' [32:55, 01:00](3063 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [49:10, 01:42](3030 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [39:51, 01:54](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [49:10, 01:30](3318 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [49:10, 01:37](3003 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [42:23, 01:21](2927 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:20, 01:31](3002 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [49:19, 03:48](3951 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:19, 03:24](4251 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [49:10, 01:20](2966 MB) - -PASS -- COMPILE 's2sw_intel' [11:26, 10:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [59:27, 01:07](1583 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:27, 01:14](1636 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [29:53, 29:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:00, 01:51](1635 MB) - -PASS -- COMPILE 's2s_intel' [10:25, 10:01] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [00:27, 00:43](2647 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [53:21, 01:38](3001 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [28:52, 27:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [42:02, 01:02](1603 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:43, 01:12](905 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:11, 01:27](1574 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:49, 26:16] ( 1542 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [44:06, 01:29](1619 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [21:36, 21:04] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [39:52, 01:12](573 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [39:52, 01:16](1465 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [39:52, 01:18](1477 MB) -PASS -- TEST 'control_latlon_intel' [39:52, 01:13](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:06, 00:33](1467 MB) -PASS -- TEST 'control_c48_intel' [39:51, 01:02](1597 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [39:51, 00:53](717 MB) -PASS -- TEST 'control_c192_intel' [39:52, 01:22](1586 MB) -PASS -- TEST 'control_c384_intel' [39:56, 01:09](1901 MB) -PASS -- TEST 'control_c384gdas_intel' [39:56, 02:13](1092 MB) -PASS -- TEST 'control_stochy_intel' [39:52, 00:26](528 MB) -PASS -- TEST 'control_stochy_restart_intel' [37:27, 00:16](333 MB) -PASS -- TEST 'control_lndp_intel' [39:52, 00:18](529 MB) -PASS -- TEST 'control_iovr4_intel' [39:52, 00:34](524 MB) -PASS -- TEST 'control_iovr5_intel' [39:52, 00:45](525 MB) -PASS -- TEST 'control_p8_intel' [39:52, 01:43](1498 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [39:52, 01:40](1509 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [39:35, 01:58](1507 MB) -PASS -- TEST 'control_restart_p8_intel' [32:23, 01:44](690 MB) -PASS -- TEST 'control_noqr_p8_intel' [39:33, 01:40](1489 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [32:22, 01:47](699 MB) -PASS -- TEST 'control_decomp_p8_intel' [37:27, 00:46](1500 MB) -PASS -- TEST 'control_2threads_p8_intel' [36:24, 00:50](1592 MB) -PASS -- TEST 'control_p8_lndp_intel' [36:23, 01:17](1505 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [36:21, 01:46](1565 MB) -PASS -- TEST 'control_p8_mynn_intel' [35:18, 01:01](1510 MB) -PASS -- TEST 'merra2_thompson_intel' [35:03, 01:59](1509 MB) -PASS -- TEST 'regional_control_intel' [35:00, 01:02](608 MB) -PASS -- TEST 'regional_restart_intel' [27:13, 00:23](776 MB) -PASS -- TEST 'regional_decomp_intel' [34:21, 01:05](608 MB) -PASS -- TEST 'regional_2threads_intel' [33:39, 01:11](667 MB) -PASS -- TEST 'regional_noquilt_intel' [33:09, 00:24](1143 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [33:01, 00:20](610 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [32:57, 00:15](609 MB) -PASS -- TEST 'regional_wofs_intel' [32:55, 00:51](1578 MB) - -PASS -- COMPILE 'rrfs_intel' [13:27, 12:39] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [32:51, 01:14](919 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [32:26, 00:43](1093 MB) -PASS -- TEST 'rap_decomp_intel' [32:22, 01:39](920 MB) -PASS -- TEST 'rap_2threads_intel' [32:14, 01:46](1009 MB) -PASS -- TEST 'rap_restart_intel' [23:26, 01:07](787 MB) -PASS -- TEST 'rap_sfcdiff_intel' [32:03, 01:54](915 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [29:52, 01:08](915 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [20:34, 01:17](786 MB) -PASS -- TEST 'hrrr_control_intel' [29:51, 01:51](913 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [29:44, 01:23](911 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [21:57, 01:54](988 MB) -PASS -- TEST 'hrrr_control_restart_intel' [22:36, 01:04](740 MB) -PASS -- TEST 'rrfs_v1beta_intel' [29:12, 01:40](912 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [28:28, 01:01](1877 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:15, 01:02](1861 MB) - -PASS -- COMPILE 'csawmg_intel' [32:56, 32:01] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [26:21, 01:08](599 MB) -PASS -- TEST 'control_ras_intel' [26:13, 01:16](561 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 10:04] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [42:57, 00:24](271 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:44, 19:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [21:07, 01:22](1509 MB) -PASS -- TEST 'regional_control_faster_intel' [26:39, 00:42](609 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:26, 11:12] ( 871 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:11, 00:54](1487 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:01, 00:33](1487 MB) -PASS -- TEST 'control_stochy_debug_intel' [25:43, 00:30](691 MB) -PASS -- TEST 'control_lndp_debug_intel' [25:43, 00:52](690 MB) -PASS -- TEST 'control_csawmg_debug_intel' [25:09, 01:02](731 MB) -PASS -- TEST 'control_ras_debug_intel' [24:09, 00:43](701 MB) -PASS -- TEST 'control_diag_debug_intel' [22:52, 00:34](1546 MB) -PASS -- TEST 'control_debug_p8_intel' [22:36, 01:03](1524 MB) -PASS -- TEST 'regional_debug_intel' [22:17, 00:27](632 MB) -PASS -- TEST 'rap_control_debug_intel' [21:53, 00:18](1073 MB) -PASS -- TEST 'hrrr_control_debug_intel' [21:27, 00:52](1067 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [21:14, 00:58](1071 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [11:18, 01:06](1070 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:02, 00:49](1076 MB) -PASS -- TEST 'rap_diag_debug_intel' [18:24, 01:09](1158 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:44, 00:46](1076 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:14, 00:17](1072 MB) -PASS -- TEST 'rap_lndp_debug_intel' [17:50, 00:35](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:44, 00:38](1074 MB) -PASS -- TEST 'rap_noah_debug_intel' [17:40, 01:12](1068 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [17:02, 00:31](1076 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:00, 00:19](1074 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [16:56, 00:30](1068 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [16:23, 00:29](1076 MB) -PASS -- TEST 'rap_flake_debug_intel' [15:57, 00:41](1073 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:52, 02:01](1078 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:20, 03:22] ( 843 warnings ) -PASS -- TEST 'control_wam_debug_intel' [43:50, 00:57](297 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:42, 18:57] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:51, 00:41](966 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:36, 01:49](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:22, 01:36](786 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:40, 01:33](850 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:30, 01:27](837 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:24, 01:31](785 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:12, 01:31](690 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:37, 00:36](668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:32, 16:06] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [13:54, 01:16](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:03, 00:45](1007 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:50, 00:34](881 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:28, 12:09] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:42, 01:27](810 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:25, 08:29] ( 774 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:31, 01:09](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:05, 01:02](954 MB) -PASS -- TEST 'conus13km_debug_intel' [12:15, 01:02](1037 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:06, 00:54](710 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:51, 00:38](1043 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:42, 00:36](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:17, 04:24] ( 774 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:27, 01:13](979 MB) - -PASS -- COMPILE 'hafsw_intel' [16:31, 15:49] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:23, 02:08](618 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:17, 00:51](971 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:46, 01:30](664 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:35, 01:32](695 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:27, 01:24](713 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:11, 01:08](390 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:49, 01:25](402 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:27, 00:49](282 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:29, 02:10](372 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:13, 01:27](413 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:29, 00:49](418 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 01:42](488 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:00, 01:19](314 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:23, 08:08] ( 1450 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:21, 01:16](496 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:35, 18:52] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:33, 01:38](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:13, 00:47](709 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:30, 11:17] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:04, 00:50](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:29, 13:04] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [04:34, 02:11](664 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [03:47, 01:28](640 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [03:28, 00:17](882 MB) - -PASS -- COMPILE 'atml_intel' [20:35, 16:57] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:20, 02:05](1540 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [03:17, 02:05](1549 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [55:38, 00:51](740 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:21, 05:07] ( 867 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [02:59, 01:25](1559 MB) - -PASS -- COMPILE 'atmaero_intel' [15:28, 10:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [02:19, 00:57](2850 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [01:42, 01:50](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [01:36, 01:29](2922 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:24, 06:27] ( 871 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [01:36, 01:10](4443 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:33, 20:01] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:56, 01:18](2974 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:36, 22:20] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [07:53, 02:00](1596 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [49:57, 01:48](1717 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [49:32, 01:19](847 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:02, 01:29](1573 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:16] ( 1506 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:13, 01:20](1598 MB) + +PASS -- COMPILE 's2swa_intel' [24:39, 23:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [05:51, 01:28](3007 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [05:51, 01:38](3003 MB) +PASS -- TEST 'cpld_restart_p8_intel' [57:24, 01:53](3063 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [05:51, 01:27](3030 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [57:24, 01:48](3080 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [05:51, 01:09](3319 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [05:51, 01:30](3003 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:52, 01:30](2931 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [05:51, 01:40](3003 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [06:00, 04:50](3957 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:46, 04:06](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 01:50](2969 MB) + +PASS -- COMPILE 's2sw_intel' [11:24, 10:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [19:06, 00:46](1587 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:06, 00:57](1640 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:06, 00:59](1633 MB) + +PASS -- COMPILE 's2s_intel' [24:37, 24:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [05:51, 00:44](2649 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:51, 01:33](2672 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:44, 01:12](2106 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 16:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:00, 01:38](3001 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 11:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:05, 01:08](1611 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [00:48, 01:32](902 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [59:28, 01:41](1587 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:22, 08:55] ( 1542 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:08, 01:37](1613 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [23:39, 22:28] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [59:27, 00:23](576 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [59:27, 00:26](1466 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:52, 00:26](1474 MB) +PASS -- TEST 'control_latlon_intel' [58:51, 00:24](1481 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [58:41, 00:33](1471 MB) +PASS -- TEST 'control_c48_intel' [58:30, 00:54](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [58:21, 00:50](718 MB) +PASS -- TEST 'control_c192_intel' [58:22, 00:32](1589 MB) +PASS -- TEST 'control_c384_intel' [58:07, 02:11](1906 MB) +PASS -- TEST 'control_c384gdas_intel' [57:45, 01:45](1093 MB) +PASS -- TEST 'control_stochy_intel' [57:24, 00:27](525 MB) +PASS -- TEST 'control_stochy_restart_intel' [54:56, 01:02](326 MB) +PASS -- TEST 'control_lndp_intel' [57:22, 00:32](527 MB) +PASS -- TEST 'control_iovr4_intel' [57:14, 00:46](524 MB) +PASS -- TEST 'control_iovr5_intel' [57:13, 00:47](524 MB) +PASS -- TEST 'control_p8_intel' [57:02, 01:53](1512 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [56:07, 01:54](1503 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [56:07, 01:57](1509 MB) +PASS -- TEST 'control_restart_p8_intel' [51:41, 01:03](692 MB) +PASS -- TEST 'control_noqr_p8_intel' [55:44, 01:34](1504 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [50:43, 00:58](699 MB) +PASS -- TEST 'control_decomp_p8_intel' [55:32, 01:31](1502 MB) +PASS -- TEST 'control_2threads_p8_intel' [55:30, 00:52](1588 MB) +PASS -- TEST 'control_p8_lndp_intel' [55:08, 01:01](1502 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [55:05, 01:54](1554 MB) +PASS -- TEST 'control_p8_mynn_intel' [55:02, 01:46](1514 MB) +PASS -- TEST 'merra2_thompson_intel' [55:01, 01:32](1512 MB) +PASS -- TEST 'regional_control_intel' [54:58, 00:15](610 MB) +PASS -- TEST 'regional_restart_intel' [49:12, 00:26](779 MB) +PASS -- TEST 'regional_decomp_intel' [54:55, 00:57](607 MB) +PASS -- TEST 'regional_2threads_intel' [54:56, 00:55](664 MB) +PASS -- TEST 'regional_noquilt_intel' [54:47, 00:20](1140 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [53:45, 00:27](608 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [53:44, 00:17](609 MB) +PASS -- TEST 'regional_wofs_intel' [53:35, 00:34](1584 MB) + +PASS -- COMPILE 'rrfs_intel' [16:32, 16:09] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [04:34, 01:41](920 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:35, 01:08](1096 MB) +PASS -- TEST 'rap_decomp_intel' [04:34, 01:27](919 MB) +PASS -- TEST 'rap_2threads_intel' [04:34, 01:44](1008 MB) +PASS -- TEST 'rap_restart_intel' [52:23, 01:05](788 MB) +PASS -- TEST 'rap_sfcdiff_intel' [51:40, 02:07](912 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:34, 01:51](914 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [42:17, 01:49](787 MB) +PASS -- TEST 'hrrr_control_intel' [04:34, 01:04](909 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:34, 01:01](907 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 01:27](996 MB) +PASS -- TEST 'hrrr_control_restart_intel' [51:31, 01:02](743 MB) +PASS -- TEST 'rrfs_v1beta_intel' [04:34, 01:13](914 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [04:34, 00:57](1877 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:34, 01:11](1862 MB) + +PASS -- COMPILE 'csawmg_intel' [24:40, 23:29] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [50:44, 00:34](599 MB) +PASS -- TEST 'control_ras_intel' [50:43, 00:57](563 MB) + +PASS -- COMPILE 'wam_intel' [21:34, 21:09] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [50:43, 00:54](272 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:31, 16:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [50:41, 02:04](1504 MB) +PASS -- TEST 'regional_control_faster_intel' [50:35, 00:25](612 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:25, 09:37] ( 871 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 01:19](1489 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:27, 00:28](1489 MB) +PASS -- TEST 'control_stochy_debug_intel' [50:30, 00:51](695 MB) +PASS -- TEST 'control_lndp_debug_intel' [50:27, 01:11](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [50:14, 00:47](734 MB) +PASS -- TEST 'control_ras_debug_intel' [49:26, 01:10](704 MB) +PASS -- TEST 'control_diag_debug_intel' [49:06, 01:26](1555 MB) +PASS -- TEST 'control_debug_p8_intel' [48:34, 01:04](1518 MB) +PASS -- TEST 'regional_debug_intel' [48:19, 00:49](632 MB) +PASS -- TEST 'rap_control_debug_intel' [48:15, 00:56](1075 MB) +PASS -- TEST 'hrrr_control_debug_intel' [48:11, 01:00](1066 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [48:05, 01:02](1071 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [48:01, 00:56](1070 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [47:58, 00:58](1077 MB) +PASS -- TEST 'rap_diag_debug_intel' [47:23, 00:53](1158 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [47:20, 00:46](1076 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [47:19, 00:49](1074 MB) +PASS -- TEST 'rap_lndp_debug_intel' [47:14, 00:57](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [46:16, 00:54](1076 MB) +PASS -- TEST 'rap_noah_debug_intel' [46:14, 01:02](1073 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [46:01, 01:01](1071 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [46:00, 00:49](1068 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [45:53, 01:01](1074 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [45:29, 01:14](1076 MB) +PASS -- TEST 'rap_flake_debug_intel' [45:12, 00:56](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:58, 01:19](1078 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:27, 12:51] ( 843 warnings ) +PASS -- TEST 'control_wam_debug_intel' [44:54, 00:55](304 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:35, 15:18] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [44:26, 01:22](954 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [44:11, 01:15](789 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [44:10, 02:18](785 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [43:52, 01:33](849 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:38, 00:56](840 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:44, 02:08](785 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [36:43, 01:35](679 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [38:21, 00:22](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:26, 11:49] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [41:43, 01:09](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [37:46, 00:53](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [36:43, 00:44](881 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 12:45] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [41:32, 01:22](811 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:43, 24:59] ( 774 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [38:44, 01:04](952 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [38:23, 01:14](952 MB) +PASS -- TEST 'conus13km_debug_intel' [38:16, 00:24](1035 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [37:53, 01:16](710 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [36:21, 00:28](1037 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [36:03, 00:19](1102 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:25, 08:58] ( 774 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [41:31, 01:00](978 MB) + +PASS -- COMPILE 'hafsw_intel' [17:32, 17:06] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [41:30, 02:07](617 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [40:53, 00:33](966 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [40:51, 01:39](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [40:44, 01:33](698 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [40:44, 01:29](714 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:44, 01:11](384 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [39:44, 02:17](400 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [39:28, 01:41](282 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [39:29, 02:29](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [39:25, 01:34](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [39:02, 01:02](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [35:54, 00:45](496 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [35:53, 00:23](324 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [19:33, 19:00] ( 1450 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [35:37, 00:43](493 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:29, 14:50] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [35:13, 01:41](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [35:04, 01:34](712 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:39, 21:51] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:29, 00:56](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:25, 10:10] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [34:52, 02:11](658 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [34:22, 01:14](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [34:16, 00:23](881 MB) + +PASS -- COMPILE 'atml_intel' [10:23, 10:00] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [34:18, 01:13](1543 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [34:08, 01:13](1547 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [27:31, 00:22](741 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:25, 10:38] ( 867 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [33:58, 01:39](1560 MB) + +PASS -- COMPILE 'atmaero_intel' [13:28, 12:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [33:19, 01:28](2853 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [32:52, 00:58](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:39, 01:50](2924 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:17, 04:01] ( 871 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [32:14, 01:13](4436 MB) SYNOPSIS: -Starting Date/Time: 20240501 14:48:33 -Ending Date/Time: 20240501 16:24:47 -Total Time: 01h:36m:59s +Starting Date/Time: 20240506 19:29:03 +Ending Date/Time: 20240506 20:53:52 +Total Time: 01h:25m:26s Compiles Completed: 31/31 -Tests Completed: 156/156 +Tests Completed: 158/158 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/opnReqTest b/tests/opnReqTest index db44db7c0b..cf854962b7 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -338,10 +338,10 @@ if [[ $MACHINE_ID = hera ]]; then PARTITION= QUEUE=batch COMPILE_QUEUE=batch - dprefix=/scratch1/NCEPDEV - DISKNM=$dprefix/nems/emc.nemspara/RT - STMP=${dprefix}/stmp4 - PTMP=${dprefix}/stmp2 + dprefix="/scratch1/NCEPDEV" + DISKNM="/scratch2/NAGAPE/epic/UFS-WM_RT" + STMP="${dprefix}/stmp4" + PTMP="${dprefix}/stmp2" SCHEDULER=slurm elif [[ $MACHINE_ID = orion ]]; then @@ -632,7 +632,7 @@ fi mkdir -p ${STMP}/${USER} NEW_BASELINE=${STMP}/${USER}/FV3_OPNREQ_TEST/OPNREQ_TEST RTPWD=${NEW_BASELINE} -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20240501} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624/ INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} diff --git a/tests/rt.conf b/tests/rt.conf index 1af875400f..2fa9bfd999 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -22,32 +22,32 @@ ### Intel Tests ### ### S2S tests ### COMPILE | s2swa_32bit | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | -RUN | cpld_control_p8_mixedmode | - noaacloud | baseline | +RUN | cpld_control_p8_mixedmode | - noaacloud | baseline | #GFS COMPILE | s2swa_32bit_pdlib | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | -RUN | cpld_control_gfsv17 | - noaacloud | baseline | -RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17 -RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 -RUN | cpld_mpi_gfsv17 | - noaacloud | | +RUN | cpld_control_gfsv17 | - noaacloud | baseline | +RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17 +RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 +RUN | cpld_mpi_gfsv17 | - noaacloud | | COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | -RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | +RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_p8 | - noaacloud | baseline | -RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | -RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 -RUN | cpld_control_qr_p8 | - noaacloud | | -RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 -RUN | cpld_2threads_p8 | - derecho noaacloud | | -RUN | cpld_decomp_p8 | - noaacloud | | -RUN | cpld_mpi_p8 | - noaacloud | | -RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | -RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline | -RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8 -RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | -RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 +RUN | cpld_control_p8 | - noaacloud | baseline | +RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | +RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 +RUN | cpld_control_qr_p8 | - noaacloud | | +RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 +RUN | cpld_2threads_p8 | - derecho noaacloud | | +RUN | cpld_decomp_p8 | - noaacloud | | +RUN | cpld_mpi_p8 | - noaacloud | | +RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | +RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline | +RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8 +RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | +RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 # Aerosol, no Wave RUN | cpld_s2sa_p8 | - noaacloud | baseline | @@ -67,21 +67,21 @@ COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sf RUN | cpld_control_noaero_p8_agrid | | baseline | COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_c48 | | baseline | -#RUN | cpld_warmstart_c48 | - noaacloud | baseline | -#RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 +RUN | cpld_control_c48 | | baseline | +RUN | cpld_warmstart_c48 | - noaacloud | baseline | +RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 | RUN | cpld_control_p8_faster | - noaacloud | baseline | # Unstructured WW3 mesh COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 | -RUN | cpld_control_pdlib_p8 | - noaacloud | baseline | -RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 -RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 +RUN | cpld_control_pdlib_p8 | - noaacloud | baseline | +RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 +RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 COMPILE | s2sw_pdlib_debug | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | +RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | ### ATM tests ### COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | @@ -220,7 +220,7 @@ COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_H RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | RUN | conus13km_debug | - noaacloud | baseline | -RUN | conus13km_debug_qr | - noaacloud | | +RUN | conus13km_debug_qr | - noaacloud | | RUN | conus13km_debug_2threads | - derecho noaacloud | | RUN | conus13km_radar_tten_debug | - noaacloud | baseline | @@ -288,15 +288,15 @@ RUN | datm_cdeps_control_cfsr_faster | - wcoss2 ### CDEPS Data Atmosphere tests with LND ### COMPILE | datm_cdeps_land | intel | -DAPP=LND | - wcoss2 | fv3 | -RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline | -RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline | -RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5 +RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline | +RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline | +RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5 ### ATM-LND tests ### COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 | -RUN | control_p8_atmlnd_sbs | - noaacloud | baseline | -RUN | control_p8_atmlnd | - noaacloud | baseline | -RUN | control_restart_p8_atmlnd | - noaacloud | | control_p8_atmlnd +RUN | control_p8_atmlnd_sbs | - noaacloud | baseline | +RUN | control_p8_atmlnd | - noaacloud | baseline | +RUN | control_restart_p8_atmlnd | - noaacloud | | control_p8_atmlnd COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON | | fv3 | RUN | control_p8_atmlnd_debug | - noaacloud | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index 4454eb7fed..c55eeaaddb 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -1033,7 +1033,7 @@ if [[ "${CREATE_BASELINE}" == false ]] ; then fi fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-${DISKNM}/NEMSfv3gfs/input-data-20221101} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-${DISKNM}/NEMSfv3gfs/input-data-20240501} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-${DISKNM}/NEMSfv3gfs/BM_IC-20220207} diff --git a/tests/test_changes.list b/tests/test_changes.list index cff472391f..dfc590d291 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,2 +1,52 @@ -merra2_thompson intel -atmaero_control_p8_rad_micro intel +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +datm_cdeps_control_cfsr intel +datm_cdeps_restart_cfsr intel +datm_cdeps_control_gefs intel +datm_cdeps_iau_gefs intel +datm_cdeps_stochy_gefs intel +datm_cdeps_ciceC_cfsr intel +datm_cdeps_bulk_cfsr intel +datm_cdeps_bulk_gefs intel +datm_cdeps_mx025_cfsr intel +datm_cdeps_mx025_gefs intel +datm_cdeps_multiple_files_cfsr intel +datm_cdeps_3072x1536_cfsr intel +datm_cdeps_gfs intel +datm_cdeps_debug_cfsr intel +datm_cdeps_control_cfsr_faster intel +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu +datm_cdeps_control_cfsr gnu From 85d73f2091904fcb434162702182d20c1974aebd Mon Sep 17 00:00:00 2001 From: Fabio L R Diniz <45880035+fabiolrdiniz@users.noreply.github.com> Date: Thu, 9 May 2024 12:02:02 -0600 Subject: [PATCH 08/16] Adding a few JEDI-related aliases into the `fd_ufs.yaml` file+Add option to specify fv3atm history and inline post files output directory #2254 + Bump jinja2 from 3.1.3 to 3.1.4 in /doc/UsersGuide #2270 (#2215) * UFSWM - Add several aliases in `fd_ufs.yaml` needed for JEDI-UFS. Add new model_configure option (fv3atm_output_dir) to specify directory in which all fv3atm history and inline post files will be saved. * FV3 - Add new model_configure option (fv3atm_output_dir) to specify directory in which all history and inline post files will be saved. --------- Co-authored-by: Fabio L R Diniz Co-authored-by: Dom Heinzeller Co-authored-by: Dusan Jovic --- FV3 | 2 +- doc/UsersGuide/requirements.txt | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 169 +--- .../OpnReqTests_regional_control_hera.log | 61 +- tests/logs/RegressionTests_acorn.log | 591 ++++++-------- tests/logs/RegressionTests_derecho.log | 514 ++++++------ tests/logs/RegressionTests_gaea.log | 528 ++++++------ tests/logs/RegressionTests_hera.log | 767 ++++++++---------- tests/logs/RegressionTests_hercules.log | 702 ++++++++-------- tests/logs/RegressionTests_jet.log | 466 +++++------ tests/logs/RegressionTests_orion.log | 528 ++++++------ tests/logs/RegressionTests_wcoss2.log | 530 ++++++------ tests/parm/fd_ufs.yaml | 40 +- tests/test_changes.list | 52 -- 15 files changed, 2407 insertions(+), 2593 deletions(-) diff --git a/FV3 b/FV3 index 683061b3fd..7147dac3d5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 683061b3fd58716625eed61d7a7143e985f733d4 +Subproject commit 7147dac3d5075c38a43cc221d1e7e7337c28437f diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index 3888acb016..7c806c7579 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -26,7 +26,7 @@ importlib-metadata==7.0.1 # via # sphinx # sphinxcontrib-bibtex -jinja2==3.1.3 +jinja2==3.1.4 # via sphinx latexcodec==2.0.1 # via pybtex diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index e829c13338..9b774a47d9 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon May 6 03:31:26 UTC 2024 +Wed May 8 13:41:14 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/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 = 272.641469 - 0: The maximum resident set size (KB) = 1268416 + 0: The total amount of wall time = 268.660502 + 0: The maximum resident set size (KB) = 1268232 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/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 = 939.651847 - 0: The maximum resident set size (KB) = 1254768 + 0: The total amount of wall time = 952.646761 + 0: The maximum resident set size (KB) = 1255292 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/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 = 241.788160 - 0: The maximum resident set size (KB) = 1249176 + 0: The total amount of wall time = 242.733088 + 0: The maximum resident set size (KB) = 1245144 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/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 = 244.812605 - 0: The maximum resident set size (KB) = 1246164 + 0: The total amount of wall time = 239.108039 + 0: The maximum resident set size (KB) = 1248916 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/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 = 242.401979 - 0: The maximum resident set size (KB) = 1247912 + 0: The total amount of wall time = 242.313139 + 0: The maximum resident set size (KB) = 1247708 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/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 = 245.916587 - 0: The maximum resident set size (KB) = 1245720 + 0: The total amount of wall time = 237.668319 + 0: The maximum resident set size (KB) = 1248200 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/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 = 244.965128 - 0: The maximum resident set size (KB) = 1242856 + 0: The total amount of wall time = 243.736914 + 0: The maximum resident set size (KB) = 1248980 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon May 6 04:33:54 UTC 2024 -Elapsed time: 01h:02m:28s. Have a nice day! +Wed May 8 14:43:48 UTC 2024 +Elapsed time: 01h:02m:35s. 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 a36694bc8d..e13da398db 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon May 6 21:46:21 UTC 2024 +Wed May 8 22:03:04 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,159 +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.937513 - 0: The maximum resident set size (KB) = 1366960 + 0: The total amount of wall time = 1313.925417 + 0: The maximum resident set size (KB) = 1367280 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/rst_rst -Checking test rst results .... - Comparing sfcf021.tile1.nc ............MISSING file - Comparing sfcf021.tile2.nc ............MISSING file - Comparing sfcf021.tile3.nc ............MISSING file - Comparing sfcf021.tile4.nc ............MISSING file - Comparing sfcf021.tile5.nc ............MISSING file - Comparing sfcf021.tile6.nc ............MISSING file - Comparing atmf021.tile1.nc ............MISSING file - Comparing atmf021.tile2.nc ............MISSING file - Comparing atmf021.tile3.nc ............MISSING file - Comparing atmf021.tile4.nc ............MISSING file - Comparing atmf021.tile5.nc ............MISSING file - Comparing atmf021.tile6.nc ............MISSING file - Comparing sfcf024.tile1.nc ............MISSING file - Comparing sfcf024.tile2.nc ............MISSING file - Comparing sfcf024.tile3.nc ............MISSING file - Comparing sfcf024.tile4.nc ............MISSING file - Comparing sfcf024.tile5.nc ............MISSING file - Comparing sfcf024.tile6.nc ............MISSING file - Comparing atmf024.tile1.nc ............MISSING file - Comparing atmf024.tile2.nc ............MISSING file - Comparing atmf024.tile3.nc ............MISSING file - Comparing atmf024.tile4.nc ............MISSING file - Comparing atmf024.tile5.nc ............MISSING file - Comparing atmf024.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.coupler.res ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING file - Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING file - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING file - - -Test rst FAIL - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/std_base_std_base -Checking test std_base results .... -Moving baseline std_base files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Moving RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 398.324973 - 0: The maximum resident set size (KB) = 1344212 - -Test std_base PASS - -FAILED TESTS: -Test rst failed in check_result failed -OPERATION REQUIREMENT TEST FAILED -Tue May 7 00:38:15 UTC 2024 -Elapsed time: 02h:51m:56s. Have a nice day! -Tue May 7 01:53:20 UTC 2024 -Start Operation Requirement Test - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322035/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -280,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 = 405.576010 - 0: The maximum resident set size (KB) = 1340024 + 0: The total amount of wall time = 618.318216 + 0: The maximum resident set size (KB) = 1359788 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322035/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -350,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 = 395.446701 - 0: The maximum resident set size (KB) = 1344300 + 0: The total amount of wall time = 541.651862 + 0: The maximum resident set size (KB) = 1359804 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue May 7 02:25:02 UTC 2024 -Elapsed time: 00h:31m:43s. Have a nice day! +Wed May 8 23:07:07 UTC 2024 +Elapsed time: 01h:04m:04s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 126227365f..8803c1624f 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon May 6 13:15:23 UTC 2024 +Wed May 8 18:21:05 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2920818/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving dynf000.nc .........OK @@ -15,14 +15,20 @@ Moving baseline bit_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1289.474304 - 0: The maximum resident set size (KB) = 591012 + 0: The total amount of wall time = 1309.798707 + 0: The maximum resident set size (KB) = 596032 Test bit_base PASS +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Wed May 8 18:47:56 UTC 2024 +Elapsed time: 00h:26m:51s. Have a nice day! +Wed May 8 18:48:27 UTC 2024 +Start Operation Requirement Test + baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3015786/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -33,14 +39,39 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2173.814168 - 0: The maximum resident set size (KB) = 555696 + 0: The total amount of wall time = 2158.789432 + 0: The maximum resident set size (KB) = 560836 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3015786/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 2165.997972 + 0: The maximum resident set size (KB) = 556908 + +Test std_base PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Wed May 8 20:07:02 UTC 2024 +Elapsed time: 01h:18m:35s. Have a nice day! +Wed May 8 20:12:02 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3343721/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -52,14 +83,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2138.683822 - 0: The maximum resident set size (KB) = 555504 + 0: The total amount of wall time = 2128.207151 + 0: The maximum resident set size (KB) = 555744 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3343721/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -70,11 +101,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2194.552952 - 0: The maximum resident set size (KB) = 553188 + 0: The total amount of wall time = 2139.117039 + 0: The maximum resident set size (KB) = 580480 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon May 6 15:40:27 UTC 2024 -Elapsed time: 02h:25m:06s. Have a nice day! +Wed May 8 21:29:22 UTC 2024 +Elapsed time: 01h:17m:20s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 0f9cea2320..db9e35c572 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -185711d25b9d234f2d48a5cfb21b8e8295193f61 +11f08c4352632e1432d9c38e6d066387da2828e1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,12 +11,12 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) + cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) - cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -35,340 +35,267 @@ 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-20240430 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_5114 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_210135 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:09, 01:58](2991 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [01:02, 03:28](1617 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:22, 03:20](1739 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [27:46, 02:21](877 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:03, 03:01](1594 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:14] ( 1527 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [13:16, 03:04](1645 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 10:31] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:09, 01:31](3020 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:09, 02:04](3020 MB) -PASS -- TEST 'cpld_restart_p8_intel' [58:06, 02:30](3077 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:09, 01:43](3043 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [39:37, 02:22](3096 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:09, 01:56](3328 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:09, 01:30](3016 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:10, 01:55](2944 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:09, 02:00](3020 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 02:17](2986 MB) - -PASS -- COMPILE 's2sw_intel' [10:23, 10:10] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:10, 01:07](1614 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:10, 01:32](1643 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:40] ( 2 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:09, 01:32](1645 MB) - -PASS -- COMPILE 's2s_intel' [10:24, 09:37] ( 2 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:08, 01:00](2638 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:47] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [02:03, 01:59](3020 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 16:17] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [02:03, 01:50](1630 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:52, 01:09](934 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:38, 01:06](1603 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:03] ( 1562 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [14:16, 01:20](1659 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [36:55, 09:46] ( 3 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [36:59, 01:13](610 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [34:46, 00:44](1500 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:45, 00:56](1508 MB) -PASS -- TEST 'control_latlon_intel' [32:46, 00:42](1504 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:42, 00:55](1503 MB) -PASS -- TEST 'control_c48_intel' [32:41, 01:06](1585 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [32:41, 00:46](713 MB) -PASS -- TEST 'control_c192_intel' [32:42, 00:44](1620 MB) -PASS -- TEST 'control_c384_intel' [32:46, 02:19](1932 MB) -PASS -- TEST 'control_c384gdas_intel' [32:34, 03:43](1118 MB) -PASS -- TEST 'control_stochy_intel' [31:41, 00:54](567 MB) -PASS -- TEST 'control_stochy_restart_intel' [27:08, 00:18](372 MB) -PASS -- TEST 'control_lndp_intel' [31:40, 01:00](565 MB) -PASS -- TEST 'control_iovr4_intel' [30:50, 00:34](561 MB) -PASS -- TEST 'control_iovr5_intel' [30:09, 01:16](561 MB) -PASS -- TEST 'control_p8_intel' [30:02, 02:49](1534 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [23:59, 02:30](1535 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [29:36, 02:15](1537 MB) -PASS -- TEST 'control_restart_p8_intel' [21:20, 02:07](726 MB) -PASS -- TEST 'control_noqr_p8_intel' [29:04, 01:28](1525 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [20:10, 01:37](732 MB) -PASS -- TEST 'control_decomp_p8_intel' [29:04, 01:21](1529 MB) -PASS -- TEST 'control_2threads_p8_intel' [27:44, 01:18](1621 MB) -PASS -- TEST 'control_p8_lndp_intel' [27:08, 01:04](1535 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [26:37, 02:08](1588 MB) -PASS -- TEST 'control_p8_mynn_intel' [26:37, 02:31](1539 MB) -PASS -- TEST 'merra2_thompson_intel' [26:36, 01:41](1539 MB) -PASS -- TEST 'regional_control_intel' [26:33, 01:02](606 MB) -PASS -- TEST 'regional_restart_intel' [14:19, 00:23](776 MB) -PASS -- TEST 'regional_decomp_intel' [26:22, 01:09](605 MB) -PASS -- TEST 'regional_2threads_intel' [26:19, 00:28](695 MB) -PASS -- TEST 'regional_noquilt_intel' [26:17, 00:26](1139 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [25:53, 00:51](606 MB) -PASS -- TEST 'regional_wofs_intel' [25:46, 00:12](1573 MB) - -PASS -- COMPILE 'ifi_intel' [34:51, 08:24] ( 2 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [37:50, 00:55](606 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [37:49, 00:26](606 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [37:49, 00:56](695 MB) - -PASS -- COMPILE 'rrfs_intel' [29:47, 09:09] ( 5 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [24:15, 02:56](943 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:43, 01:34](1112 MB) -PASS -- TEST 'rap_decomp_intel' [23:33, 02:24](943 MB) -PASS -- TEST 'rap_2threads_intel' [22:33, 02:18](1027 MB) -PASS -- TEST 'rap_restart_intel' [07:49, 02:20](814 MB) -PASS -- TEST 'rap_sfcdiff_intel' [21:57, 03:13](940 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:13, 02:50](943 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 03:06](813 MB) -PASS -- TEST 'hrrr_control_intel' [12:29, 02:24](935 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [19:12, 02:58](937 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [16:44, 01:28](1013 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:58, 00:25](769 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:16, 02:48](936 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:14, 00:42](1902 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:52, 00:26](1891 MB) - -PASS -- COMPILE 'csawmg_intel' [29:47, 08:45] ( 3 warnings ) -PASS -- TEST 'control_csawmg_intel' [14:48, 01:24](632 MB) - -PASS -- COMPILE 'wam_intel' [29:47, 08:30] ( 2 warnings ) -PASS -- TEST 'control_wam_intel' [14:39, 01:13](309 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [28:42, 09:05] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [14:11, 02:01](1533 MB) -PASS -- TEST 'regional_control_faster_intel' [14:08, 00:26](605 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [24:38, 04:30] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [42:30, 00:37](1532 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:21, 00:53](1533 MB) -PASS -- TEST 'control_stochy_debug_intel' [42:30, 00:56](741 MB) -PASS -- TEST 'control_lndp_debug_intel' [42:30, 01:15](742 MB) -PASS -- TEST 'control_csawmg_debug_intel' [42:30, 00:56](777 MB) -PASS -- TEST 'control_ras_debug_intel' [42:30, 01:15](752 MB) -PASS -- TEST 'control_diag_debug_intel' [42:30, 00:26](1594 MB) -PASS -- TEST 'control_debug_p8_intel' [42:30, 01:09](1564 MB) -PASS -- TEST 'regional_debug_intel' [42:29, 00:17](645 MB) -PASS -- TEST 'rap_control_debug_intel' [42:30, 00:47](1120 MB) -PASS -- TEST 'hrrr_control_debug_intel' [42:30, 00:50](1113 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [42:30, 00:24](1116 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [42:30, 00:23](1117 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [42:30, 01:10](1120 MB) -PASS -- TEST 'rap_diag_debug_intel' [42:30, 00:43](1202 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:30, 00:16](1120 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [42:30, 00:51](1119 MB) -PASS -- TEST 'rap_lndp_debug_intel' [42:30, 00:28](1122 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:30, 01:00](1120 MB) -PASS -- TEST 'rap_noah_debug_intel' [42:30, 00:53](1118 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [42:30, 00:51](1117 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:30, 00:44](1118 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [41:20, 01:03](1112 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [39:28, 00:33](1120 MB) -PASS -- TEST 'rap_flake_debug_intel' [39:17, 00:44](1120 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:44, 02:29](1122 MB) - -PASS -- COMPILE 'wam_debug_intel' [18:33, 03:15] ( 857 warnings ) -PASS -- TEST 'control_wam_debug_intel' [43:29, 01:00](353 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:38, 08:33] ( 5 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:20, 01:00](980 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:50, 02:48](822 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:47, 03:22](821 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:14, 02:35](878 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:12, 02:13](868 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:08, 02:27](818 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [01:21, 01:30](718 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 00:34](700 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:38, 10:46] ( 5 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:38, 01:08](1030 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:20, 00:42](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:19, 00:24](911 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 08:39] ( 5 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:08, 00:56](845 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:16, 03:17] ( 789 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:49, 01:06](997 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:49, 01:03](996 MB) -PASS -- TEST 'conus13km_debug_intel' [07:34, 00:42](1084 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [07:34, 00:26](758 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [06:23, 00:20](1059 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:58, 01:16](1151 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:55, 03:20] ( 789 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [00:30, 00:43](1017 MB) - -PASS -- COMPILE 'hafsw_intel' [45:01, 09:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [53:25, 01:37](643 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [53:25, 00:45](989 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [53:23, 01:29](693 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [53:23, 01:42](726 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:24, 01:44](744 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:23, 00:57](412 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [53:24, 02:24](435 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [53:24, 01:52](310 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [53:27, 02:53](375 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [53:23, 01:22](445 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:23, 01:41](446 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:25, 00:45](512 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:24, 00:30](339 MB) -PASS -- TEST 'gnv1_nested_intel' [53:24, 01:53](699 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [38:54, 03:46] ( 1469 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [59:31, 00:42](540 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [45:00, 10:02] ( 2 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:24, 00:56](552 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [53:24, 01:12](723 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [45:00, 09:53] ( 2 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:23, 01:18](723 MB) - -PASS -- COMPILE 'hafs_all_intel' [45:00, 09:29] ( 2 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [53:21, 02:04](684 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:21, 02:08](672 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:19, 00:49](888 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [47:01, 09:07] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:10, 00:14](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [44:43, 00:33](745 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:10, 00:53](634 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [44:45, 00:58](636 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [51:10, 00:16](634 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [50:40, 00:55](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [50:11, 00:19](756 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [50:11, 00:30](634 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:16, 01:51](641 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [48:01, 01:15](622 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [46:53, 00:18](756 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [46:47, 00:39](2010 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [46:47, 00:43](2010 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [46:01, 08:56] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [51:17, 00:53](745 MB) - -FAILED: UNABLE TO COMPILE -- COMPILE 'datm_cdeps_land_intel' [, ] -FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_gswp3_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_era5_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_era5_rst_intel' [, ]( MB) - -PASS -- COMPILE 'atml_intel' [44:00, 09:57] ( 10 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [45:28, 02:13](1572 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [44:45, 02:39](1573 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:46, 01:10](779 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:17, 04:06] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [55:13, 02:31](1605 MB) - -PASS -- COMPILE 'atmw_intel' [09:23, 09:02] ( 2 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [44:02, 02:38](1574 MB) - -PASS -- COMPILE 'atmaero_intel' [09:21, 08:59] ( 2 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [43:04, 01:50](2870 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [41:45, 02:07](2930 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [41:44, 01:46](2942 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:16, 03:27] ( 886 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [41:33, 02:19](4338 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:22, 10:08] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [51:27, 01:23](3047 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:28, 15:44] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [45:10, 01:31](1655 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:12, 01:10](1777 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [19:08, 01:32](911 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [45:00, 02:02](1631 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:16, 03:43] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [57:34, 01:06](1673 MB) + +PASS -- COMPILE 's2swa_intel' [10:22, 10:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [51:27, 01:20](3076 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [51:27, 01:30](3077 MB) +PASS -- TEST 'cpld_restart_p8_intel' [43:04, 01:27](3131 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [51:27, 01:23](3096 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [43:03, 01:23](3149 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [51:27, 01:03](3384 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [51:27, 01:26](3072 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [51:28, 01:24](3001 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [51:27, 00:55](3074 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [51:27, 00:48](3042 MB) + +PASS -- COMPILE 's2sw_intel' [10:22, 09:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [51:27, 00:51](1653 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:27, 00:57](1695 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:22, 09:05] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [42:35, 01:02](1700 MB) + +PASS -- COMPILE 's2s_intel' [09:21, 09:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [52:27, 00:41](2678 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [52:27, 00:28](2696 MB) +PASS -- TEST 'cpld_restart_c48_intel' [49:34, 01:18](2130 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:27, 14:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [44:30, 01:28](3076 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:27, 15:11] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [43:57, 01:11](1671 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:32, 01:14](969 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:28, 00:36](1644 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:10] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [56:32, 01:28](1683 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:22, 09:09] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [48:10, 01:09](637 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [48:10, 01:07](1527 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:10, 01:08](1546 MB) +PASS -- TEST 'control_latlon_intel' [48:10, 00:57](1540 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:10, 01:04](1534 MB) +PASS -- TEST 'control_c48_intel' [48:09, 00:47](1616 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [48:09, 01:18](742 MB) +PASS -- TEST 'control_c192_intel' [48:10, 01:14](1650 MB) +PASS -- TEST 'control_c384_intel' [48:14, 01:52](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [48:14, 01:40](1157 MB) +PASS -- TEST 'control_stochy_intel' [48:10, 00:48](596 MB) +PASS -- TEST 'control_stochy_restart_intel' [41:40, 00:55](397 MB) +PASS -- TEST 'control_lndp_intel' [48:10, 00:37](592 MB) +PASS -- TEST 'control_iovr4_intel' [48:10, 00:26](588 MB) +PASS -- TEST 'control_iovr5_intel' [48:10, 01:02](587 MB) +PASS -- TEST 'control_p8_intel' [48:10, 01:03](1562 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [43:55, 01:31](1563 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [43:09, 01:12](1575 MB) +PASS -- TEST 'control_restart_p8_intel' [33:29, 01:29](758 MB) +PASS -- TEST 'control_noqr_p8_intel' [41:40, 01:55](1557 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [28:12, 01:13](760 MB) +PASS -- TEST 'control_decomp_p8_intel' [40:50, 01:02](1561 MB) +PASS -- TEST 'control_2threads_p8_intel' [40:37, 00:58](1653 MB) +PASS -- TEST 'control_p8_lndp_intel' [38:45, 00:29](1573 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [38:35, 01:26](1625 MB) +PASS -- TEST 'control_p8_mynn_intel' [37:47, 01:14](1572 MB) +PASS -- TEST 'merra2_thompson_intel' [36:48, 01:48](1573 MB) +PASS -- TEST 'regional_control_intel' [36:31, 00:44](631 MB) +PASS -- TEST 'regional_restart_intel' [24:46, 00:24](800 MB) +PASS -- TEST 'regional_decomp_intel' [21:24, 00:20](632 MB) +PASS -- TEST 'regional_2threads_intel' [35:07, 00:25](728 MB) +PASS -- TEST 'regional_noquilt_intel' [34:53, 00:47](1167 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [34:01, 00:25](634 MB) +PASS -- TEST 'regional_wofs_intel' [32:17, 00:39](1609 MB) + +PASS -- COMPILE 'ifi_intel' [08:21, 07:56] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [31:44, 01:02](631 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [31:04, 00:19](631 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [30:37, 00:52](727 MB) + +PASS -- COMPILE 'rrfs_intel' [09:22, 08:39] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [30:29, 01:25](974 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:45, 00:29](1154 MB) +PASS -- TEST 'rap_decomp_intel' [29:11, 01:30](975 MB) +PASS -- TEST 'rap_2threads_intel' [28:29, 00:44](1061 MB) +PASS -- TEST 'rap_restart_intel' [21:12, 01:54](843 MB) +PASS -- TEST 'rap_sfcdiff_intel' [28:29, 01:17](971 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [28:12, 00:55](972 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [19:13, 01:11](845 MB) +PASS -- TEST 'hrrr_control_intel' [28:04, 01:19](964 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [27:44, 01:01](970 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [27:14, 01:10](1052 MB) +PASS -- TEST 'hrrr_control_restart_intel' [21:50, 00:22](795 MB) +PASS -- TEST 'rrfs_v1beta_intel' [26:28, 01:36](970 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [26:28, 00:54](1931 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:26, 01:02](1920 MB) + +PASS -- COMPILE 'csawmg_intel' [09:21, 08:20] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [26:11, 00:55](662 MB) + +PASS -- COMPILE 'wam_intel' [42:59, 08:04] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [00:05, 00:35](332 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:41] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [25:53, 01:37](1560 MB) +PASS -- TEST 'regional_control_faster_intel' [25:49, 00:30](628 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 03:58] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [25:16, 00:27](1560 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:58, 01:00](1564 MB) +PASS -- TEST 'control_stochy_debug_intel' [23:52, 00:56](764 MB) +PASS -- TEST 'control_lndp_debug_intel' [23:49, 01:03](775 MB) +PASS -- TEST 'control_csawmg_debug_intel' [22:09, 01:06](801 MB) +PASS -- TEST 'control_ras_debug_intel' [21:50, 00:35](774 MB) +PASS -- TEST 'control_diag_debug_intel' [20:35, 01:10](1626 MB) +PASS -- TEST 'control_debug_p8_intel' [20:34, 00:57](1595 MB) +PASS -- TEST 'regional_debug_intel' [19:36, 00:43](673 MB) +PASS -- TEST 'rap_control_debug_intel' [19:17, 00:27](1147 MB) +PASS -- TEST 'hrrr_control_debug_intel' [19:13, 00:37](1139 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [18:27, 00:59](1141 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [18:25, 00:33](1144 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [18:24, 00:28](1146 MB) +PASS -- TEST 'rap_diag_debug_intel' [17:13, 00:31](1229 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [17:12, 00:30](1147 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:57, 00:27](1148 MB) +PASS -- TEST 'rap_lndp_debug_intel' [16:30, 01:04](1148 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [16:07, 01:00](1145 MB) +PASS -- TEST 'rap_noah_debug_intel' [15:56, 00:26](1143 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [15:56, 00:27](1145 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:53, 01:09](1146 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [15:50, 01:11](1137 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [15:31, 01:10](1147 MB) +PASS -- TEST 'rap_flake_debug_intel' [14:58, 00:28](1145 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:04, 01:21](1150 MB) + +PASS -- COMPILE 'wam_debug_intel' [40:56, 02:51] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:13, 01:02](376 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [45:01, 08:08] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:21, 00:53](1020 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:20, 01:26](853 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:20, 01:58](849 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:20, 01:52](913 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [01:21, 01:56](904 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [01:20, 01:38](852 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:59, 01:33](747 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:17, 00:44](732 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [48:03, 10:16] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [58:18, 00:38](1061 MB) +PASS -- TEST 'conus13km_2threads_intel' [27:59, 00:17](1041 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [27:58, 00:55](941 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [44:59, 08:17] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [00:21, 01:21](873 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [37:51, 03:02] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:13, 01:08](1026 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 00:14](1021 MB) +PASS -- TEST 'conus13km_debug_intel' [05:13, 00:58](1112 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [05:13, 00:41](789 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [05:14, 00:31](1087 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:13, 00:17](1184 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:53, 02:55] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:10, 01:07](1046 MB) + +PASS -- COMPILE 'hafsw_intel' [43:57, 09:17] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [46:28, 01:45](674 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [58:10, 00:38](1027 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [58:08, 02:01](712 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [58:08, 01:35](761 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [58:09, 02:06](769 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [58:08, 01:30](441 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:09, 02:04](464 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [58:09, 01:02](339 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [58:12, 02:38](400 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [58:08, 00:41](479 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:08, 00:56](479 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [58:10, 01:24](537 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [58:09, 01:09](370 MB) +PASS -- TEST 'gnv1_nested_intel' [57:41, 01:17](733 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [37:51, 03:19] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:15, 01:04](571 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [40:55, 09:30] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [56:37, 01:12](577 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [55:26, 01:23](752 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:23, 09:33] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:24, 01:03](755 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:22, 09:00] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [52:37, 01:29](714 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [51:00, 02:08](698 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [50:04, 00:47](897 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:22, 08:38] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [48:08, 00:34](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [43:46, 00:11](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [48:08, 00:45](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [46:01, 00:17](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [45:19, 00:46](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [44:56, 00:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [43:47, 00:37](762 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [43:07, 01:03](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [42:52, 00:47](645 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [42:25, 01:13](627 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:40, 00:18](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [40:59, 00:50](2019 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [40:36, 00:56](2025 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:24, 07:46] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [40:16, 00:11](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:13, 00:50] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:07, 00:45](266 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:07, 00:49](412 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [39:57, 00:12](411 MB) + +PASS -- COMPILE 'atml_intel' [11:23, 09:45] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:24, 01:48](1608 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [39:09, 01:53](1611 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [28:45, 00:27](803 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:17, 03:33] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [38:27, 01:20](1631 MB) + +PASS -- COMPILE 'atmw_intel' [10:23, 08:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:00, 01:38](1611 MB) + +PASS -- COMPILE 'atmaero_intel' [11:23, 08:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [37:21, 01:42](2916 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [36:04, 01:25](2983 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [35:38, 01:09](2991 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:20, 03:03] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [34:56, 01:20](4501 MB) SYNOPSIS: -Starting Date/Time: 20240501 14:40:58 -Ending Date/Time: 20240501 17:04:01 -Total Time: 02h:23m:30s -Compiles Completed: 35/36 -Tests Completed: 171/174 -Failed Compiles: -* COMPILE datm_cdeps_land_intel: FAILED: UNABLE TO COMPILE --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/AnningCheng-NOAA/ufs-weather-model/tests/logs/log_acorn/compile_datm_cdeps_land_intel.log -Failed Tests: -* TEST datm_cdeps_lnd_gswp3_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST datm_cdeps_lnd_era5_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST datm_cdeps_lnd_era5_rst_intel: FAILED: UNABLE TO START RUN --- LOG: N/A - -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: -185711d25b9d234f2d48a5cfb21b8e8295193f61 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) - 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679) - cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -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-20240430 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29444 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'datm_cdeps_land_intel' [15:28, 01:07] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [34:25, 00:50](269 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [34:25, 00:43](407 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [31:53, 01:01](408 MB) - -SYNOPSIS: -Starting Date/Time: 20240501 17:09:54 -Ending Date/Time: 20240501 17:31:57 -Total Time: 00h:22m:12s -Compiles Completed: 1/1 -Tests Completed: 3/3 +Starting Date/Time: 20240509 10:57:51 +Ending Date/Time: 20240509 12:51:12 +Total Time: 01h:53m:37s +Compiles Completed: 36/36 +Tests Completed: 176/176 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 a0b92401cb..00f3b3ffda 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 +1b73dc3cfe52765a05ce8ae57735fef196de5fab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,12 +11,12 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) + cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,268 +36,268 @@ 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-20240503 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_78724 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_15947 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [28:39, 19:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:42, 04:55](3074 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:39, 21:09] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:13, 13:45](1689 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:14, 15:07](1827 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:37, 07:12](958 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [09:00, 15:49](1656 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:40, 09:33] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [19:48, 21:23](1708 MB) - -PASS -- COMPILE 's2swa_intel' [28:43, 19:34] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:47, 05:38](3091 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:46, 05:35](3092 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:28, 03:19](3149 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:57, 05:36](3128 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:04, 03:19](3180 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [05:37, 05:32](3090 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:37, 04:36](3390 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:56, 05:36](3104 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:24, 08:46](3633 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:06, 06:01](3614 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:36, 09:48](4345 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:22, 07:13](4651 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:34, 05:16](3069 MB) - -PASS -- COMPILE 's2sw_intel' [27:43, 19:02] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:50, 04:11](1681 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:03, 04:16](1732 MB) - -PASS -- COMPILE 's2swa_debug_intel' [18:36, 09:30] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [21:06, 07:44](3148 MB) - -PASS -- COMPILE 's2sw_debug_intel' [17:38, 08:48] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [25:42, 05:15](1707 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [23:39, 14:36] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:49, 04:16](1728 MB) - -PASS -- COMPILE 's2s_intel' [23:39, 14:33] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [28:28, 06:42](2666 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [24:30, 02:00](2683 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:13, 01:08](2123 MB) - -PASS -- COMPILE 's2swa_faster_intel' [32:44, 23:13] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:07, 05:31](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:34, 19:46] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:42, 14:11](1702 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:11, 07:19](1017 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:49, 16:03](1672 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [35:33, 08:45] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:38, 22:54](1718 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:29, 12:35] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:26, 03:24](672 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 02:26](1563 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:16, 02:28](1578 MB) -PASS -- TEST 'control_latlon_intel' [05:02, 02:23](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:19, 02:24](1574 MB) -PASS -- TEST 'control_c48_intel' [13:13, 06:13](1618 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:34, 05:15](735 MB) -PASS -- TEST 'control_c192_intel' [13:41, 08:42](1687 MB) -PASS -- TEST 'control_c384_intel' [15:38, 09:02](2006 MB) -PASS -- TEST 'control_c384gdas_intel' [15:59, 07:25](1208 MB) -PASS -- TEST 'control_stochy_intel' [03:45, 01:26](630 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:41, 00:53](437 MB) -PASS -- TEST 'control_lndp_intel' [02:32, 01:23](625 MB) -PASS -- TEST 'control_iovr4_intel' [03:49, 02:07](622 MB) -PASS -- TEST 'control_iovr5_intel' [03:50, 02:05](625 MB) -PASS -- TEST 'control_p8_intel' [06:14, 02:28](1595 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 02:28](1595 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 02:28](1603 MB) -PASS -- TEST 'control_restart_p8_intel' [05:24, 01:30](802 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:22, 02:28](1593 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 01:28](804 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:11, 02:33](1600 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:45, 04:30](1593 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:14, 03:17](1653 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:05, 02:31](1606 MB) -PASS -- TEST 'merra2_thompson_intel' [05:43, 02:48](1604 MB) -PASS -- TEST 'regional_control_intel' [06:53, 04:35](631 MB) -PASS -- TEST 'regional_restart_intel' [06:00, 02:30](801 MB) -PASS -- TEST 'regional_decomp_intel' [06:47, 04:52](630 MB) -PASS -- TEST 'regional_noquilt_intel' [07:03, 04:36](1162 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:06, 04:36](625 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:02, 04:36](632 MB) -PASS -- TEST 'regional_wofs_intel' [08:01, 05:56](1599 MB) - -PASS -- COMPILE 'rrfs_intel' [32:29, 11:13] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:07, 06:06](1005 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:47, 03:44](1195 MB) -PASS -- TEST 'rap_decomp_intel' [09:18, 06:23](1005 MB) -PASS -- TEST 'rap_restart_intel' [05:18, 03:22](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:18, 06:05](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:13, 06:28](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:22, 04:34](881 MB) -PASS -- TEST 'hrrr_control_intel' [05:08, 03:12](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:08, 03:20](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:07, 02:47](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:51, 01:45](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:52, 06:01](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:31, 07:24](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:39, 07:07](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [31:33, 10:17] ( 6 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:59, 05:56](695 MB) -PASS -- TEST 'control_ras_intel' [04:37, 02:57](655 MB) - -PASS -- COMPILE 'wam_intel' [27:26, 09:35] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:31, 01:56](385 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [29:34, 12:35] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:21, 02:24](1604 MB) -PASS -- TEST 'regional_control_faster_intel' [06:46, 04:18](626 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [25:26, 08:32] ( 890 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:04, 02:31](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:05, 02:27](1594 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:14, 02:55](800 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:15, 02:34](800 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:00, 03:55](840 MB) -PASS -- TEST 'control_ras_debug_intel' [06:14, 02:35](811 MB) -PASS -- TEST 'control_diag_debug_intel' [09:08, 02:35](1667 MB) -PASS -- TEST 'control_debug_p8_intel' [08:01, 02:38](1623 MB) -PASS -- TEST 'regional_debug_intel' [19:02, 16:05](664 MB) -PASS -- TEST 'rap_control_debug_intel' [08:35, 04:39](1180 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:30, 04:36](1178 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:30, 04:37](1182 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 04:38](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:38, 04:42](1181 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:06, 04:53](1268 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:37, 04:46](1182 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:37, 04:50](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:43, 04:38](1185 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:40, 04:40](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:39, 04:31](1178 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:38, 04:44](1183 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 07:32](1181 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:37, 04:34](1177 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 05:23](1185 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:44, 04:43](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:01, 07:54](1187 MB) - -PASS -- COMPILE 'wam_debug_intel' [20:30, 05:21] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:25, 04:40](425 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [22:34, 09:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:34, 03:44](1062 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:02, 05:08](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:58, 02:47](882 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:56, 02:54](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:51](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:32](780 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:14, 11:34] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:29, 01:53](1087 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:42, 00:58](1087 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:31, 01:07](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 09:37] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:55, 03:38](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 05:43] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:30, 04:29](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 04:25](1056 MB) -PASS -- TEST 'conus13km_debug_intel' [17:54, 13:17](1136 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:53, 13:25](819 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:50, 13:18](1202 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:14, 05:22] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:36](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [18:18, 15:43] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:29, 04:32](718 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 05:04](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:42, 06:26](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:30, 10:53](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:51, 12:03](812 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:20, 04:40](475 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:46, 05:45](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:09, 02:21](391 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:47, 06:15](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:19](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:26, 03:05](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:30, 03:47](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:16](426 MB) -PASS -- TEST 'gnv1_nested_intel' [06:17, 03:23](792 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [21:23, 07:08] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:26, 12:07](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [32:21, 19:19] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:32, 07:03](626 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:51, 07:10](691 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [27:20, 16:31] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:26, 05:17](676 MB) - -PASS -- COMPILE 'hafs_all_intel' [25:24, 14:04] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:31, 05:34](760 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:29, 05:35](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:20, 16:12](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:13, 07:44] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:32, 02:30](747 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:37, 01:34](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:28, 02:22](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:37, 02:23](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:35, 02:23](648 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:36, 02:29](748 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:37, 02:29](762 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:41, 02:22](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:46, 05:42](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:34, 05:41](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:29](748 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 03:52](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:32, 03:57](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 05:02] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:33, 05:03](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:19, 07:45] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:29, 02:30](760 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:12, 02:19] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:43, 01:08](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 01:04](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:44](451 MB) - -PASS -- COMPILE 'atml_intel' [17:13, 12:54] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:00, 06:02](1641 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:46, 06:17](1635 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:03, 03:16](851 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:19, 07:33] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 05:29](1665 MB) - -PASS -- COMPILE 'atmw_intel' [16:20, 12:40] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:35, 01:33](1637 MB) - -PASS -- COMPILE 'atmaero_intel' [14:13, 11:05] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:35, 03:36](2950 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:43, 04:13](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 04:19](3010 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:13, 06:12] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:24, 22:12](4531 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:51, 20:04] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:04, 04:57](3072 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:51, 20:27] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [28:28, 13:45](1697 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:42, 15:10](1827 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 07:19](958 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 15:49](1659 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:19, 10:42] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:35, 21:17](1694 MB) + +PASS -- COMPILE 's2swa_intel' [21:51, 20:04] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:28, 05:39](3092 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:12, 05:37](3092 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:31, 03:19](3150 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:07, 05:40](3125 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:51, 03:20](3179 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:44, 05:34](3092 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:49, 04:37](3400 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:05, 05:35](3100 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [31:09, 08:53](3636 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [19:01, 05:52](3617 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [36:12, 09:48](4343 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [42:55, 07:04](4651 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:31, 05:14](3067 MB) + +PASS -- COMPILE 's2sw_intel' [22:51, 19:14] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:16, 04:12](1690 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:28, 04:16](1731 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:49, 10:37] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:28, 07:43](3156 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:46, 10:03] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:10, 05:20](1708 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:50, 14:51] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 04:18](1736 MB) + +PASS -- COMPILE 's2s_intel' [17:50, 14:51] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [27:52, 06:40](2667 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [21:42, 01:57](2691 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:28, 01:12](2121 MB) + +PASS -- COMPILE 's2swa_faster_intel' [09:48, 23:12] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:26, 05:27](3102 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [53:49, 20:09] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:52, 14:01](1706 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:07, 07:28](1021 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:24, 16:01](1678 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:53, 09:55] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:00, 22:59](1712 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [07:51, 12:49] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:40, 03:23](672 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:17, 02:22](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:29, 02:24](1571 MB) +PASS -- TEST 'control_latlon_intel' [04:20, 02:22](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:17, 02:27](1568 MB) +PASS -- TEST 'control_c48_intel' [08:16, 06:12](1620 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:13](738 MB) +PASS -- TEST 'control_c192_intel' [11:56, 08:43](1694 MB) +PASS -- TEST 'control_c384_intel' [16:49, 08:56](2010 MB) +PASS -- TEST 'control_c384gdas_intel' [18:01, 07:22](1203 MB) +PASS -- TEST 'control_stochy_intel' [02:28, 01:24](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:37, 00:51](441 MB) +PASS -- TEST 'control_lndp_intel' [02:41, 01:20](626 MB) +PASS -- TEST 'control_iovr4_intel' [03:57, 02:04](624 MB) +PASS -- TEST 'control_iovr5_intel' [03:56, 02:03](624 MB) +PASS -- TEST 'control_p8_intel' [04:51, 02:29](1597 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:50, 02:30](1595 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:51, 02:30](1604 MB) +PASS -- TEST 'control_restart_p8_intel' [03:31, 01:23](801 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:44, 02:27](1592 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:28, 01:23](808 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:33](1590 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:31, 04:20](1604 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:17](1661 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:31](1606 MB) +PASS -- TEST 'merra2_thompson_intel' [05:46, 02:47](1608 MB) +PASS -- TEST 'regional_control_intel' [06:05, 04:30](628 MB) +PASS -- TEST 'regional_restart_intel' [04:06, 02:29](801 MB) +PASS -- TEST 'regional_decomp_intel' [06:58, 04:44](632 MB) +PASS -- TEST 'regional_noquilt_intel' [06:11, 04:25](1161 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:16, 04:26](628 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:10, 04:30](633 MB) +PASS -- TEST 'regional_wofs_intel' [07:10, 05:39](1605 MB) + +PASS -- COMPILE 'rrfs_intel' [04:49, 11:31] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:13, 06:05](1007 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:43, 03:37](1204 MB) +PASS -- TEST 'rap_decomp_intel' [08:26, 06:20](1004 MB) +PASS -- TEST 'rap_restart_intel' [05:18, 03:11](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:20, 06:02](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:19, 06:19](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 04:32](880 MB) +PASS -- TEST 'hrrr_control_intel' [05:04, 03:12](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:08, 03:16](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:48](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:58, 01:44](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:18, 05:58](1002 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:49, 07:19](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:49, 07:03](1955 MB) + +PASS -- COMPILE 'csawmg_intel' [03:49, 10:46] ( 6 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:17, 05:49](695 MB) +PASS -- TEST 'control_ras_intel' [04:32, 02:51](659 MB) + +PASS -- COMPILE 'wam_intel' [59:47, 10:01] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:34, 01:55](387 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [02:48, 12:50] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:47, 02:23](1604 MB) +PASS -- TEST 'regional_control_faster_intel' [06:05, 04:15](626 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [57:46, 09:15] ( 890 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:58, 02:30](1595 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:57, 02:29](1593 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:01, 02:55](804 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:35, 02:36](800 MB) +PASS -- TEST 'control_csawmg_debug_intel' [12:04, 04:01](838 MB) +PASS -- TEST 'control_ras_debug_intel' [04:57, 02:38](809 MB) +PASS -- TEST 'control_diag_debug_intel' [05:30, 02:34](1664 MB) +PASS -- TEST 'control_debug_p8_intel' [11:01, 02:37](1627 MB) +PASS -- TEST 'regional_debug_intel' [24:04, 16:04](661 MB) +PASS -- TEST 'rap_control_debug_intel' [06:18, 04:38](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:32](1177 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 04:46](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:40](1182 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:39](1183 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:38, 04:52](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 04:50](1184 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 04:50](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:21, 04:47](1180 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 04:38](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:35](1178 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:49](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:11, 07:39](1176 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:36](1174 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:35](1181 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:36](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 07:54](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [54:44, 06:03] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:25, 04:37](421 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:30, 10:08] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:38, 03:29](1057 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:19, 05:07](883 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:20, 02:46](882 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:18, 02:54](884 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:03, 03:51](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:43, 01:30](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:17, 12:16] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:07, 01:57](1084 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:48, 01:01](1086 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:07](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:16, 10:11] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:16, 03:36](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 06:15] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:33](1063 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:43, 04:32](1060 MB) +PASS -- TEST 'conus13km_debug_intel' [15:51, 13:20](1134 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:41](821 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:34, 13:17](1202 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:12, 06:12] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 04:32](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [17:14, 15:57] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:31, 04:29](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 05:02](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:02, 06:23](785 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:32, 10:54](800 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:52, 11:59](816 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:36, 04:39](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 05:45](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:57, 02:18](395 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:06, 06:15](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:18](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:24, 03:05](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:22, 03:50](586 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:18](429 MB) +PASS -- TEST 'gnv1_nested_intel' [05:13, 03:25](789 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:13, 07:55] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:29, 12:05](646 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:18, 19:13] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:22, 07:03](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:41, 07:08](692 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:17, 17:05] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:28, 05:19](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:13, 14:21] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:45, 05:32](751 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:44, 05:37](743 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:11](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:19, 08:13] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:28](759 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:40, 01:32](738 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:34, 02:23](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:36, 02:24](638 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:24, 02:25](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:28](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:29](759 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:20](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:35, 05:38](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:49, 05:41](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:22, 02:32](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:31, 03:52](2019 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [10:27, 03:56](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:17, 05:38] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:30, 05:02](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:21] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:27, 02:31](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:56] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:41, 01:12](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:31, 01:03](457 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:40, 00:44](452 MB) + +PASS -- COMPILE 'atml_intel' [14:20, 13:28] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:56, 06:29](1632 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:34, 06:10](1636 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:06, 03:06](856 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:13, 08:21] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:46, 05:29](1669 MB) + +PASS -- COMPILE 'atmw_intel' [14:20, 12:56] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:55, 01:32](1636 MB) + +PASS -- COMPILE 'atmaero_intel' [18:21, 11:45] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:39, 03:42](2950 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:45, 04:17](2995 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:11, 04:21](3010 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:20, 07:02] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:51, 21:57](4531 MB) SYNOPSIS: -Starting Date/Time: 20240506 14:49:48 -Ending Date/Time: 20240506 19:49:44 -Total Time: 05h:00m:44s +Starting Date/Time: 20240508 12:49:22 +Ending Date/Time: 20240508 19:08:33 +Total Time: 06h:20m:08s Compiles Completed: 38/38 Tests Completed: 175/175 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 5c860d155e..d031ec5ff0 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 +f29351be77830efd8ae23ad72436b4b38b886383 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,12 +11,12 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) + cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,275 +36,275 @@ 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-20240503 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_241906 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_7744 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:59, 08:57](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:15, 25:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:34, 13:49](1685 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:13, 14:34](1808 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [22:49, 07:07](945 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:24, 15:10](1669 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:11, 14:48] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:26, 24:04](1707 MB) - -PASS -- COMPILE 's2swa_intel' [55:13, 54:16] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:01, 07:51](3097 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:00, 07:50](3096 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:48, 05:13](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 08:06](3121 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:43, 05:22](3175 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:30, 06:35](3407 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:42, 07:44](3097 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:36, 07:06](3021 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:00, 07:56](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:43, 10:54](3267 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:40, 07:19](3600 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:03, 13:10](4035 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:13, 09:03](4340 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:38, 07:58](3065 MB) - -PASS -- COMPILE 's2sw_intel' [20:11, 19:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 05:28](1686 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:05, 05:44](1730 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:11, 14:21] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:45, 10:34](3129 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:11, 13:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 06:08](1701 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 17:18] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 05:30](1725 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 16:30] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:26, 06:55](2663 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:35, 02:10](2685 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:10, 01:04](2116 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:14, 24:26] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:30, 08:01](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:11, 24:50] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:37, 14:50](1702 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:37](1000 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:06, 17:09](1682 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 15:11] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:27, 26:59](1718 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:13, 17:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:18, 03:40](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:32, 03:01](1568 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:52, 03:29](1580 MB) -PASS -- TEST 'control_latlon_intel' [13:43, 04:03](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:51, 04:01](1569 MB) -PASS -- TEST 'control_c48_intel' [22:15, 06:36](1604 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:27, 05:39](722 MB) -PASS -- TEST 'control_c192_intel' [33:06, 09:44](1682 MB) -PASS -- TEST 'control_c384_intel' [41:19, 18:03](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [30:09, 14:07](1187 MB) -PASS -- TEST 'control_stochy_intel' [05:42, 01:53](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [18:32, 01:02](430 MB) -PASS -- TEST 'control_lndp_intel' [07:52, 01:46](628 MB) -PASS -- TEST 'control_iovr4_intel' [10:17, 02:34](623 MB) -PASS -- TEST 'control_iovr5_intel' [10:17, 02:28](623 MB) -PASS -- TEST 'control_p8_intel' [27:16, 03:37](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [26:35, 03:27](1607 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [26:17, 03:25](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [04:21, 02:12](789 MB) -PASS -- TEST 'control_noqr_p8_intel' [26:05, 03:31](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:15, 02:16](793 MB) -PASS -- TEST 'control_decomp_p8_intel' [21:08, 03:20](1596 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:30, 02:38](1679 MB) -PASS -- TEST 'control_p8_lndp_intel' [27:58, 05:17](1606 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [27:20, 04:12](1657 MB) -PASS -- TEST 'control_p8_mynn_intel' [14:15, 03:49](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [11:14, 03:56](1604 MB) -PASS -- TEST 'regional_control_intel' [06:25, 04:45](615 MB) -PASS -- TEST 'regional_restart_intel' [03:36, 02:35](789 MB) -PASS -- TEST 'regional_decomp_intel' [05:46, 04:57](615 MB) -PASS -- TEST 'regional_2threads_intel' [04:43, 03:14](767 MB) -PASS -- TEST 'regional_noquilt_intel' [05:44, 04:43](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:55, 04:49](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:47, 04:58](615 MB) -PASS -- TEST 'regional_wofs_intel' [19:46, 06:16](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [16:13, 15:21] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [20:10, 06:52](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:16, 04:00](1183 MB) -PASS -- TEST 'rap_decomp_intel' [21:16, 07:20](1009 MB) -PASS -- TEST 'rap_2threads_intel' [20:12, 06:11](1093 MB) -PASS -- TEST 'rap_restart_intel' [06:14, 03:36](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [20:21, 06:55](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:13, 07:23](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:14, 05:04](879 MB) -PASS -- TEST 'hrrr_control_intel' [15:12, 03:56](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [16:03, 04:06](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [14:01, 03:03](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:36, 02:24](837 MB) -PASS -- TEST 'rrfs_v1beta_intel' [18:15, 06:41](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [16:40, 08:14](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:35, 08:00](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [16:12, 15:30] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:41, 06:40](695 MB) -PASS -- TEST 'control_ras_intel' [06:33, 03:47](658 MB) - -PASS -- COMPILE 'wam_intel' [16:12, 15:13] -PASS -- TEST 'control_wam_intel' [05:26, 02:36](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:11, 17:14] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:16, 03:51](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [06:51, 04:40](615 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:37] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:03, 03:01](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:02, 02:56](1589 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:23](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:31, 02:52](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:15](825 MB) -PASS -- TEST 'control_ras_debug_intel' [04:29, 02:54](794 MB) -PASS -- TEST 'control_diag_debug_intel' [03:54, 03:01](1640 MB) -PASS -- TEST 'control_debug_p8_intel' [04:49, 03:18](1618 MB) -PASS -- TEST 'regional_debug_intel' [17:49, 16:25](633 MB) -PASS -- TEST 'rap_control_debug_intel' [05:33, 05:05](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:31, 05:02](1165 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 05:13](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:34, 05:05](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:37, 05:02](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:41, 05:17](1251 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:14](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:34, 05:08](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:33, 05:12](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:10](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:34, 04:54](1166 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 05:06](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:49](1169 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:29, 04:55](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:34, 06:00](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:39, 05:08](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:01, 08:39](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:10, 08:47] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:36, 04:57](397 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:11, 15:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:08, 03:54](1053 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:53](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:36](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:49, 05:13](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:02, 02:46](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 03:29](887 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:56, 04:07](784 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:29, 01:51](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:15, 13:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:59, 02:19](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:48, 01:04](1075 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:37, 01:32](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 13:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:57, 04:22](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:16, 09:14] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 04:54](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 04:52](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [15:47, 14:06](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:54, 14:03](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:45, 08:05](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:37, 14:00](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 09:34] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:42, 05:07](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 15:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:15](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 04:31](1059 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:33](752 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:14, 11:40](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:27, 12:53](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:09, 05:18](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:24, 06:43](495 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:07, 02:57](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:01, 08:17](432 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:54, 03:55](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:10, 03:30](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:03, 04:41](568 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:42, 01:43](402 MB) -PASS -- TEST 'gnv1_nested_intel' [08:17, 04:10](765 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:11, 11:21] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:02, 12:59](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:11, 19:26] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 07:42](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 07:50](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 17:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:38, 05:58](787 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 14:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:29, 06:08](749 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:22, 06:05](732 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:06, 20:11](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 11:16] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:28, 02:36](745 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:57, 01:36](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:28, 02:28](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:26, 02:28](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 02:30](637 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:34](758 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 02:37](758 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 02:26](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 06:05](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:50, 06:01](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:40, 02:34](758 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:58, 04:35](2013 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:52, 04:38](2013 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 07:00] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 05:23](743 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:10] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 02:35](745 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 03:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:12, 01:56](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:44, 02:39](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:44, 00:56](456 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 14:10] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:50, 07:56](1633 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:54, 07:56](1633 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:41, 03:35](837 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:11, 09:11] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:38, 06:37](1648 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 13:03] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:11, 02:31](1650 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 12:21] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:32, 06:20](2946 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:25, 06:29](3012 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:13, 06:26](3020 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:11, 12:46] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:58, 18:30](4483 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:12, 19:08] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:03, 07:19](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 24:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [29:35, 13:28](1698 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:32, 14:22](1808 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:28, 06:49](944 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:48, 15:09](1670 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:12, 11:28] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:44, 23:51](1707 MB) + +PASS -- COMPILE 's2swa_intel' [20:13, 19:30] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:28, 07:57](3098 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:39, 08:23](3097 MB) +PASS -- TEST 'cpld_restart_p8_intel' [29:54, 05:17](3154 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:26, 08:05](3121 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [29:55, 05:19](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:17, 06:47](3408 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:26, 07:58](3096 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:24, 07:29](3021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:40, 08:18](3098 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [36:30, 10:46](3268 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:54, 07:21](3603 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [51:37, 13:03](4034 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:14, 09:13](4341 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:26, 07:50](3066 MB) + +PASS -- COMPILE 's2sw_intel' [19:12, 18:19] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:53, 05:06](1686 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:02, 05:14](1732 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:12, 14:19] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:45, 10:07](3129 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:12, 11:20] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 06:28](1697 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [40:15, 39:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:52, 05:20](1728 MB) + +PASS -- COMPILE 's2s_intel' [26:12, 25:42] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [26:59, 07:03](2659 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [21:24, 02:05](2684 MB) +PASS -- TEST 'cpld_restart_c48_intel' [12:24, 01:10](2114 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:12, 22:30] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:53, 08:11](3102 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:13, 24:17] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:37, 15:01](1701 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:09, 07:42](1000 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:53, 17:40](1683 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 14:26] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [56:48, 26:50](1715 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:14, 17:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [27:31, 03:44](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [25:01, 03:17](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:01, 03:16](1579 MB) +PASS -- TEST 'control_latlon_intel' [17:50, 03:24](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:11, 03:01](1567 MB) +PASS -- TEST 'control_c48_intel' [13:30, 06:37](1601 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:47, 05:39](722 MB) +PASS -- TEST 'control_c192_intel' [10:56, 09:57](1683 MB) +PASS -- TEST 'control_c384_intel' [20:22, 18:14](1986 MB) +PASS -- TEST 'control_c384gdas_intel' [17:31, 14:12](1183 MB) +PASS -- TEST 'control_stochy_intel' [02:34, 01:54](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:35, 01:04](430 MB) +PASS -- TEST 'control_lndp_intel' [03:32, 02:07](628 MB) +PASS -- TEST 'control_iovr4_intel' [03:37, 02:33](623 MB) +PASS -- TEST 'control_iovr5_intel' [03:37, 02:32](623 MB) +PASS -- TEST 'control_p8_intel' [05:14, 03:17](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:31, 03:24](1607 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 03:11](1607 MB) +PASS -- TEST 'control_restart_p8_intel' [04:05, 02:08](788 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:18](1594 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:09, 01:55](792 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:04, 03:43](1595 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:10, 02:45](1684 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:27](1605 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:15, 04:36](1656 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:18, 03:38](1613 MB) +PASS -- TEST 'merra2_thompson_intel' [06:15, 03:58](1609 MB) +PASS -- TEST 'regional_control_intel' [06:45, 04:42](617 MB) +PASS -- TEST 'regional_restart_intel' [03:41, 02:38](786 MB) +PASS -- TEST 'regional_decomp_intel' [06:45, 04:49](617 MB) +PASS -- TEST 'regional_2threads_intel' [04:43, 02:55](758 MB) +PASS -- TEST 'regional_noquilt_intel' [06:52, 04:52](1155 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 04:41](614 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:49, 04:44](617 MB) +PASS -- TEST 'regional_wofs_intel' [09:18, 06:14](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:55] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [31:56, 06:45](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [28:32, 04:00](1189 MB) +PASS -- TEST 'rap_decomp_intel' [30:57, 07:06](1009 MB) +PASS -- TEST 'rap_2threads_intel' [30:57, 06:12](1094 MB) +PASS -- TEST 'rap_restart_intel' [06:03, 03:42](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [31:58, 07:00](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:58, 07:20](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 05:12](882 MB) +PASS -- TEST 'hrrr_control_intel' [27:24, 04:04](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [27:33, 03:53](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [26:29, 03:04](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:34, 02:06](839 MB) +PASS -- TEST 'rrfs_v1beta_intel' [32:01, 06:52](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [31:30, 08:08](1968 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [31:30, 08:07](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:29] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [31:33, 06:37](696 MB) +PASS -- TEST 'control_ras_intel' [26:22, 03:30](656 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 13:24] +PASS -- TEST 'control_wam_intel' [03:28, 02:26](370 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:12, 15:12] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:10, 03:13](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [05:39, 04:44](617 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 11:03] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:53, 03:05](1585 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:55, 03:03](1585 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:04](783 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:47](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:41, 04:19](825 MB) +PASS -- TEST 'control_ras_debug_intel' [04:28, 02:49](795 MB) +PASS -- TEST 'control_diag_debug_intel' [04:46, 03:21](1641 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 03:28](1617 MB) +PASS -- TEST 'regional_debug_intel' [17:44, 16:22](633 MB) +PASS -- TEST 'rap_control_debug_intel' [06:34, 05:10](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:32, 05:05](1167 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 05:24](1173 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:33, 05:29](1173 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 05:09](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:37, 05:24](1252 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 05:27](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:31, 05:47](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:31](1170 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 05:19](1169 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:17](1168 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:21](1167 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 08:03](1168 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 05:25](1167 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:32, 06:26](1171 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:33, 05:28](1169 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:54, 08:20](1174 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:13, 08:47] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:33, 05:02](398 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:14, 22:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:53](1051 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:05, 05:55](891 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:00, 03:40](887 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:01, 05:22](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:59, 02:48](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 03:29](885 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:14, 04:56](785 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:42](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 16:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:03, 02:12](1091 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:14, 01:09](1073 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:51](975 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 15:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:27, 04:20](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 11:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:33, 04:58](1050 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:11, 04:45](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [16:58, 14:15](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:56, 14:06](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:11](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:21, 14:18](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 08:14] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:10, 04:58](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [28:12, 27:10] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:19](710 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:59, 04:32](1062 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:37](740 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:16, 11:32](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:17, 12:44](801 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:17, 05:25](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:35, 06:53](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:58](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:01, 08:03](432 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:03, 04:01](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:13, 03:48](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:16, 05:19](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:04, 01:51](401 MB) +PASS -- TEST 'gnv1_nested_intel' [06:42, 04:05](769 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [17:16, 16:15] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:29, 13:17](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:12, 26:35] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:22, 07:41](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:11, 07:49](787 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [24:12, 23:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:16, 05:59](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:11, 17:14] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:28](744 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:13](732 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:16, 20:02](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:13, 12:45] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:26, 02:36](759 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:35](746 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:34](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:25, 02:29](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:32](637 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:40](759 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:30, 02:34](759 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:28](637 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:00, 06:12](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:02](678 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:37](759 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:59, 04:41](2019 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:35](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 10:02] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:23](743 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:14, 16:05] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:42](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [09:11, 08:36] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:02, 01:54](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:51, 01:34](457 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:49, 02:27](456 MB) + +PASS -- COMPILE 'atml_intel' [22:15, 21:31] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:54, 08:14](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:37, 08:03](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:03, 04:33](836 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:14, 09:55] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:32, 06:14](1653 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 14:01] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:26, 02:35](1651 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 12:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:19, 06:43](2947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:16, 06:48](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 07:38](3019 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [21:11, 20:52] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:36, 18:57](4483 MB) SYNOPSIS: -Starting Date/Time: 20240506 10:57:09 -Ending Date/Time: 20240506 12:53:05 -Total Time: 01h:56m:51s +Starting Date/Time: 20240508 10:47:03 +Ending Date/Time: 20240508 12:41:33 +Total Time: 01h:55m:44s Compiles Completed: 38/38 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 4b8a404edc..c9c5cfaf88 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 +f29351be77830efd8ae23ad72436b4b38b886383 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) + cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) @@ -25,424 +25,369 @@ 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-20240503 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1490583 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3058841 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:13] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 05:32](3185 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 17:18] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:04, 17:05](1752 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 17:57](2031 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:15, 08:10](1122 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 19:20](1642 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:14] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:07, 22:36](1699 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 13:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:20, 05:48](3199 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:36, 06:13](3195 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:35, 03:30](3255 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:56](3238 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:33, 03:32](3254 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:19, 05:33](3559 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:18, 05:45](3224 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:19, 04:45](3059 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:35, 06:23](3228 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:26, 10:12](3340 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 06:28](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:13, 10:08](4144 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:33, 06:24](4369 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:24, 05:25](3168 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 12:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:46](1744 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:12, 04:17](1787 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:49] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:05, 08:30](3250 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:30] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:58, 05:43](1759 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:22](1794 MB) - -PASS -- COMPILE 's2s_intel' [12:12, 11:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:49, 09:23](2831 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:35](2834 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:48, 01:25](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:19, 05:33](3199 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:18, 17:20](1786 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:23, 08:06](1177 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:05, 19:44](1646 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:24] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 25:08](1709 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:14] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:25, 03:32](705 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:57](1604 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:56, 03:02](1606 MB) -PASS -- TEST 'control_latlon_intel' [04:47, 02:55](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:52, 03:01](1601 MB) -PASS -- TEST 'control_c48_intel' [08:51, 07:41](1756 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:25](880 MB) -PASS -- TEST 'control_c192_intel' [12:04, 10:41](1750 MB) -PASS -- TEST 'control_c384_intel' [13:00, 10:44](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [11:55, 08:07](1398 MB) -PASS -- TEST 'control_stochy_intel' [02:23, 01:42](665 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:34, 01:01](500 MB) -PASS -- TEST 'control_lndp_intel' [02:23, 01:36](660 MB) -PASS -- TEST 'control_iovr4_intel' [03:33, 02:34](654 MB) -PASS -- TEST 'control_iovr5_intel' [03:25, 02:33](655 MB) -PASS -- TEST 'control_p8_intel' [04:00, 03:02](1635 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:05, 03:01](1603 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:56](1632 MB) -PASS -- TEST 'control_restart_p8_intel' [02:54, 01:36](889 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:01, 02:56](1583 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:58, 01:37](938 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:00, 03:04](1614 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:57, 02:47](1715 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:58, 05:17](1626 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:01, 04:04](1689 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:59, 03:05](1639 MB) -PASS -- TEST 'merra2_thompson_intel' [04:56, 03:19](1628 MB) -PASS -- TEST 'regional_control_intel' [06:41, 05:14](847 MB) -PASS -- TEST 'regional_restart_intel' [03:42, 02:45](1018 MB) -PASS -- TEST 'regional_decomp_intel' [06:42, 05:32](849 MB) -PASS -- TEST 'regional_2threads_intel' [04:43, 03:16](842 MB) -PASS -- TEST 'regional_noquilt_intel' [06:38, 05:09](1360 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 05:10](854 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:39, 05:14](848 MB) -PASS -- TEST 'regional_wofs_intel' [07:44, 06:49](1912 MB) - -PASS -- COMPILE 'rrfs_intel' [11:13, 10:45] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:44, 07:47](1114 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:13](1296 MB) -PASS -- TEST 'rap_decomp_intel' [08:38, 08:07](1035 MB) -PASS -- TEST 'rap_2threads_intel' [08:36, 07:26](1185 MB) -PASS -- TEST 'rap_restart_intel' [04:51, 04:03](1110 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:38, 07:44](1111 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 08:08](1044 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:43, 05:52](1126 MB) -PASS -- TEST 'hrrr_control_intel' [04:40, 04:01](1035 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 04:07](1037 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:36, 03:40](1104 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:10](1006 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:45, 07:37](1098 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:24](1984 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2070 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:32] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:43, 05:59](755 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:15](748 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:11, 03:36] -PASS -- TEST 'control_csawmg_gnu' [09:44, 08:27](548 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 10:08] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [02:26, 02:04](657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:12, 10:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:56, 02:37](1639 MB) -PASS -- TEST 'regional_control_faster_intel' [05:40, 04:41](853 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 04:48] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:46, 02:36](1621 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:32](1617 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:23, 02:59](822 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:45](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:42, 04:06](868 MB) -PASS -- TEST 'control_ras_debug_intel' [03:23, 02:46](827 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 02:39](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [03:44, 02:49](1649 MB) -PASS -- TEST 'regional_debug_intel' [18:40, 17:17](826 MB) -PASS -- TEST 'rap_control_debug_intel' [05:23, 04:55](1208 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:44](1208 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:45](1214 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:59](1212 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:53](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:40, 05:08](1291 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1210 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:59](1199 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:56](1205 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:47](1208 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:50](1205 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:54](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 07:55](1210 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:50](1207 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:53](1208 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:57](1205 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:38, 08:27](1188 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:35] -PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:23](528 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:21] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:23, 05:14](517 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:19] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 04:17](1164 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:25](1058 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 03:23](984 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 06:11](1081 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 03:09](966 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:32, 03:36](943 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:40, 04:51](1031 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 01:53](935 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:38] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:53, 02:05](1198 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:44, 00:55](1124 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 01:15](1118 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:19] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:38, 04:09](991 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:55] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:51](1091 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:41](1081 MB) -PASS -- TEST 'conus13km_debug_intel' [15:55, 14:34](1233 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:27](930 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:11](1159 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 14:34](1300 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:37] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:07](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [12:15, 11:59] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:19, 04:55](738 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:36, 05:54](1125 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:22, 06:56](839 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:26](859 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 15:10](874 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:51, 05:32](501 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:47](519 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:44](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:01, 07:09](481 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:42, 03:41](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:46, 03:30](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:51, 04:03](593 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:26, 01:13](407 MB) -PASS -- TEST 'gnv1_nested_intel' [05:40, 04:09](801 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:08] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:50, 12:47](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:12, 12:14] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:42](637 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:03, 08:49](747 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 12:08] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:01, 06:22](744 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:14, 11:22] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:23](835 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:15, 06:26](825 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:10](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:11, 06:06] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:40](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:38](1092 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:33](1022 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 02:38](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:34](1008 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:35](1147 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:41](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:16, 02:38](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:10](1061 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:15, 06:16](1042 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:46](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:53](2487 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:50](2511 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:12, 02:56] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:20](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:44] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:44](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:49](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:31](327 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 12:11] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:01, 04:15](1608 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:59, 04:08](1611 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:18](902 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:20] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:54, 05:29](1627 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:42](1670 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 11:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:00, 04:02](3042 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 05:15](3067 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:56](3112 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:29] ( 885 warnings 6 remarks ) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB) - -PASS -- COMPILE 'atm_gnu' [04:10, 03:44] -PASS -- TEST 'control_c48_gnu' [11:43, 11:03](1543 MB) -PASS -- TEST 'control_stochy_gnu' [04:23, 03:24](506 MB) -PASS -- TEST 'control_ras_gnu' [05:20, 04:43](518 MB) -PASS -- TEST 'control_p8_gnu' [05:58, 04:38](1264 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:31](1275 MB) -PASS -- TEST 'control_flake_gnu' [11:22, 10:25](553 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:11, 03:49] -PASS -- TEST 'rap_control_gnu' [11:32, 10:40](857 MB) -PASS -- TEST 'rap_decomp_gnu' [11:32, 10:45](860 MB) -PASS -- TEST 'rap_2threads_gnu' [10:39, 09:46](945 MB) -PASS -- TEST 'rap_restart_gnu' [06:40, 05:33](585 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:45](858 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:35, 10:59](861 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:41, 08:05](588 MB) -PASS -- TEST 'hrrr_control_gnu' [06:36, 05:38](858 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:37](842 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:33, 05:11](937 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:35](861 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:28, 02:52](569 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:48](665 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:41, 10:36](855 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:44] -PASS -- TEST 'control_diag_debug_gnu' [02:48, 01:38](1290 MB) -PASS -- TEST 'regional_debug_gnu' [11:41, 10:39](568 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:22, 02:39](869 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:20, 02:38](872 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:20, 02:35](877 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:20, 02:36](880 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:54](955 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 03:59](872 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:36](871 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:36](874 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:31](506 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:44](496 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:43, 01:39](1261 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:35](872 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:23, 02:48](875 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:15](880 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:10, 01:52] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:38] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:25](717 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 05:02](713 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:33](767 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 04:31](756 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:34, 05:00](716 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:35, 06:58](559 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 02:32](550 MB) -PASS -- TEST 'conus13km_control_gnu' [04:56, 03:10](887 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:46, 05:35](887 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:47](559 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:31] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:44](742 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 03:45] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:27](721 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:23, 02:26](721 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:53, 06:54](900 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:44, 06:48](589 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:42, 06:56](905 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:43, 06:56](968 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:11, 04:13] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:33](745 MB) - -PASS -- COMPILE 's2swa_gnu' [15:12, 14:40] - -PASS -- COMPILE 's2s_gnu' [15:12, 14:37] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:10, 06:42](1361 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:46] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:37] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:02, 24:35](1322 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:23] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:53, 12:56](1331 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:18] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 02:53](704 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:23, 05:31](3184 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:33, 17:09](1764 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 17:48](2026 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 08:08](1122 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:04, 19:18](1651 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:45] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:06, 22:33](1706 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 12:48] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:18, 05:47](3208 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:25, 05:49](3227 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:21, 03:24](3257 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:19, 05:50](3252 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 03:25](3282 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:15, 05:31](3562 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:18, 05:47](3225 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:19, 04:45](3086 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:23, 05:47](3196 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:25, 10:03](3352 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:35, 06:27](3628 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:34, 09:31](4129 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:31, 06:02](4371 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:17, 05:23](3184 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 12:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:06, 04:43](1751 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:11, 04:17](1799 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:28] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:14, 08:29](3210 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:32] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:05, 05:46](1720 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:24] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:11, 04:18](1790 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 11:28] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:49, 09:20](2830 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:50, 02:34](2830 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:25](2287 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:22, 05:26](3226 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:10] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:04, 17:13](1793 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:17, 08:07](1178 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:25, 19:38](1694 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:18] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:50](1737 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:22, 03:18](711 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:51, 02:54](1607 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:55, 02:57](1613 MB) +PASS -- TEST 'control_latlon_intel' [08:48, 02:52](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:56, 02:55](1597 MB) +PASS -- TEST 'control_c48_intel' [10:51, 07:35](1761 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:26, 06:24](877 MB) +PASS -- TEST 'control_c192_intel' [16:08, 10:30](1751 MB) +PASS -- TEST 'control_c384_intel' [16:07, 10:30](2015 MB) +PASS -- TEST 'control_c384gdas_intel' [14:53, 08:01](1403 MB) +PASS -- TEST 'control_stochy_intel' [06:23, 01:39](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:25, 00:58](511 MB) +PASS -- TEST 'control_lndp_intel' [06:22, 01:35](664 MB) +PASS -- TEST 'control_iovr4_intel' [07:24, 02:25](651 MB) +PASS -- TEST 'control_iovr5_intel' [06:24, 02:25](662 MB) +PASS -- TEST 'control_p8_intel' [07:00, 02:54](1626 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:58, 02:54](1632 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:52, 02:49](1635 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:37](898 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:51, 02:50](1627 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:38](943 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:49, 02:57](1627 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:41](1716 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:07](1634 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 03:53](1703 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:57, 03:02](1646 MB) +PASS -- TEST 'merra2_thompson_intel' [04:55, 03:12](1641 MB) +PASS -- TEST 'regional_control_intel' [06:42, 05:09](850 MB) +PASS -- TEST 'regional_restart_intel' [05:45, 02:47](1015 MB) +PASS -- TEST 'regional_decomp_intel' [06:41, 05:29](852 MB) +PASS -- TEST 'regional_2threads_intel' [04:43, 03:14](857 MB) +PASS -- TEST 'regional_noquilt_intel' [06:44, 05:06](1361 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:48, 05:05](852 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 05:05](857 MB) +PASS -- TEST 'regional_wofs_intel' [07:45, 06:44](1913 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 10:31] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:43, 07:42](1114 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:07](1301 MB) +PASS -- TEST 'rap_decomp_intel' [08:35, 08:05](1040 MB) +PASS -- TEST 'rap_2threads_intel' [10:34, 07:15](1181 MB) +PASS -- TEST 'rap_restart_intel' [05:53, 04:12](1111 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:46, 07:43](1106 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:15, 08:10](1041 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 05:47](1133 MB) +PASS -- TEST 'hrrr_control_intel' [06:36, 04:00](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 04:09](1035 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:36](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:20](1005 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:50, 07:36](1097 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:13](1989 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:58](2074 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:20] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:42, 05:55](759 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:14](757 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 03:35] +PASS -- TEST 'control_csawmg_gnu' [09:40, 08:25](548 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 10:04] +PASS -- TEST 'control_wam_intel' [04:21, 02:06](660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:31] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:24, 02:45](1631 MB) +PASS -- TEST 'regional_control_faster_intel' [09:46, 04:45](853 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:47] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:50, 02:45](1625 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:00, 02:43](1618 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:24, 03:12](830 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:45, 02:51](826 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:41, 04:16](881 MB) +PASS -- TEST 'control_ras_debug_intel' [06:02, 02:54](834 MB) +PASS -- TEST 'control_diag_debug_intel' [05:51, 02:55](1678 MB) +PASS -- TEST 'control_debug_p8_intel' [05:48, 03:01](1651 MB) +PASS -- TEST 'regional_debug_intel' [20:47, 17:09](848 MB) +PASS -- TEST 'rap_control_debug_intel' [06:25, 05:02](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:50](1208 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:51](1210 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:52](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:30, 04:50](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:51, 05:06](1300 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 04:55](1208 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:23, 04:55](1205 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:48](1209 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:46](1211 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:44](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 04:45](1209 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:58](1208 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 04:43](1207 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:47](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:50](1207 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:14](1211 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:10, 02:42] +PASS -- TEST 'control_csawmg_debug_gnu' [03:40, 02:11](532 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:09] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [08:22, 05:00](516 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 03:55](1170 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 06:23](1053 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:46, 03:24](991 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:37, 06:04](1104 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:33, 03:07](971 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 03:35](936 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:49, 05:03](1039 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:38, 01:51](947 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 12:13] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:03, 02:06](1208 MB) +PASS -- TEST 'conus13km_2threads_intel' [15:48, 00:52](1122 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [17:50, 01:14](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 10:16] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:43, 04:10](990 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:35] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:44](1093 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 04:39](1087 MB) +PASS -- TEST 'conus13km_debug_intel' [18:00, 14:22](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:56, 14:50](926 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:49, 08:05](1158 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:51, 14:47](1309 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:20] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [19:27, 04:56](1138 MB) + +PASS -- COMPILE 'hafsw_intel' [15:12, 11:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [17:25, 05:04](742 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:36, 06:15](1121 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:32, 07:02](840 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [28:22, 13:25](866 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:41, 15:09](890 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [20:02, 05:34](506 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [20:34, 06:45](521 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [16:46, 02:39](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:19, 07:28](482 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:49, 03:45](538 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:55, 03:32](535 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:57, 04:08](593 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [17:30, 01:23](401 MB) +PASS -- TEST 'gnv1_nested_intel' [19:47, 04:16](802 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 03:51] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [27:59, 12:57](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:12, 12:05] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:11, 08:58](673 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:17, 09:05](739 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:14, 06:42](732 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:24, 06:52](802 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:23, 06:42](826 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:01, 16:21](1216 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:12, 05:50] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 02:54](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:36](1106 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:45](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:48](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:50](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:51](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:37](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:36](1025 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:21](1055 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:29, 06:27](1042 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:35](1153 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 03:58](2451 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:57](2438 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 02:58] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:12](1084 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:09] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:41](1163 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:58] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:43](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:48](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:30](323 MB) + +PASS -- COMPILE 'atml_intel' [12:13, 11:37] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:12, 04:06](1616 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:09, 04:07](1616 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:13](901 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:13] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:24](1633 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 10:55] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:45](1685 MB) + +PASS -- COMPILE 'atmaero_intel' [11:28, 10:52] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:00, 04:00](3031 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 04:50](3094 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:52](3114 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:49, 03:32] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:13, 21:38](4440 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:16] +PASS -- TEST 'control_c48_gnu' [11:49, 11:07](1544 MB) +PASS -- TEST 'control_stochy_gnu' [04:25, 03:25](508 MB) +PASS -- TEST 'control_ras_gnu' [05:22, 04:50](524 MB) +PASS -- TEST 'control_p8_gnu' [06:05, 04:39](1267 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:00, 04:33](1269 MB) +PASS -- TEST 'control_flake_gnu' [11:23, 10:43](551 MB) + +PASS -- COMPILE 'rrfs_gnu' [07:11, 04:28] +PASS -- TEST 'rap_control_gnu' [11:38, 10:40](862 MB) +PASS -- TEST 'rap_decomp_gnu' [12:37, 10:53](867 MB) +PASS -- TEST 'rap_2threads_gnu' [11:39, 09:48](942 MB) +PASS -- TEST 'rap_restart_gnu' [06:40, 05:24](586 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:38, 10:44](859 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:33, 10:56](860 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:45, 08:02](593 MB) +PASS -- TEST 'hrrr_control_gnu' [06:38, 05:34](857 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:35](848 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:32, 05:01](938 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:30](859 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:56](571 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:51](665 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:33](855 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 04:03] +PASS -- TEST 'control_diag_debug_gnu' [03:54, 01:41](1292 MB) +PASS -- TEST 'regional_debug_gnu' [11:47, 10:19](568 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:39](873 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:37](871 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:38](878 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:24, 02:37](876 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:36, 02:53](958 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:22, 04:04](871 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:38](875 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:36](869 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:37](503 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:45](504 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:39](1259 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:32](873 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:49](877 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:21](879 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:38] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:00] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:11](716 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:37, 04:56](718 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 08:34](772 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:27](756 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 04:58](713 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:37, 06:47](563 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:34](549 MB) +PASS -- TEST 'conus13km_control_gnu' [04:55, 03:13](888 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:49, 05:54](890 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:51, 01:48](568 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:12, 05:45] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](743 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 03:44] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:31](721 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:26](724 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:52, 06:59](903 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:49, 06:59](585 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:46, 07:18](905 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 06:49](971 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:30] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:38](750 MB) + +PASS -- COMPILE 's2swa_gnu' [15:12, 14:30] + +PASS -- COMPILE 's2s_gnu' [15:12, 14:14] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:11, 07:09](1359 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:28] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:13, 14:17] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:10, 26:49](1325 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:16] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:01, 12:51](1336 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:14, 14:15] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 02:59](705 MB) SYNOPSIS: -Starting Date/Time: 20240506 01:41:36 -Ending Date/Time: 20240506 04:12:23 -Total Time: 02h:31m:25s +Starting Date/Time: 20240508 14:46:21 +Ending Date/Time: 20240508 16:38:40 +Total Time: 01h:53m:59s Compiles Completed: 54/54 -Tests Completed: 241/242 -Failed Tests: -* TEST regional_atmaq_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2235/ufs-weather-model/tests/logs/log_hera/run_regional_atmaq_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 HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -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-20240503 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3365779 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: regional_atmaq_debug -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 04:31] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:19, 31:06](4469 MB) - -SYNOPSIS: -Starting Date/Time: 20240506 14:53:48 -Ending Date/Time: 20240506 16:24:37 -Total Time: 01h:30m:59s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 242/242 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 064db3b3c4..2b0fe10f1e 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,22 +1,22 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 +1b73dc3cfe52765a05ce8ae57735fef196de5fab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679f) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) + cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,362 +36,362 @@ 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-20240503 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1927015 +COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_138572 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:58] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:15, 10:34](1891 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 22:28] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [49:25, 14:24](1764 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:25, 14:10](2187 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:26, 06:36](1184 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:43, 15:56](1688 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:47] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:08, 20:18](1723 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 12:06] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [48:12, 10:54](2065 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:19, 11:48](2069 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:10, 04:48](1964 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [41:19, 07:43](1977 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:25, 04:24](1725 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [49:33, 12:39](2493 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [38:40, 08:04](2063 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:23, 06:28](1891 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:11, 10:54](2055 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [47:52, 17:23](2802 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:28, 06:09](2917 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [42:09, 09:40](3634 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:56, 07:44](3625 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [32:17, 05:04](2019 MB) - -PASS -- COMPILE 's2sw_intel' [13:10, 12:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [47:12, 07:10](1767 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:17, 06:38](1826 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 05:06] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:07, 06:46](2046 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:06] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:55, 04:42](1803 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:48] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:14, 03:57](1808 MB) - -PASS -- COMPILE 's2s_intel' [10:11, 09:34] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [15:44, 07:18](2827 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [25:44, 02:07](2832 MB) -PASS -- TEST 'cpld_restart_c48_intel' [26:03, 01:06](2298 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:24] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [47:10, 07:49](2078 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 16:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:15, 14:33](1794 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:42](1287 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:55, 15:29](1723 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:19] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:52, 21:32](1781 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:10, 07:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [42:13, 02:49](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [42:18, 02:35](1608 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [43:33, 02:30](1610 MB) -PASS -- TEST 'control_latlon_intel' [42:10, 02:38](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [46:21, 03:41](1616 MB) -PASS -- TEST 'control_c48_intel' [45:12, 07:00](1743 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [44:48, 05:46](859 MB) -PASS -- TEST 'control_c192_intel' [52:36, 10:15](1766 MB) -PASS -- TEST 'control_c384_intel' [50:03, 09:24](2043 MB) -PASS -- TEST 'control_c384gdas_intel' [53:53, 09:51](1517 MB) -PASS -- TEST 'control_stochy_intel' [43:32, 02:41](670 MB) -PASS -- TEST 'control_stochy_restart_intel' [08:36, 01:01](548 MB) -PASS -- TEST 'control_lndp_intel' [40:37, 02:38](661 MB) -PASS -- TEST 'control_iovr4_intel' [18:35, 02:03](662 MB) -PASS -- TEST 'control_iovr5_intel' [18:32, 02:06](659 MB) -PASS -- TEST 'control_p8_intel' [14:04, 02:30](1639 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [16:04, 03:47](1640 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [13:04, 03:43](1637 MB) -PASS -- TEST 'control_restart_p8_intel' [06:45, 01:25](930 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:02, 03:46](1631 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:22](988 MB) -PASS -- TEST 'control_decomp_p8_intel' [13:16, 03:52](1631 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:58, 02:27](1718 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:49, 04:32](1634 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:00, 03:34](1710 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:58, 02:39](1651 MB) -PASS -- TEST 'merra2_thompson_intel' [12:05, 02:56](1660 MB) -PASS -- TEST 'regional_control_intel' [08:36, 05:00](964 MB) -PASS -- TEST 'regional_restart_intel' [04:38, 02:26](1105 MB) -PASS -- TEST 'regional_decomp_intel' [07:37, 04:36](946 MB) -PASS -- TEST 'regional_2threads_intel' [10:35, 02:58](914 MB) -PASS -- TEST 'regional_noquilt_intel' [12:41, 04:26](1484 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:37, 04:34](960 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:29, 04:37](955 MB) -PASS -- TEST 'regional_wofs_intel' [12:33, 05:42](2075 MB) - -PASS -- COMPILE 'rrfs_intel' [12:10, 07:20] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [14:01, 06:37](1219 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:09, 04:22](1411 MB) -PASS -- TEST 'rap_decomp_intel' [11:50, 06:46](1125 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 06:06](1368 MB) -PASS -- TEST 'rap_restart_intel' [04:54, 03:25](1132 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:47, 06:26](1205 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:45, 06:59](1136 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:55, 05:01](1195 MB) -PASS -- TEST 'hrrr_control_intel' [05:22, 03:21](1078 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:27](1046 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:04](1127 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:29, 01:56](1021 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:18](1195 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:53](2018 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 07:23](2170 MB) - -PASS -- COMPILE 'csawmg_intel' [11:10, 07:12] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:30, 05:19](805 MB) -PASS -- TEST 'control_ras_intel' [04:17, 02:48](806 MB) - -PASS -- COMPILE 'csawmg_gnu' [08:10, 04:33] -PASS -- TEST 'control_csawmg_gnu' [08:38, 06:30](812 MB) - -PASS -- COMPILE 'wam_intel' [09:11, 07:29] -PASS -- TEST 'control_wam_intel' [03:24, 01:48](785 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:50] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:51, 02:16](1636 MB) -PASS -- TEST 'regional_control_faster_intel' [04:28, 04:03](957 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:09] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:14](1620 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:33, 02:09](1628 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:17](824 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:39](825 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:30, 03:35](871 MB) -PASS -- TEST 'control_ras_debug_intel' [03:15, 02:14](840 MB) -PASS -- TEST 'control_diag_debug_intel' [03:41, 02:22](1686 MB) -PASS -- TEST 'control_debug_p8_intel' [03:37, 02:21](1648 MB) -PASS -- TEST 'regional_debug_intel' [14:32, 14:02](896 MB) -PASS -- TEST 'rap_control_debug_intel' [04:19, 03:59](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:59](1219 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:58](1220 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 04:06](1228 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:17, 03:56](1224 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:21](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:18, 04:04](1213 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:16, 04:00](1228 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:17, 04:00](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 03:59](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:54](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:06](1226 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:19, 06:32](1219 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:22, 03:55](1214 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:48](1226 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:23, 03:59](1212 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 06:51](1225 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:25] -PASS -- TEST 'control_csawmg_debug_gnu' [04:37, 02:01](788 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 02:24] ( 855 warnings ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:10, 07:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:21](1272 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:54, 05:30](1140 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 02:52](1018 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:04](1276 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:54, 02:37](1047 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:00](985 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:54, 04:04](1095 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:21, 01:35](969 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 09:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:46, 01:50](1312 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:34, 00:51](1196 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:27, 01:05](1163 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 07:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:31, 03:43](1056 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 03:30] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 03:59](1101 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:21, 03:52](1089 MB) -PASS -- TEST 'conus13km_debug_intel' [17:31, 11:46](1304 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:32, 12:00](995 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:28, 06:42](1244 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:27, 11:38](1403 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:35] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:18, 04:01](1154 MB) - -PASS -- COMPILE 'hafsw_intel' [13:10, 10:47] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:26](871 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:20, 05:13](1286 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:21, 06:29](953 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:05, 14:08](973 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:14, 15:19](1005 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:51, 05:28](606 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:11, 07:07](615 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:40, 02:53](432 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:50, 07:41](542 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:40, 03:57](613 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:39, 03:42](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:43, 04:49](682 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:27, 01:22](448 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:01] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:43, 11:21](635 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:13, 16:56] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:05, 16:00](769 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:57, 16:52](840 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:10, 13:35] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:54, 09:58](836 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:10, 10:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:03, 05:35](960 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:02, 05:35](927 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:47, 16:22](1335 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:14] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:16, 02:10](1148 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:21](1080 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:15, 02:08](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:15, 02:09](1008 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:15, 02:10](1012 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:13](1139 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:14, 02:13](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:06](1011 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:51, 04:58](1155 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:48, 04:53](1146 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:11](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 03:04](2432 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:08](2440 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:03] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:17](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:21] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:16](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:46] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:56](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:19, 00:48](559 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:35](559 MB) - -PASS -- COMPILE 'atml_intel' [11:10, 09:21] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:03, 05:19](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:56, 05:23](1639 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 02:48](947 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:37] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:52, 07:39](1890 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [30:07, 14:45](1771 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:27, 14:16](2169 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:18, 06:25](1176 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:44, 15:16](1687 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:06] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:17, 20:18](1734 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:15] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:55, 07:40](2064 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:05, 07:35](2086 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:23](1969 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:59, 07:43](1981 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:26, 04:26](1731 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:53, 09:13](2494 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [21:43, 07:39](2083 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:50, 06:30](1895 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:57, 07:48](2088 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [25:42, 15:22](2809 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:22, 05:48](2917 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [31:43, 09:04](3634 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:16, 05:15](3622 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:50, 04:53](2023 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 10:30] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:44, 07:13](1765 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:51, 04:07](1835 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:07] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:05, 06:53](2051 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 05:51] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 04:48](1802 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 09:48] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:51, 04:07](1822 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 09:59] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:44, 07:17](2841 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [10:44, 02:06](2813 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:45, 01:11](2302 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:11, 13:40] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [25:02, 07:19](2054 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:10, 16:29] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:52, 14:08](1798 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:55, 06:42](1283 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:52, 15:28](1731 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 03:32] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:01, 21:24](1767 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:10, 08:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [18:22, 02:49](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [17:37, 02:29](1621 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:40, 02:37](1624 MB) +PASS -- TEST 'control_latlon_intel' [17:34, 02:28](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:40, 02:32](1605 MB) +PASS -- TEST 'control_c48_intel' [22:39, 07:04](1744 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [21:27, 05:49](854 MB) +PASS -- TEST 'control_c192_intel' [24:44, 08:59](1757 MB) +PASS -- TEST 'control_c384_intel' [25:22, 09:42](2058 MB) +PASS -- TEST 'control_c384gdas_intel' [24:57, 07:22](1534 MB) +PASS -- TEST 'control_stochy_intel' [14:18, 01:29](665 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:58](536 MB) +PASS -- TEST 'control_lndp_intel' [11:17, 01:24](670 MB) +PASS -- TEST 'control_iovr4_intel' [12:19, 02:10](656 MB) +PASS -- TEST 'control_iovr5_intel' [11:20, 02:17](666 MB) +PASS -- TEST 'control_p8_intel' [10:52, 02:34](1630 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:57, 02:37](1635 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:55, 02:34](1644 MB) +PASS -- TEST 'control_restart_p8_intel' [02:51, 01:24](915 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:48, 02:33](1628 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:00, 01:21](982 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:47, 02:35](1627 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:44, 02:24](1723 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:30, 04:25](1632 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:56, 03:28](1709 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:52, 02:34](1647 MB) +PASS -- TEST 'merra2_thompson_intel' [03:58, 02:47](1651 MB) +PASS -- TEST 'regional_control_intel' [05:27, 04:32](961 MB) +PASS -- TEST 'regional_restart_intel' [03:27, 02:26](1102 MB) +PASS -- TEST 'regional_decomp_intel' [05:25, 04:41](945 MB) +PASS -- TEST 'regional_2threads_intel' [03:29, 02:49](913 MB) +PASS -- TEST 'regional_noquilt_intel' [05:27, 04:19](1492 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 04:30](955 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 04:27](963 MB) +PASS -- TEST 'regional_wofs_intel' [06:26, 05:32](2072 MB) + +PASS -- COMPILE 'rrfs_intel' [12:10, 07:41] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:35, 06:34](1197 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:26](1413 MB) +PASS -- TEST 'rap_decomp_intel' [07:31, 06:46](1140 MB) +PASS -- TEST 'rap_2threads_intel' [06:53, 06:06](1376 MB) +PASS -- TEST 'rap_restart_intel' [04:51, 03:23](1154 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:44, 06:32](1200 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:38, 06:51](1144 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:54, 04:59](1192 MB) +PASS -- TEST 'hrrr_control_intel' [04:38, 03:25](1088 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:38, 03:29](1048 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:55, 03:04](1126 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:31, 01:50](1026 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:58, 06:22](1186 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:37](2013 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:22](2183 MB) + +PASS -- COMPILE 'csawmg_intel' [12:10, 07:35] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:28, 05:27](836 MB) +PASS -- TEST 'control_ras_intel' [03:18, 02:47](820 MB) + +PASS -- COMPILE 'csawmg_gnu' [09:10, 04:33] +PASS -- TEST 'control_csawmg_gnu' [07:35, 06:34](808 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 07:07] +PASS -- TEST 'control_wam_intel' [02:26, 01:50](793 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 09:54] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:52, 02:15](1641 MB) +PASS -- TEST 'regional_control_faster_intel' [04:27, 04:05](953 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:14] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:31, 02:09](1631 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:33, 02:13](1633 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:19, 02:29](833 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:14](835 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:27, 03:29](884 MB) +PASS -- TEST 'control_ras_debug_intel' [03:16, 02:17](838 MB) +PASS -- TEST 'control_diag_debug_intel' [03:37, 02:13](1682 MB) +PASS -- TEST 'control_debug_p8_intel' [03:32, 02:20](1657 MB) +PASS -- TEST 'regional_debug_intel' [14:37, 14:04](904 MB) +PASS -- TEST 'rap_control_debug_intel' [04:18, 03:58](1223 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:24, 03:52](1224 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 03:56](1227 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:21, 03:59](1222 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:55](1221 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:11](1297 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:03](1215 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:01](1233 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:58](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:57](1225 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:54](1232 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:02](1213 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:30](1224 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:54](1213 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 04:53](1225 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:00](1224 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 06:43](1223 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 03:18] +PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 01:52](792 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 02:49] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 06:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:15](1324 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:45, 05:27](1151 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:46, 02:51](1040 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 05:07](1302 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 02:36](1042 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:54, 03:00](969 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 04:04](1106 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:18, 01:39](955 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:40, 01:49](1294 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:48](1207 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:31, 01:04](1165 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 06:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:34, 03:41](1088 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 03:07] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:55](1101 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:50](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [12:31, 11:35](1334 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:31, 11:48](1001 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:32, 06:35](1233 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:33, 11:33](1414 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:08] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:21, 03:59](1144 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 10:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:08, 05:29](875 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:22, 04:54](1278 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:13, 06:19](965 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:02, 13:50](962 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 15:15](1005 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:31](607 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:18, 07:03](618 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:43, 02:54](439 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:11, 07:56](545 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:46](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:40, 03:41](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:46, 04:51](684 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:27](453 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 03:34] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:49, 11:19](625 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 10:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:49, 15:57](731 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:37](809 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 11:02] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:57, 10:00](838 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 10:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:24](954 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:05, 05:25](945 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:49, 16:23](1348 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 06:16] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:08](1139 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:18](1100 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:07](1015 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:09](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:10](1006 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:07](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:09](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 02:05](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:48, 04:56](1156 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:47, 04:55](1136 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:11](1147 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:18, 02:59](2334 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:05](2431 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 03:47] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:07](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:02] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:11](1150 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:00] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 01:03](339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 01:02](554 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:33](563 MB) + +PASS -- COMPILE 'atml_intel' [10:11, 08:29] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:08, 05:48](1637 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:43](1634 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:38, 02:44](939 MB) PASS -- COMPILE 'atml_debug_intel' [04:10, 03:28] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:54, 04:39](1667 MB) - -PASS -- COMPILE 'atmw_intel' [18:10, 13:04] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:34](1689 MB) - -PASS -- COMPILE 'atmaero_intel' [17:10, 12:40] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:47, 03:32](1799 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:15](1817 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:38, 04:20](1831 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:11, 04:49] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:33, 16:40](4575 MB) - -PASS -- COMPILE 'atm_gnu' [10:15, 06:24] -PASS -- TEST 'control_c48_gnu' [10:38, 09:31](1558 MB) -PASS -- TEST 'control_stochy_gnu' [03:22, 02:18](731 MB) -PASS -- TEST 'control_ras_gnu' [04:19, 03:51](730 MB) -PASS -- TEST 'control_p8_gnu' [04:44, 03:40](1512 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:43, 03:29](1518 MB) -PASS -- TEST 'control_flake_gnu' [05:21, 04:24](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [10:10, 06:17] -PASS -- TEST 'rap_control_gnu' [08:30, 07:45](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [08:30, 07:55](1087 MB) -PASS -- TEST 'rap_2threads_gnu' [07:45, 07:08](1147 MB) -PASS -- TEST 'rap_restart_gnu' [06:54, 03:58](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:40, 07:39](1089 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 07:49](1086 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:51, 05:41](885 MB) -PASS -- TEST 'hrrr_control_gnu' [04:47, 03:57](1073 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:34, 04:03](1139 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:30, 03:36](1029 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:36, 04:02](1073 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:18, 02:03](883 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:18, 02:05](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 07:35](1083 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 07:20] -PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:17](1625 MB) -PASS -- TEST 'regional_debug_gnu' [07:28, 06:26](924 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:16, 01:58](1100 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:22, 01:53](1089 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 02:00](1095 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:16, 01:56](1097 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:23, 02:04](1269 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:16, 03:07](1096 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:17, 01:58](1098 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:17, 01:58](1093 MB) -PASS -- TEST 'control_ras_debug_gnu' [06:15, 01:12](730 MB) -PASS -- TEST 'control_stochy_debug_gnu' [06:15, 01:17](725 MB) -PASS -- TEST 'control_debug_p8_gnu' [05:32, 01:18](1506 MB) -PASS -- TEST 'rap_flake_debug_gnu' [06:21, 01:59](1101 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [07:18, 02:13](1101 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:47, 03:21](1104 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:06] -PASS -- TEST 'control_wam_debug_gnu' [06:25, 01:54](502 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [12:10, 07:20] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:45, 07:13](965 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:34, 03:45](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 06:44](968 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:48, 03:29](873 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 03:46](952 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:55, 05:22](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:21, 01:58](857 MB) -PASS -- TEST 'conus13km_control_gnu' [04:42, 02:39](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:37, 01:07](1174 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:35, 01:25](928 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 11:03] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:32, 04:24](997 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:10, 08:54] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:00](988 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 01:59](970 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:24](1282 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:27, 05:47](973 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:14](1190 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:39](1349 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:10, 08:54] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 02:04](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [27:10, 22:03] - -PASS -- COMPILE 's2s_gnu' [22:11, 18:09] - -PASS -- COMPILE 's2swa_debug_gnu' [18:11, 14:55] - -PASS -- COMPILE 's2sw_pdlib_gnu' [22:11, 19:26] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:10, 11:14] - -PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 18:17] +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:55, 04:46](1663 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 10:27] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:33](1683 MB) + +PASS -- COMPILE 'atmaero_intel' [09:11, 07:20] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:49, 03:30](1798 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:54, 04:23](1811 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:27](1826 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:30] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:34, 17:27](4578 MB) + +PASS -- COMPILE 'atm_gnu' [07:11, 05:28] +PASS -- TEST 'control_c48_gnu' [10:39, 09:29](1576 MB) +PASS -- TEST 'control_stochy_gnu' [03:20, 02:18](742 MB) +PASS -- TEST 'control_ras_gnu' [04:17, 03:45](730 MB) +PASS -- TEST 'control_p8_gnu' [04:46, 03:42](1517 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:40, 03:30](1517 MB) +PASS -- TEST 'control_flake_gnu' [05:17, 04:24](800 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 05:22] +PASS -- TEST 'rap_control_gnu' [09:32, 07:49](1083 MB) +PASS -- TEST 'rap_decomp_gnu' [09:31, 07:53](1084 MB) +PASS -- TEST 'rap_2threads_gnu' [08:47, 07:02](1127 MB) +PASS -- TEST 'rap_restart_gnu' [05:49, 03:57](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:46, 07:36](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 07:44](1081 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:54, 05:40](884 MB) +PASS -- TEST 'hrrr_control_gnu' [05:34, 03:57](1070 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:35, 03:59](1139 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:48, 03:33](1025 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:56](1073 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:36, 02:03](880 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:05](935 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:51, 07:36](1083 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:10] +PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:20](1624 MB) +PASS -- TEST 'regional_debug_gnu' [07:28, 06:22](925 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:04](1100 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:53](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:59](1098 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:01](1093 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:27, 02:07](1268 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:03](1094 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:59](1098 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 01:54](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:09](729 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:14](728 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:13](1503 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:22, 01:56](1097 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 02:09](1098 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 03:15](1101 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:54] +PASS -- TEST 'control_wam_debug_gnu' [02:23, 02:01](502 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:30] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:31, 07:20](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:50, 03:49](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:45, 06:44](969 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:35, 03:27](892 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:54, 03:48](958 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:46, 05:23](858 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:18, 02:03](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:38, 02:29](1266 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:27, 01:02](1173 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:24](928 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:11, 08:47] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:34, 04:18](992 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:11, 06:02] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 01:57](980 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:19, 01:56](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:36, 05:33](1279 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:29, 05:38](952 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:19](1191 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:28, 05:35](1353 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:11, 06:07] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:02](1008 MB) + +PASS -- COMPILE 's2swa_gnu' [17:10, 16:45] + +PASS -- COMPILE 's2s_gnu' [17:10, 16:41] + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:33] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:26] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:11, 05:45] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 16:37] SYNOPSIS: -Starting Date/Time: 20240506 09:21:02 -Ending Date/Time: 20240506 11:27:27 -Total Time: 02h:07m:02s +Starting Date/Time: 20240508 13:49:00 +Ending Date/Time: 20240508 15:19:44 +Total Time: 01h:31m:22s Compiles Completed: 54/54 Tests Completed: 237/237 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 5b91586486..9aa3779381 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 +f29351be77830efd8ae23ad72436b4b38b886383 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,12 +11,12 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) + cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,244 +36,244 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_554453 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_36815 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [32:13, 31:58] ( 2 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 06:58](1796 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:50] ( 2 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:09, 20:54](1667 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:13, 23:09](1888 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 10:51](993 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:40, 23:55](1637 MB) - -PASS -- COMPILE 's2swa_intel' [38:14, 37:20] ( 1 warnings 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:23, 07:40](1826 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:44, 07:40](1829 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:55, 04:33](1709 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:23, 07:42](1842 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 04:51](1721 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:16, 07:17](2262 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:16, 07:54](1809 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:43, 06:38](1788 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:42, 07:45](1813 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:31, 07:12](1796 MB) - -PASS -- COMPILE 's2sw_intel' [31:13, 30:31] ( 1 warnings 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 05:59](1656 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:41, 05:52](1715 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:27] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:00, 10:48](1826 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 05:08] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:22, 07:18](1677 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:23] ( 1 warnings 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 05:46](1719 MB) - -PASS -- COMPILE 's2s_intel' [33:13, 33:05] ( 1 warnings 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:09, 12:49](2801 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:09, 03:36](2803 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:05, 02:04](2267 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:19, 34:20] ( 1 warnings 1608 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:36, 09:14](1804 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:14, 47:57] ( 1 warnings 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:43, 21:09](1683 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:54, 10:45](1034 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:55, 26:01](1659 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:44] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:37, 32:12](1697 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:54] ( 2 warnings 1151 remarks ) -PASS -- TEST 'control_flake_intel' [05:32, 04:58](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:43, 04:11](1542 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:45, 04:45](1554 MB) -PASS -- TEST 'control_latlon_intel' [10:38, 04:05](1547 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:45, 04:50](1534 MB) -PASS -- TEST 'control_c48_intel' [14:44, 11:57](1730 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:02, 10:09](847 MB) -PASS -- TEST 'control_c192_intel' [16:47, 14:47](1682 MB) -PASS -- TEST 'control_c384_intel' [25:13, 18:45](1816 MB) -PASS -- TEST 'control_c384gdas_intel' [24:22, 14:32](1014 MB) -PASS -- TEST 'control_stochy_intel' [03:56, 02:42](601 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:41, 01:26](437 MB) -PASS -- TEST 'control_lndp_intel' [03:54, 02:25](599 MB) -PASS -- TEST 'control_iovr4_intel' [04:56, 03:59](596 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 04:08](603 MB) -PASS -- TEST 'control_p8_intel' [11:28, 04:10](1577 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:26, 04:27](1577 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:55, 04:08](1568 MB) -PASS -- TEST 'control_restart_p8_intel' [04:13, 02:14](819 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:22, 04:03](1565 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 02:11](837 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:15, 04:09](1565 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:24, 03:44](1666 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:09, 07:06](1572 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:34, 05:15](1630 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:47, 04:08](1584 MB) -PASS -- TEST 'merra2_thompson_intel' [09:54, 04:31](1584 MB) -PASS -- TEST 'regional_control_intel' [11:58, 07:27](764 MB) -PASS -- TEST 'regional_restart_intel' [04:49, 04:01](933 MB) -PASS -- TEST 'regional_decomp_intel' [12:47, 07:53](757 MB) -PASS -- TEST 'regional_2threads_intel' [06:48, 05:02](754 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:51, 07:26](758 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:50, 07:23](762 MB) - -PASS -- COMPILE 'rrfs_intel' [34:12, 33:19] ( 4 warnings 1119 remarks ) -PASS -- TEST 'rap_control_intel' [12:26, 11:05](986 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:08, 06:05](1220 MB) -PASS -- TEST 'rap_decomp_intel' [13:09, 11:27](989 MB) -PASS -- TEST 'rap_2threads_intel' [12:26, 10:26](1086 MB) -PASS -- TEST 'rap_restart_intel' [08:25, 05:22](990 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:41, 11:05](995 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:19, 11:19](985 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 07:47](999 MB) -PASS -- TEST 'hrrr_control_intel' [07:23, 05:48](990 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 05:50](983 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:23, 05:12](1054 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:49](922 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:51, 10:52](990 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:43, 13:32](1916 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:50, 12:49](1937 MB) - -PASS -- COMPILE 'csawmg_intel' [32:13, 31:24] ( 2 warnings 1096 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:53, 08:19](692 MB) -PASS -- TEST 'control_ras_intel' [06:24, 04:39](667 MB) - -PASS -- COMPILE 'wam_intel' [30:13, 29:56] ( 1 warnings 982 remarks ) -PASS -- TEST 'control_wam_intel' [03:26, 02:54](506 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [32:17, 31:41] ( 1 warnings 1295 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:45, 03:52](1578 MB) -PASS -- TEST 'regional_control_faster_intel' [07:58, 07:06](765 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:05] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:56, 03:20](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 03:25](1556 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:47](760 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:26](766 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:48, 05:18](814 MB) -PASS -- TEST 'control_ras_debug_intel' [05:26, 03:32](774 MB) -PASS -- TEST 'control_diag_debug_intel' [04:56, 03:23](1617 MB) -PASS -- TEST 'control_debug_p8_intel' [04:52, 03:50](1588 MB) -PASS -- TEST 'regional_debug_intel' [23:49, 22:15](812 MB) -PASS -- TEST 'rap_control_debug_intel' [07:29, 06:08](1164 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:28, 05:56](1151 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 06:04](1146 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 06:06](1148 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:26, 06:14](1154 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:42, 06:28](1233 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 06:17](1149 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 06:14](1149 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:06](1154 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 06:06](1157 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:27, 06:00](1150 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 06:06](1148 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:26, 09:55](1148 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 06:02](1146 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 07:36](1157 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 06:06](1154 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:32, 10:31](1153 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:12] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:27, 06:10](447 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:13, 30:19] ( 4 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:50, 05:23](1077 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:05, 09:29](900 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:13, 04:33](866 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:41, 08:08](938 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:00, 04:01](910 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:15, 04:59](857 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:58, 07:09](897 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:42, 03:20](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:16, 43:26] ( 4 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:09, 03:01](1109 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:38](1050 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:41](1024 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:21, 31:01] ( 4 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 05:37](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:56] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 06:08](1024 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:00](1028 MB) -PASS -- TEST 'conus13km_debug_intel' [21:06, 18:49](1136 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:25, 19:13](845 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:03, 10:51](1083 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:21, 18:40](1204 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:18] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:10](1073 MB) - -PASS -- COMPILE 'hafsw_intel' [36:14, 35:28] ( 2 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:23, 07:06](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 06:54](1093 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:43, 09:32](775 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 16:33](793 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 18:28](822 MB) -PASS -- TEST 'gnv1_nested_intel' [07:28, 05:54](775 MB) - -PASS -- COMPILE 'hafs_all_intel' [32:20, 32:09] ( 1 warnings 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:28, 08:57](771 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:32, 08:58](755 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:03] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:52, 04:10](1053 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:32, 02:08](1030 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:43, 03:55](923 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:56, 04:07](922 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:48, 04:15](918 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:53, 04:14](1062 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:00, 04:20](1060 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:50, 04:28](926 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:09, 08:29](888 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:39, 08:15](841 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:34, 04:07](1061 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:31, 06:08](2342 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:26, 06:25](2385 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 04:16] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:52, 08:05](1015 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:16, 08:20] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:36](1055 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:41] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:43](230 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:21](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:33, 00:55](255 MB) - -PASS -- COMPILE 'atml_intel' [35:12, 34:36] ( 9 warnings 1189 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:54, 10:08](1595 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:47, 10:10](1597 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 04:42](865 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:24] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:53, 07:34](1628 MB) - -PASS -- COMPILE 'atmw_intel' [32:13, 31:39] ( 1 warnings 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:38, 03:08](1603 MB) - -PASS -- COMPILE 'atmaero_intel' [31:13, 31:10] ( 1 warnings 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:34, 05:26](1697 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:44, 06:33](1728 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:46](1744 MB) +PASS -- COMPILE 's2swa_32bit_intel' [59:01, 39:54] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 07:22](1791 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [09:02, 50:08] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:05, 22:18](1670 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:27, 24:43](1882 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:38, 11:03](999 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:36, 24:52](1636 MB) + +PASS -- COMPILE 's2swa_intel' [59:01, 39:55] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:42, 08:51](1807 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:09, 08:28](1826 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:09, 05:17](1713 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:41, 08:43](1850 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:10, 05:07](1732 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:44, 07:37](2274 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:33, 08:34](1806 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:44, 07:16](1771 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:10, 08:32](1821 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:50, 07:32](1788 MB) + +PASS -- COMPILE 's2sw_intel' [57:00, 38:10] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:40, 06:06](1649 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:48, 05:59](1693 MB) + +PASS -- COMPILE 's2swa_debug_intel' [25:57, 07:14] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:08, 10:40](1859 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:25, 07:19](1681 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:14, 32:31] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:00, 06:23](1715 MB) + +PASS -- COMPILE 's2s_intel' [33:14, 32:30] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:20, 12:52](2799 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:10, 03:44](2802 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:08, 02:12](2268 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:39] ( 1608 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:02, 07:42](1825 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:53] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:57, 22:16](1692 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:31, 10:55](1040 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:06, 24:29](1657 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 05:02] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:48, 32:25](1691 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [35:13, 35:04] ( 1 warnings 1151 remarks ) +PASS -- TEST 'control_flake_intel' [06:33, 04:52](642 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [17:44, 04:56](1533 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:55, 05:00](1551 MB) +PASS -- TEST 'control_latlon_intel' [19:37, 04:18](1549 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:49, 04:55](1537 MB) +PASS -- TEST 'control_c48_intel' [17:48, 12:02](1737 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:45, 10:16](847 MB) +PASS -- TEST 'control_c192_intel' [22:04, 15:23](1675 MB) +PASS -- TEST 'control_c384_intel' [26:14, 21:22](1813 MB) +PASS -- TEST 'control_c384gdas_intel' [23:36, 16:16](1021 MB) +PASS -- TEST 'control_stochy_intel' [03:31, 02:14](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [15:52, 01:41](436 MB) +PASS -- TEST 'control_lndp_intel' [03:31, 02:09](603 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 03:43](604 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 03:36](595 MB) +PASS -- TEST 'control_p8_intel' [17:21, 04:23](1576 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [13:26, 04:14](1573 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:27, 04:15](1577 MB) +PASS -- TEST 'control_restart_p8_intel' [11:33, 02:48](817 MB) +PASS -- TEST 'control_noqr_p8_intel' [21:09, 04:23](1566 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:22, 02:29](852 MB) +PASS -- TEST 'control_decomp_p8_intel' [18:06, 05:03](1570 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:21, 04:04](1663 MB) +PASS -- TEST 'control_p8_lndp_intel' [23:58, 07:52](1570 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:35, 05:26](1618 MB) +PASS -- TEST 'control_p8_mynn_intel' [19:27, 05:02](1583 MB) +PASS -- TEST 'merra2_thompson_intel' [21:30, 04:54](1587 MB) +PASS -- TEST 'regional_control_intel' [24:42, 08:30](764 MB) +PASS -- TEST 'regional_restart_intel' [06:48, 04:37](934 MB) +PASS -- TEST 'regional_decomp_intel' [11:34, 08:54](765 MB) +PASS -- TEST 'regional_2threads_intel' [07:26, 05:37](756 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [22:06, 08:02](762 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [21:49, 08:11](762 MB) + +PASS -- COMPILE 'rrfs_intel' [33:13, 32:53] ( 3 warnings 1119 remarks ) +PASS -- TEST 'rap_control_intel' [26:38, 11:11](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:28, 06:09](1221 MB) +PASS -- TEST 'rap_decomp_intel' [26:06, 11:23](989 MB) +PASS -- TEST 'rap_2threads_intel' [25:07, 10:24](1088 MB) +PASS -- TEST 'rap_restart_intel' [07:17, 05:45](993 MB) +PASS -- TEST 'rap_sfcdiff_intel' [25:31, 10:46](996 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:04, 11:37](993 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:44, 08:08](1000 MB) +PASS -- TEST 'hrrr_control_intel' [16:19, 05:40](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [16:09, 05:43](987 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [16:02, 05:31](1065 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:40, 03:03](916 MB) +PASS -- TEST 'rrfs_v1beta_intel' [23:52, 11:05](991 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [23:35, 13:29](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:35, 13:25](1932 MB) + +PASS -- COMPILE 'csawmg_intel' [32:14, 31:15] ( 1 warnings 1096 remarks ) +PASS -- TEST 'control_csawmg_intel' [17:02, 09:03](693 MB) +PASS -- TEST 'control_ras_intel' [12:27, 05:03](664 MB) + +PASS -- COMPILE 'wam_intel' [30:13, 30:08] ( 982 remarks ) +PASS -- TEST 'control_wam_intel' [04:25, 03:14](505 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [43:13, 32:13] ( 1295 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:36, 03:39](1584 MB) +PASS -- TEST 'regional_control_faster_intel' [10:44, 06:59](769 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [20:13, 06:12] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:05, 03:24](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:16, 03:36](1558 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:29, 03:52](763 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:31, 03:29](764 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:00, 05:28](810 MB) +PASS -- TEST 'control_ras_debug_intel' [06:30, 03:31](776 MB) +PASS -- TEST 'control_diag_debug_intel' [07:07, 03:25](1630 MB) +PASS -- TEST 'control_debug_p8_intel' [07:03, 03:41](1588 MB) +PASS -- TEST 'regional_debug_intel' [24:59, 21:56](780 MB) +PASS -- TEST 'rap_control_debug_intel' [07:29, 06:14](1155 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:30, 06:11](1148 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 06:23](1154 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:30, 06:21](1150 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:18](1150 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:38, 06:25](1232 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:29, 06:27](1150 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 06:26](1148 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:31, 06:21](1149 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 06:15](1147 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:29, 06:13](1150 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:11](1143 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:09](1141 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 06:03](1146 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:31](1149 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:29, 06:12](1151 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:33, 11:00](1156 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:11, 04:15] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:28, 06:15](446 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:13, 30:33] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:24, 05:25](1069 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:08, 08:49](899 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:22, 04:37](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:08, 08:09](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:16, 04:05](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:21, 05:02](840 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:44](890 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:36, 02:36](837 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 43:02] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:12, 03:08](1106 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:56, 01:33](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:55, 01:39](1023 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:37] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 05:39](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 04:07] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 06:08](1030 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:29, 06:08](1027 MB) +PASS -- TEST 'conus13km_debug_intel' [24:09, 18:30](1135 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:03, 18:45](852 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:01, 10:46](1083 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:00, 18:29](1205 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 06:12](1076 MB) + +PASS -- COMPILE 'hafsw_intel' [35:13, 34:59] ( 1 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:26, 07:43](722 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:37, 07:36](1084 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:53, 09:48](766 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:32, 19:14](809 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:54, 19:08](966 MB) +PASS -- TEST 'gnv1_nested_intel' [09:24, 07:10](775 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:13, 32:20] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:27, 10:42](772 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:34, 10:43](754 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:03] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 03:44](1055 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:17](1032 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 03:18](922 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 03:36](927 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 03:36](926 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 03:38](1060 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 03:42](1056 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:23, 03:31](926 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:36, 08:25](884 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:34, 08:04](842 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:39](1064 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:16](2400 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:16](2408 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:25] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:01](1017 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:47] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 03:46](1049 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 02:00] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:42, 01:54](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:32](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:29, 00:56](253 MB) + +PASS -- COMPILE 'atml_intel' [39:14, 38:41] ( 8 warnings 1189 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:48, 10:14](1605 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:47, 10:11](1597 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:57, 05:34](870 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:28] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:50](1629 MB) + +PASS -- COMPILE 'atmw_intel' [32:13, 31:48] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 02:32](1611 MB) + +PASS -- COMPILE 'atmaero_intel' [31:13, 30:25] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:37, 05:39](1698 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:37](1722 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:13, 06:53](1729 MB) SYNOPSIS: -Starting Date/Time: 20240506 00:56:29 -Ending Date/Time: 20240506 04:17:54 -Total Time: 03h:21m:58s +Starting Date/Time: 20240508 14:46:39 +Ending Date/Time: 20240509 00:39:50 +Total Time: 09h:53m:54s Compiles Completed: 33/33 Tests Completed: 161/161 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 342cb4c8e3..851f2ac9e6 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9 +1b73dc3cfe52765a05ce8ae57735fef196de5fab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,12 +11,12 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop) + cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,275 +36,275 @@ 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-20240503 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_338803 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_67506 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:15] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 05:44](3185 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:24] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:57, 18:34](1746 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:17, 18:22](2027 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [28:05, 08:44](1115 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:42, 21:57](1647 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:22] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:36, 23:59](1695 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 15:15] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:02, 06:06](3208 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 06:01](3216 MB) -PASS -- TEST 'cpld_restart_p8_intel' [43:05, 03:46](3253 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:02, 06:01](3242 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [43:45, 04:15](3274 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:39, 06:22](3553 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:02, 05:52](3198 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:49, 04:58](3073 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:16, 06:08](3207 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:57, 10:55](3343 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [41:19, 07:03](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:51, 11:20](4117 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:06, 08:14](4357 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:42, 05:39](3168 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 14:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:16, 04:57](1728 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:32, 04:47](1772 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:20] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:40, 09:09](3235 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:04] ( 1451 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:20, 06:06](1748 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 14:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:36](1773 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 12:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:53, 08:14](2833 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:26](2838 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:17, 01:25](2243 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 19:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:03, 06:14](3212 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:15, 18:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:33, 17:52](1771 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:39, 08:40](1118 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:29, 19:50](1672 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 04:06] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:35, 24:43](1707 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:36] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:30, 03:51](697 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 03:07](1592 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:17, 03:09](1601 MB) -PASS -- TEST 'control_latlon_intel' [04:04, 03:02](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:14, 03:06](1601 MB) -PASS -- TEST 'control_c48_intel' [09:11, 07:18](1702 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:09, 06:12](878 MB) -PASS -- TEST 'control_c192_intel' [13:07, 11:04](1746 MB) -PASS -- TEST 'control_c384_intel' [18:05, 15:03](2007 MB) -PASS -- TEST 'control_c384gdas_intel' [16:49, 09:39](1354 MB) -PASS -- TEST 'control_stochy_intel' [02:31, 02:05](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:45, 01:08](503 MB) -PASS -- TEST 'control_lndp_intel' [02:26, 01:42](656 MB) -PASS -- TEST 'control_iovr4_intel' [03:55, 02:36](650 MB) -PASS -- TEST 'control_iovr5_intel' [03:42, 02:47](656 MB) -PASS -- TEST 'control_p8_intel' [05:16, 03:13](1622 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [42:57, 03:11](1632 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [42:51, 03:01](1585 MB) -PASS -- TEST 'control_restart_p8_intel' [37:43, 01:50](890 MB) -PASS -- TEST 'control_noqr_p8_intel' [42:26, 03:07](1616 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:51](927 MB) -PASS -- TEST 'control_decomp_p8_intel' [42:22, 03:13](1611 MB) -PASS -- TEST 'control_2threads_p8_intel' [42:37, 03:17](1720 MB) -PASS -- TEST 'control_p8_lndp_intel' [44:37, 05:25](1631 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [42:59, 04:09](1691 MB) -PASS -- TEST 'control_p8_mynn_intel' [41:47, 03:16](1633 MB) -PASS -- TEST 'merra2_thompson_intel' [42:27, 03:36](1636 MB) -PASS -- TEST 'regional_control_intel' [43:11, 05:27](860 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 02:46](1020 MB) -PASS -- TEST 'regional_decomp_intel' [43:27, 05:48](856 MB) -PASS -- TEST 'regional_2threads_intel' [41:29, 04:02](848 MB) -PASS -- TEST 'regional_noquilt_intel' [41:54, 05:14](1366 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [41:56, 05:25](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [41:40, 05:25](858 MB) -PASS -- TEST 'regional_wofs_intel' [42:07, 07:01](1923 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 10:54] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [43:36, 08:02](1061 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [36:20, 05:10](1291 MB) -PASS -- TEST 'rap_decomp_intel' [36:23, 08:23](1035 MB) -PASS -- TEST 'rap_2threads_intel' [35:56, 08:11](1175 MB) -PASS -- TEST 'rap_restart_intel' [06:28, 04:06](1103 MB) -PASS -- TEST 'rap_sfcdiff_intel' [35:16, 07:54](1102 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [34:45, 08:18](1026 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 05:53](1126 MB) -PASS -- TEST 'hrrr_control_intel' [06:16, 04:07](1035 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:16, 04:17](1024 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:31, 03:26](1113 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:29, 02:11](1003 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:23, 07:47](1094 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:23](1991 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 09:09](2070 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 13:06] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:44, 06:08](749 MB) -PASS -- TEST 'control_ras_intel' [06:21, 03:25](744 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 11:34] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [05:22, 02:13](654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 12:41] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:32, 02:45](1627 MB) -PASS -- TEST 'regional_control_faster_intel' [07:43, 04:43](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:36] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:52, 02:48](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:53, 02:54](1620 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:08](817 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:23, 02:58](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:08](865 MB) -PASS -- TEST 'control_ras_debug_intel' [05:25, 02:54](827 MB) -PASS -- TEST 'control_diag_debug_intel' [04:49, 02:49](1668 MB) -PASS -- TEST 'control_debug_p8_intel' [03:49, 02:56](1606 MB) -PASS -- TEST 'regional_debug_intel' [19:52, 17:29](836 MB) -PASS -- TEST 'rap_control_debug_intel' [06:28, 04:59](1199 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:52](1203 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 05:00](1202 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:54](1203 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:54](1202 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:15](1288 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 05:09](1206 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 05:01](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:01](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:00](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:56](1197 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:59](1202 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 08:00](1209 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 05:01](1197 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:59](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:04](1200 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:33, 08:24](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:23] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:22, 05:10](521 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 11:13] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 04:34](1169 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 06:35](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:46, 03:32](988 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:59, 06:52](1071 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:52, 03:01](964 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 03:43](927 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:22, 04:54](1039 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:53](925 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:10] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:59, 02:13](1199 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:53, 01:02](1126 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:51, 01:16](1106 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:50] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:19](954 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:16] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:58](1086 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:53](1081 MB) -PASS -- TEST 'conus13km_debug_intel' [15:57, 14:21](1232 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:56, 14:10](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:25](1155 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:37](1295 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:05] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:36, 05:02](1118 MB) - -PASS -- COMPILE 'hafsw_intel' [17:11, 16:33] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:21, 05:54](684 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:09](1116 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:31, 07:02](833 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:26, 13:26](864 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:25, 15:08](888 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 06:25](499 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 07:39](522 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:04, 03:21](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:36, 08:04](468 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 04:21](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:51, 03:58](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:57, 05:36](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:27, 01:24](405 MB) -PASS -- TEST 'gnv1_nested_intel' [07:59, 04:49](806 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [21:18, 07:00] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:03](573 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [29:11, 16:14] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:02, 09:59](678 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:15, 10:05](741 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [34:18, 16:05] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:13, 07:24](639 MB) - -PASS -- COMPILE 'hafs_all_intel' [33:19, 15:10] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:30, 06:39](833 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:36, 06:34](816 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:59, 15:58](1211 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [27:18, 09:52] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:41](1136 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:41](1089 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:34](1018 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:34](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:41](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:17, 02:41](1126 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:17, 02:39](1137 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:37](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 05:58](1055 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:14, 06:06](1033 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:45](1137 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:36](2434 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:46](2500 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [21:12, 04:48] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:16](1055 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [23:12, 09:43] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:40](1145 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:11, 02:06] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:50](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:48](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:40](321 MB) - -PASS -- COMPILE 'atml_intel' [21:13, 14:46] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:45, 04:19](1595 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:14](1612 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:28](897 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:12, 05:35] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:37, 05:42](1610 MB) - -PASS -- COMPILE 'atmw_intel' [30:11, 12:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:31, 01:48](1625 MB) - -PASS -- COMPILE 'atmaero_intel' [29:11, 12:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:27, 04:04](3027 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:23, 05:03](3088 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:11, 05:00](3100 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [17:12, 03:50] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:00, 22:45](4577 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:54, 05:33](3178 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 20:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:21, 17:19](1736 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 18:27](1976 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:10, 08:32](1117 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:17, 19:31](1647 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:21] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:58, 23:06](1630 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 15:39] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:38, 05:50](3210 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:07, 05:58](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:07, 03:22](3250 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:38, 05:52](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:06, 03:28](3274 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:54, 06:16](3561 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 05:59](3193 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:39, 04:53](3068 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:55, 05:51](3214 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:57, 10:32](3337 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:34, 06:47](3563 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:01, 11:22](4127 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:56, 07:25](4378 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:35](3173 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 14:10] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:20, 04:50](1738 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:40, 04:34](1781 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:22] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:49, 08:45](3251 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:30] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:19, 06:04](1754 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 14:02] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:43, 04:32](1779 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 13:37] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:01, 08:07](2827 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:24](2830 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:07, 01:21](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:12, 20:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:02, 05:26](3222 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:27, 17:32](1767 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:40, 08:33](1138 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:19, 19:34](1678 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:06] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:26, 24:48](1704 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:26, 03:27](700 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:57, 02:57](1553 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:02, 03:03](1600 MB) +PASS -- TEST 'control_latlon_intel' [06:55, 03:00](1585 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:04, 03:00](1537 MB) +PASS -- TEST 'control_c48_intel' [11:01, 07:10](1767 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:32, 06:04](875 MB) +PASS -- TEST 'control_c192_intel' [14:12, 10:28](1752 MB) +PASS -- TEST 'control_c384_intel' [17:14, 12:49](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [15:12, 09:10](1352 MB) +PASS -- TEST 'control_stochy_intel' [04:26, 01:43](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [10:25, 01:08](502 MB) +PASS -- TEST 'control_lndp_intel' [04:23, 01:37](657 MB) +PASS -- TEST 'control_iovr4_intel' [05:29, 02:30](651 MB) +PASS -- TEST 'control_iovr5_intel' [04:26, 02:28](659 MB) +PASS -- TEST 'control_p8_intel' [12:19, 03:05](1634 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:30, 02:59](1632 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:44, 02:54](1625 MB) +PASS -- TEST 'control_restart_p8_intel' [03:22, 01:40](900 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:29, 02:54](1623 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:35](927 MB) +PASS -- TEST 'control_decomp_p8_intel' [12:24, 03:03](1572 MB) +PASS -- TEST 'control_2threads_p8_intel' [12:14, 03:08](1716 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:48, 05:15](1638 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:37, 03:57](1695 MB) +PASS -- TEST 'control_p8_mynn_intel' [13:35, 03:53](1635 MB) +PASS -- TEST 'merra2_thompson_intel' [12:50, 03:22](1638 MB) +PASS -- TEST 'regional_control_intel' [12:46, 05:16](858 MB) +PASS -- TEST 'regional_restart_intel' [04:44, 03:01](991 MB) +PASS -- TEST 'regional_decomp_intel' [13:50, 05:40](854 MB) +PASS -- TEST 'regional_2threads_intel' [11:47, 03:53](843 MB) +PASS -- TEST 'regional_noquilt_intel' [12:48, 05:13](1368 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:54, 05:15](855 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:40, 05:15](859 MB) +PASS -- TEST 'regional_wofs_intel' [10:42, 06:49](1879 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:03] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:38, 07:50](1105 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:53](1238 MB) +PASS -- TEST 'rap_decomp_intel' [10:01, 08:09](1032 MB) +PASS -- TEST 'rap_2threads_intel' [09:23, 07:57](1182 MB) +PASS -- TEST 'rap_restart_intel' [08:35, 04:05](1105 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:50](1107 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:08, 08:16](1020 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 05:57](1132 MB) +PASS -- TEST 'hrrr_control_intel' [05:31, 04:03](1030 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:09, 04:10](1024 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:09, 03:29](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:27, 02:12](999 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:27, 07:38](1101 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:15](1988 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 08:58](2065 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 11:56] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:46, 06:09](746 MB) +PASS -- TEST 'control_ras_intel' [04:23, 03:22](740 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 11:28] +PASS -- TEST 'control_wam_intel' [02:22, 02:06](663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 12:30] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:36, 02:42](1620 MB) +PASS -- TEST 'regional_control_faster_intel' [05:49, 04:38](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:37] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:42](1617 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:57, 02:40](1619 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:04](815 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:44](819 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:50, 04:22](829 MB) +PASS -- TEST 'control_ras_debug_intel' [03:24, 02:42](825 MB) +PASS -- TEST 'control_diag_debug_intel' [07:52, 02:51](1630 MB) +PASS -- TEST 'control_debug_p8_intel' [06:50, 02:56](1643 MB) +PASS -- TEST 'regional_debug_intel' [22:49, 17:32](845 MB) +PASS -- TEST 'rap_control_debug_intel' [09:25, 05:03](1206 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:26, 05:03](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:26, 04:49](1202 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:24, 04:57](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:24, 05:05](1203 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:38, 05:18](1281 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:23, 05:07](1201 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:25, 05:10](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:24, 05:14](1206 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:23, 05:04](1204 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:23, 04:57](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 05:02](1199 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:14](1206 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 04:54](1197 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 06:20](1213 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:57](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:38, 08:27](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:30] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:24, 05:02](507 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:34](1122 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 06:37](1047 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:12, 03:33](978 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:52, 06:51](1099 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:59](968 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:39](920 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:22, 04:55](1027 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:24, 02:01](896 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 14:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:02, 02:04](1199 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:07](1119 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:45, 01:21](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:55, 04:17](998 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:39] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:58](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:48](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [15:03, 14:02](1222 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:07, 14:30](925 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:25](1162 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 14:34](1288 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 02:59] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:53](1127 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 12:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:29](739 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:02](1119 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:32, 07:10](837 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 13:28](861 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:26, 15:03](1028 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:00, 06:15](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 07:35](517 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:51, 03:11](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:14, 08:13](484 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:18](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:52, 03:56](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:57, 05:19](579 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:28, 01:22](406 MB) +PASS -- TEST 'gnv1_nested_intel' [11:59, 04:34](804 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:51] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:53, 12:59](565 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:10, 13:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:03, 09:40](649 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:05, 09:48](741 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 13:00] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:08, 07:06](699 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 12:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:19, 06:20](830 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:18, 06:29](813 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:58, 15:54](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 06:56] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:18, 02:35](1133 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:39](1088 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:34](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 02:38](996 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:18, 02:37](1010 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:19, 02:38](1126 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:36](1122 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:33](996 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 05:48](1047 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:17, 06:05](1034 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:41](1112 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:29](2435 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:37](2434 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:46] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:21](1053 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:35] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1138 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 01:43] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:51](245 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:33](324 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 13:04] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:41, 04:15](1613 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:36, 04:19](1598 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:26](894 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:10, 04:08] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:38, 05:43](1614 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:19] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:37, 01:46](1621 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:28, 04:02](3014 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:25, 04:54](3101 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 05:02](3101 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:35] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:56, 20:41](4420 MB) SYNOPSIS: -Starting Date/Time: 20240506 09:36:17 -Ending Date/Time: 20240506 11:36:51 -Total Time: 02h:01m:13s +Starting Date/Time: 20240508 15:06:47 +Ending Date/Time: 20240508 16:39:45 +Total Time: 01h:33m:47s Compiles Completed: 38/38 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 8f8ad7b085..257d32ff8a 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -58f6e863baafb6be6c58b625ba5669f80a1d82ab +f29351be77830efd8ae23ad72436b4b38b886383 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,14 +9,14 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop-51-g683061b) + cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,238 +36,312 @@ 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-20240503 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_168635 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244581 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:33, 20:01] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:56, 01:18](2974 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:36, 22:20] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [07:53, 02:00](1596 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [49:57, 01:48](1717 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [49:32, 01:19](847 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:02, 01:29](1573 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:16] ( 1506 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:13, 01:20](1598 MB) - -PASS -- COMPILE 's2swa_intel' [24:39, 23:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [05:51, 01:28](3007 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [05:51, 01:38](3003 MB) -PASS -- TEST 'cpld_restart_p8_intel' [57:24, 01:53](3063 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [05:51, 01:27](3030 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [57:24, 01:48](3080 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [05:51, 01:09](3319 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [05:51, 01:30](3003 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:52, 01:30](2931 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [05:51, 01:40](3003 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [06:00, 04:50](3957 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:46, 04:06](4253 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 01:50](2969 MB) - -PASS -- COMPILE 's2sw_intel' [11:24, 10:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [19:06, 00:46](1587 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:06, 00:57](1640 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:06, 00:59](1633 MB) - -PASS -- COMPILE 's2s_intel' [24:37, 24:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [05:51, 00:44](2649 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:51, 01:33](2672 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:44, 01:12](2106 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:30, 16:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:00, 01:38](3001 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 11:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:05, 01:08](1611 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [00:48, 01:32](902 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [59:28, 01:41](1587 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:22, 08:55] ( 1542 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:08, 01:37](1613 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [23:39, 22:28] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [59:27, 00:23](576 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [59:27, 00:26](1466 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:52, 00:26](1474 MB) -PASS -- TEST 'control_latlon_intel' [58:51, 00:24](1481 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [58:41, 00:33](1471 MB) -PASS -- TEST 'control_c48_intel' [58:30, 00:54](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [58:21, 00:50](718 MB) -PASS -- TEST 'control_c192_intel' [58:22, 00:32](1589 MB) -PASS -- TEST 'control_c384_intel' [58:07, 02:11](1906 MB) -PASS -- TEST 'control_c384gdas_intel' [57:45, 01:45](1093 MB) -PASS -- TEST 'control_stochy_intel' [57:24, 00:27](525 MB) -PASS -- TEST 'control_stochy_restart_intel' [54:56, 01:02](326 MB) -PASS -- TEST 'control_lndp_intel' [57:22, 00:32](527 MB) -PASS -- TEST 'control_iovr4_intel' [57:14, 00:46](524 MB) -PASS -- TEST 'control_iovr5_intel' [57:13, 00:47](524 MB) -PASS -- TEST 'control_p8_intel' [57:02, 01:53](1512 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [56:07, 01:54](1503 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [56:07, 01:57](1509 MB) -PASS -- TEST 'control_restart_p8_intel' [51:41, 01:03](692 MB) -PASS -- TEST 'control_noqr_p8_intel' [55:44, 01:34](1504 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [50:43, 00:58](699 MB) -PASS -- TEST 'control_decomp_p8_intel' [55:32, 01:31](1502 MB) -PASS -- TEST 'control_2threads_p8_intel' [55:30, 00:52](1588 MB) -PASS -- TEST 'control_p8_lndp_intel' [55:08, 01:01](1502 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [55:05, 01:54](1554 MB) -PASS -- TEST 'control_p8_mynn_intel' [55:02, 01:46](1514 MB) -PASS -- TEST 'merra2_thompson_intel' [55:01, 01:32](1512 MB) -PASS -- TEST 'regional_control_intel' [54:58, 00:15](610 MB) -PASS -- TEST 'regional_restart_intel' [49:12, 00:26](779 MB) -PASS -- TEST 'regional_decomp_intel' [54:55, 00:57](607 MB) -PASS -- TEST 'regional_2threads_intel' [54:56, 00:55](664 MB) -PASS -- TEST 'regional_noquilt_intel' [54:47, 00:20](1140 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [53:45, 00:27](608 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [53:44, 00:17](609 MB) -PASS -- TEST 'regional_wofs_intel' [53:35, 00:34](1584 MB) - -PASS -- COMPILE 'rrfs_intel' [16:32, 16:09] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [04:34, 01:41](920 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:35, 01:08](1096 MB) -PASS -- TEST 'rap_decomp_intel' [04:34, 01:27](919 MB) -PASS -- TEST 'rap_2threads_intel' [04:34, 01:44](1008 MB) -PASS -- TEST 'rap_restart_intel' [52:23, 01:05](788 MB) -PASS -- TEST 'rap_sfcdiff_intel' [51:40, 02:07](912 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:34, 01:51](914 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [42:17, 01:49](787 MB) -PASS -- TEST 'hrrr_control_intel' [04:34, 01:04](909 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:34, 01:01](907 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 01:27](996 MB) -PASS -- TEST 'hrrr_control_restart_intel' [51:31, 01:02](743 MB) -PASS -- TEST 'rrfs_v1beta_intel' [04:34, 01:13](914 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [04:34, 00:57](1877 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:34, 01:11](1862 MB) - -PASS -- COMPILE 'csawmg_intel' [24:40, 23:29] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [50:44, 00:34](599 MB) -PASS -- TEST 'control_ras_intel' [50:43, 00:57](563 MB) - -PASS -- COMPILE 'wam_intel' [21:34, 21:09] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [50:43, 00:54](272 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:31, 16:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [50:41, 02:04](1504 MB) -PASS -- TEST 'regional_control_faster_intel' [50:35, 00:25](612 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:25, 09:37] ( 871 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 01:19](1489 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:27, 00:28](1489 MB) -PASS -- TEST 'control_stochy_debug_intel' [50:30, 00:51](695 MB) -PASS -- TEST 'control_lndp_debug_intel' [50:27, 01:11](694 MB) -PASS -- TEST 'control_csawmg_debug_intel' [50:14, 00:47](734 MB) -PASS -- TEST 'control_ras_debug_intel' [49:26, 01:10](704 MB) -PASS -- TEST 'control_diag_debug_intel' [49:06, 01:26](1555 MB) -PASS -- TEST 'control_debug_p8_intel' [48:34, 01:04](1518 MB) -PASS -- TEST 'regional_debug_intel' [48:19, 00:49](632 MB) -PASS -- TEST 'rap_control_debug_intel' [48:15, 00:56](1075 MB) -PASS -- TEST 'hrrr_control_debug_intel' [48:11, 01:00](1066 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [48:05, 01:02](1071 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [48:01, 00:56](1070 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [47:58, 00:58](1077 MB) -PASS -- TEST 'rap_diag_debug_intel' [47:23, 00:53](1158 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [47:20, 00:46](1076 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [47:19, 00:49](1074 MB) -PASS -- TEST 'rap_lndp_debug_intel' [47:14, 00:57](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [46:16, 00:54](1076 MB) -PASS -- TEST 'rap_noah_debug_intel' [46:14, 01:02](1073 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [46:01, 01:01](1071 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [46:00, 00:49](1068 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [45:53, 01:01](1074 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [45:29, 01:14](1076 MB) -PASS -- TEST 'rap_flake_debug_intel' [45:12, 00:56](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:58, 01:19](1078 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:27, 12:51] ( 843 warnings ) -PASS -- TEST 'control_wam_debug_intel' [44:54, 00:55](304 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:35, 15:18] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [44:26, 01:22](954 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [44:11, 01:15](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [44:10, 02:18](785 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [43:52, 01:33](849 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:38, 00:56](840 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:44, 02:08](785 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [36:43, 01:35](679 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [38:21, 00:22](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:26, 11:49] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [41:43, 01:09](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [37:46, 00:53](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [36:43, 00:44](881 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 12:45] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [41:32, 01:22](811 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:43, 24:59] ( 774 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [38:44, 01:04](952 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [38:23, 01:14](952 MB) -PASS -- TEST 'conus13km_debug_intel' [38:16, 00:24](1035 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [37:53, 01:16](710 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [36:21, 00:28](1037 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [36:03, 00:19](1102 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:25, 08:58] ( 774 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [41:31, 01:00](978 MB) - -PASS -- COMPILE 'hafsw_intel' [17:32, 17:06] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [41:30, 02:07](617 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [40:53, 00:33](966 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [40:51, 01:39](661 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [40:44, 01:33](698 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [40:44, 01:29](714 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:44, 01:11](384 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [39:44, 02:17](400 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [39:28, 01:41](282 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [39:29, 02:29](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [39:25, 01:34](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [39:02, 01:02](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [35:54, 00:45](496 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [35:53, 00:23](324 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [19:33, 19:00] ( 1450 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [35:37, 00:43](493 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:29, 14:50] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [35:13, 01:41](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [35:04, 01:34](712 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:39, 21:51] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:29, 00:56](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:25, 10:10] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [34:52, 02:11](658 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [34:22, 01:14](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [34:16, 00:23](881 MB) - -PASS -- COMPILE 'atml_intel' [10:23, 10:00] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [34:18, 01:13](1543 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [34:08, 01:13](1547 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [27:31, 00:22](741 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:25, 10:38] ( 867 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [33:58, 01:39](1560 MB) - -PASS -- COMPILE 'atmaero_intel' [13:28, 12:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [33:19, 01:28](2853 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [32:52, 00:58](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:39, 01:50](2924 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:17, 04:01] ( 871 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [32:14, 01:13](4436 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:36, 22:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:01, 01:24](2973 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:37, 22:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [08:00, 01:54](1592 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:01, 01:44](1709 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [50:01, 02:12](851 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [08:01, 01:40](1576 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:21] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:20, 01:42](1605 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 11:00] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:13, 01:29](3005 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:13, 01:45](3002 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:52, 01:54](3062 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:13, 01:25](3025 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:48, 01:52](3080 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:13, 01:07](3311 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:13, 01:28](3003 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [20:14, 01:26](2932 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:13, 01:47](3002 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:22, 03:33](3952 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [02:29, 04:17](4246 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:13, 01:55](2970 MB) + +PASS -- COMPILE 's2sw_intel' [11:24, 10:30] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [20:13, 00:50](1593 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:13, 01:04](1640 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [28:42, 28:23] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [02:54, 00:57](1635 MB) + +PASS -- COMPILE 's2s_intel' [10:23, 09:47] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [21:13, 00:43](2657 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [21:13, 01:27](2678 MB) +PASS -- TEST 'cpld_restart_c48_intel' [17:13, 01:24](2108 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:34, 19:38] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:59, 01:47](3003 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:42, 17:37] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [53:20, 01:11](1604 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:58, 00:42](903 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:59, 00:40](1581 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:18] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:20, 01:40](1611 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 11:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [14:54, 00:19](576 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [14:54, 00:27](1468 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:54, 00:27](1478 MB) +PASS -- TEST 'control_latlon_intel' [14:54, 00:20](1470 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:54, 00:33](1477 MB) +PASS -- TEST 'control_c48_intel' [14:53, 00:52](1597 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [14:53, 00:55](714 MB) +PASS -- TEST 'control_c192_intel' [14:54, 00:41](1582 MB) +PASS -- TEST 'control_c384_intel' [02:53, 01:59](1905 MB) +PASS -- TEST 'control_c384gdas_intel' [14:58, 01:50](1090 MB) +PASS -- TEST 'control_stochy_intel' [14:54, 00:29](532 MB) +PASS -- TEST 'control_stochy_restart_intel' [12:20, 01:04](328 MB) +PASS -- TEST 'control_lndp_intel' [14:54, 00:34](529 MB) +PASS -- TEST 'control_iovr4_intel' [14:54, 00:45](524 MB) +PASS -- TEST 'control_iovr5_intel' [14:54, 00:45](522 MB) +PASS -- TEST 'control_p8_intel' [14:54, 01:56](1509 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [14:08, 01:53](1501 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [13:59, 01:57](1503 MB) +PASS -- TEST 'control_restart_p8_intel' [09:26, 00:42](694 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:45, 01:33](1497 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:44, 00:50](698 MB) +PASS -- TEST 'control_decomp_p8_intel' [13:05, 01:21](1495 MB) +PASS -- TEST 'control_2threads_p8_intel' [12:46, 00:51](1591 MB) +PASS -- TEST 'control_p8_lndp_intel' [12:46, 01:08](1510 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:17, 01:01](1565 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:53, 01:47](1506 MB) +PASS -- TEST 'merra2_thompson_intel' [11:40, 01:45](1510 MB) +PASS -- TEST 'regional_control_intel' [11:30, 00:18](610 MB) +PASS -- TEST 'regional_restart_intel' [05:48, 00:21](777 MB) +PASS -- TEST 'regional_decomp_intel' [11:29, 01:05](608 MB) +PASS -- TEST 'regional_2threads_intel' [11:18, 00:58](660 MB) +PASS -- TEST 'regional_noquilt_intel' [11:17, 00:24](1146 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:08, 00:27](606 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:03, 00:17](610 MB) +PASS -- TEST 'regional_wofs_intel' [11:03, 00:34](1577 MB) + +PASS -- COMPILE 'rrfs_intel' [27:52, 27:04] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [58:26, 01:38](917 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [58:27, 01:07](1099 MB) +PASS -- TEST 'rap_decomp_intel' [58:26, 01:23](918 MB) +PASS -- TEST 'rap_2threads_intel' [58:26, 01:45](1005 MB) +PASS -- TEST 'rap_restart_intel' [49:28, 01:17](788 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'rap_sfcdiff_intel' [, ]( MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [58:26, 01:44](916 MB) +FAILED: UNABLE TO START RUN -- TEST 'rap_sfcdiff_restart_intel' [, ]( MB) +PASS -- TEST 'hrrr_control_intel' [58:26, 01:02](910 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [58:26, 00:56](909 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [58:27, 01:23](989 MB) +PASS -- TEST 'hrrr_control_restart_intel' [53:24, 01:06](742 MB) +PASS -- TEST 'rrfs_v1beta_intel' [58:26, 01:15](912 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [58:26, 01:00](1871 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [58:26, 01:18](1861 MB) + +PASS -- COMPILE 'csawmg_intel' [25:50, 24:55] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [55:23, 00:33](600 MB) +PASS -- TEST 'control_ras_intel' [55:23, 00:55](560 MB) + +PASS -- COMPILE 'wam_intel' [31:02, 30:34] +PASS -- TEST 'control_wam_intel' [49:08, 00:54](272 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [23:48, 23:07] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [56:24, 02:02](1504 MB) +PASS -- TEST 'regional_control_faster_intel' [56:23, 00:26](609 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [22:40, 21:56] ( 870 warnings 92 remarks ) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [52:13, 00:29](1493 MB) +PASS -- TEST 'control_stochy_debug_intel' [52:13, 00:56](693 MB) +PASS -- TEST 'control_lndp_debug_intel' [52:13, 01:16](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [52:13, 00:41](732 MB) +PASS -- TEST 'control_ras_debug_intel' [52:13, 01:12](704 MB) +PASS -- TEST 'control_diag_debug_intel' [52:13, 01:17](1546 MB) +PASS -- TEST 'control_debug_p8_intel' [52:13, 01:05](1524 MB) +PASS -- TEST 'regional_debug_intel' [52:12, 00:47](629 MB) +PASS -- TEST 'rap_control_debug_intel' [52:13, 00:57](1074 MB) +PASS -- TEST 'hrrr_control_debug_intel' [52:13, 01:06](1068 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [50:58, 01:01](1072 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [50:57, 00:58](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [50:42, 00:53](1075 MB) +PASS -- TEST 'rap_diag_debug_intel' [50:00, 00:50](1156 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [49:58, 00:44](1076 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [49:31, 00:46](1073 MB) +PASS -- TEST 'rap_lndp_debug_intel' [49:28, 00:53](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [49:00, 00:56](1076 MB) +PASS -- TEST 'rap_noah_debug_intel' [48:48, 01:02](1073 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [48:47, 00:54](1078 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [48:20, 00:41](1077 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [47:51, 01:02](1071 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [47:43, 01:06](1077 MB) +PASS -- TEST 'rap_flake_debug_intel' [47:43, 00:55](1074 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [47:43, 02:13](1084 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:25, 05:18] ( 842 warnings ) +PASS -- TEST 'control_wam_debug_intel' [04:37, 00:50](301 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:53, 21:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [46:29, 01:27](957 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [45:53, 01:19](791 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [45:45, 01:39](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [45:42, 01:38](856 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [45:42, 01:33](839 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [44:58, 01:47](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [38:29, 01:34](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:41, 00:19](669 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:38, 13:31] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [53:22, 01:03](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [47:42, 00:54](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [47:29, 00:42](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 13:44] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:24, 01:25](806 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:42, 11:26] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:51, 00:57](952 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:51, 01:11](951 MB) +PASS -- TEST 'conus13km_debug_intel' [44:24, 00:30](1039 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [44:24, 01:06](709 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [44:17, 00:33](1038 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:04, 00:24](1102 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:22, 07:56] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:32, 00:58](981 MB) + +PASS -- COMPILE 'hafsw_intel' [21:46, 20:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [34:40, 02:07](621 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [34:40, 00:37](971 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [34:38, 01:55](663 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [34:38, 01:35](704 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:39, 01:22](711 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [34:38, 01:07](386 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [34:39, 02:14](401 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [34:39, 01:26](292 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [34:42, 02:26](376 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:29, 01:30](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:14, 00:52](410 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [33:13, 00:49](493 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:12, 00:23](316 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:29, 15:00] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [39:56, 00:39](507 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:25, 10:26] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [42:00, 00:44](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [42:00, 00:44](708 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:30, 12:24] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [39:52, 00:53](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:27, 10:23] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [40:47, 01:21](661 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [40:46, 01:23](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [40:44, 00:30](882 MB) + +PASS -- COMPILE 'atml_intel' [20:39, 19:53] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [29:32, 01:21](1543 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [29:32, 01:21](1550 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:52, 00:21](746 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:21, 04:33] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [35:22, 01:44](1569 MB) + +PASS -- COMPILE 'atmaero_intel' [10:32, 10:09] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [39:31, 01:31](2850 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [39:31, 00:53](2914 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [39:31, 01:51](2923 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:23, 09:56] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [38:47, 01:36](4445 MB) SYNOPSIS: -Starting Date/Time: 20240506 19:29:03 -Ending Date/Time: 20240506 20:53:52 -Total Time: 01h:25m:26s +Starting Date/Time: 20240508 15:27:57 +Ending Date/Time: 20240508 16:47:23 +Total Time: 01h:19m:56s Compiles Completed: 31/31 -Tests Completed: 158/158 +Tests Completed: 155/158 +Failed Tests: +* TEST rap_sfcdiff_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/fabiolrdiniz/ufs-weather-model/tests/logs/log_wcoss2/run_rap_sfcdiff_intel.log +* TEST rap_sfcdiff_restart_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST control_CubedSphereGrid_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/fabiolrdiniz/ufs-weather-model/tests/logs/log_wcoss2/run_control_CubedSphereGrid_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: +f29351be77830efd8ae23ad72436b4b38b886383 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +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-20240503 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_51903 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:15] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_sfcdiff_intel' [21:31, 02:11](915 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [12:05, 01:20](791 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:18, 04:12] ( 870 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:36, 01:18](1490 MB) + +SYNOPSIS: +Starting Date/Time: 20240508 17:27:57 +Ending Date/Time: 20240508 17:56:08 +Total Time: 00h:28m:25s +Compiles Completed: 2/2 +Tests Completed: 3/3 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/fd_ufs.yaml b/tests/parm/fd_ufs.yaml index a91ff96d64..c0189f0bdf 100644 --- a/tests/parm/fd_ufs.yaml +++ b/tests/parm/fd_ufs.yaml @@ -1055,43 +1055,76 @@ # - standard_name: u canonical_units: m s-1 + alias: u_component_of_native_D_grid_wind # - standard_name: v canonical_units: m s-1 + alias: v_component_of_native_D_grid_wind # - standard_name: ua canonical_units: m s-1 + alias: eastward_wind # - standard_name: va canonical_units: m s-1 + alias: northward_wind # - standard_name: t canonical_units: K + alias: air_temperature # - standard_name: delp canonical_units: Pa + alias: air_pressure_thickness + # + - standard_name: ps + canonical_units: Pa + alias: surface_pressure # - standard_name: sphum canonical_units: kg kg-1 + alias: specific_humidity # - standard_name: ice_wat canonical_units: kg kg-1 + alias: cloud_liquid_ice # - standard_name: liq_wat canonical_units: kg kg-1 + alias: cloud_liquid_water + # + - standard_name: rainwat + canonical_units: kg kg-1 + alias: rain_water + # + - standard_name: snowwat + canonical_units: kg kg-1 + alias: snow_water + # + - standard_name: graupel + canonical_units: kg kg-1 + alias: graupel # - standard_name: o3mr canonical_units: kg kg-1 + alias: ozone_mass_mixing_ratio # - standard_name: phis canonical_units: m2 s-2 + alias: sfc_geopotential_height_times_grav # - standard_name: u_srf canonical_units: m s-1 + alias: surface_eastward_wind # - standard_name: v_srf canonical_units: m s-1 + alias: surface_northward_wind + # # + - standard_name: t2m + canonical_units: K + alias: surface_temperature # - standard_name: slmsk canonical_units: flag @@ -1100,6 +1133,7 @@ - standard_name: weasd canonical_units: mm description: water equiv of acc snow depth over land and sea ice + alias: sheleg # - standard_name: tsea canonical_units: K @@ -1169,7 +1203,7 @@ - standard_name: Sl_sfrac alias: inst_snow_area_fraction_lnd canonical_units: 1 - description: land export + description: land export # - standard_name: Sl_tref alias: inst_temp_height2m_lnd @@ -1201,7 +1235,7 @@ canonical_units: W m-2 description: land export # - - standard_name: Fall_gflx + - standard_name: Fall_gflx alias: inst_upward_heat_flux_lnd canonical_units: W m-2 description: land export @@ -1222,7 +1256,7 @@ description: land export # - standard_name: Sl_chh - alias: inst_drag_mass_flux_for_heat_and_moisture + alias: inst_drag_mass_flux_for_heat_and_moisture canonical_units: kg m-2 s-1 description: land export # diff --git a/tests/test_changes.list b/tests/test_changes.list index dfc590d291..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,52 +0,0 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -datm_cdeps_control_cfsr intel -datm_cdeps_restart_cfsr intel -datm_cdeps_control_gefs intel -datm_cdeps_iau_gefs intel -datm_cdeps_stochy_gefs intel -datm_cdeps_ciceC_cfsr intel -datm_cdeps_bulk_cfsr intel -datm_cdeps_bulk_gefs intel -datm_cdeps_mx025_cfsr intel -datm_cdeps_mx025_gefs intel -datm_cdeps_multiple_files_cfsr intel -datm_cdeps_3072x1536_cfsr intel -datm_cdeps_gfs intel -datm_cdeps_debug_cfsr intel -datm_cdeps_control_cfsr_faster intel -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu -datm_cdeps_control_cfsr gnu From b2668e84f3d3046482c422db9ec7b11cfbcbb79b Mon Sep 17 00:00:00 2001 From: Nicholas Szapiro <149816583+NickSzapiro-NOAA@users.noreply.github.com> Date: Mon, 13 May 2024 13:07:27 -0400 Subject: [PATCH 09/16] Update CICE to CICE-Consortium (2024-05-01)+update mom6 to its main repo. 20240508 commit #2275 (#2259) * UFSWM - Update CICE to CICE-Consortium (2024-05-01) and mom6 to its main repo (2024-05-08) * CICE - Update CICE to CICE-Consortium (2024-05-01) * MOM6 - Update mom6 to its main repo. 20240508 commit --- CICE-interface/CICE | 2 +- MOM6-interface/MOM6 | 2 +- tests/ci/Jenkinsfile.combined | 8 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 108 +-- tests/logs/RegressionTests_derecho.log | 611 ++++++++------- tests/logs/RegressionTests_gaea.log | 530 ++++++------- tests/logs/RegressionTests_hera.log | 714 +++++++++--------- tests/logs/RegressionTests_hercules.log | 704 ++++++++--------- tests/logs/RegressionTests_jet.log | 468 ++++++------ tests/logs/RegressionTests_orion.log | 526 ++++++------- tests/logs/RegressionTests_wcoss2.log | 513 +++++++------ tests/opnReqTest | 2 +- tests/parm/ice_in.IN | 8 + 15 files changed, 2193 insertions(+), 2075 deletions(-) diff --git a/CICE-interface/CICE b/CICE-interface/CICE index c9e4679f44..9c0cd8d3ba 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 +Subproject commit 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 0730606b80..3bcfbbea8b 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 0730606b808f2979241d850e763955f5526a980c +Subproject commit 3bcfbbea8b865c3f88497049fde044c1145bd202 diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined index 5b3d072320..9628cae560 100644 --- a/tests/ci/Jenkinsfile.combined +++ b/tests/ci/Jenkinsfile.combined @@ -69,6 +69,10 @@ def generateStage(nodeLabel) { cd $WORKSPACE/tests/ elif [[ $machine =~ "Orion" ]] then + cd .. + module load git/2.28.0 + git submodule update --init --recursive + cd tests echo "Creating baselines on $machine" export dprefix=/work2/noaa/$ACCNR/$USER sed -i 's|/work/noaa/stmp/${USER}|/work/noaa/epic/stmp/role-epic/|g' rt.sh @@ -214,6 +218,10 @@ def generateStage(nodeLabel) { elif [[ $machine =~ "Orion" ]] then echo "Running regression tests on $machine" + cd .. + module load git/2.28.0 + git submodule update --init --recursive + cd tests export dprefix=/work2/noaa/$ACCNR/$USER sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 9b774a47d9..7788869a56 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed May 8 13:41:14 UTC 2024 +Sun May 12 12:30:46 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/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 = 268.660502 - 0: The maximum resident set size (KB) = 1268232 + 0: The total amount of wall time = 274.685635 + 0: The maximum resident set size (KB) = 1268520 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/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 = 952.646761 - 0: The maximum resident set size (KB) = 1255292 + 0: The total amount of wall time = 961.766801 + 0: The maximum resident set size (KB) = 1234336 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/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 = 242.733088 - 0: The maximum resident set size (KB) = 1245144 + 0: The total amount of wall time = 239.860027 + 0: The maximum resident set size (KB) = 1250884 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/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 = 239.108039 - 0: The maximum resident set size (KB) = 1248916 + 0: The total amount of wall time = 241.404044 + 0: The maximum resident set size (KB) = 1246748 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/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 = 242.313139 - 0: The maximum resident set size (KB) = 1247708 + 0: The total amount of wall time = 242.962682 + 0: The maximum resident set size (KB) = 1249268 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/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 = 237.668319 - 0: The maximum resident set size (KB) = 1248200 + 0: The total amount of wall time = 237.070887 + 0: The maximum resident set size (KB) = 1238956 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/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 = 243.736914 - 0: The maximum resident set size (KB) = 1248980 + 0: The total amount of wall time = 237.482893 + 0: The maximum resident set size (KB) = 1245620 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed May 8 14:43:48 UTC 2024 -Elapsed time: 01h:02m:35s. Have a nice day! +Sun May 12 13:33:32 UTC 2024 +Elapsed time: 01h:02m:46s. 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 e13da398db..4a9c079313 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 May 8 22:03:04 UTC 2024 +Mon May 13 12:14:02 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/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 = 1313.925417 - 0: The maximum resident set size (KB) = 1367280 + 0: The total amount of wall time = 1419.286675 + 0: The maximum resident set size (KB) = 1344244 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/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 = 618.318216 - 0: The maximum resident set size (KB) = 1359788 + 0: The total amount of wall time = 385.831343 + 0: The maximum resident set size (KB) = 1341548 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/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 = 541.651862 - 0: The maximum resident set size (KB) = 1359804 + 0: The total amount of wall time = 389.117762 + 0: The maximum resident set size (KB) = 1343228 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed May 8 23:07:07 UTC 2024 -Elapsed time: 01h:04m:04s. Have a nice day! +Mon May 13 13:13:57 UTC 2024 +Elapsed time: 00h:59m:55s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 8803c1624f..41329d28f6 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed May 8 18:21:05 UTC 2024 +Sun May 12 21:58:20 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2920818/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4046824/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving dynf000.nc .........OK @@ -15,38 +15,20 @@ Moving baseline bit_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1309.798707 - 0: The maximum resident set size (KB) = 596032 + 0: The total amount of wall time = 1390.059976 + 0: The maximum resident set size (KB) = 576080 Test bit_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed May 8 18:47:56 UTC 2024 -Elapsed time: 00h:26m:51s. Have a nice day! -Wed May 8 18:48:27 UTC 2024 +Sun May 12 22:27:02 UTC 2024 +Elapsed time: 00h:28m:42s. Have a nice day! +Sun May 12 22:54:29 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3015786/dcp_dcp -Checking test dcp results .... - Comparing dynf000.nc .....USING NCCMP......OK - Comparing dynf006.nc .....USING NCCMP......OK - Comparing phyf000.nc .....USING NCCMP......OK - Comparing phyf006.nc .....USING NCCMP......OK - Comparing PRSLEV.GrbF00 .....USING CMP......OK - Comparing PRSLEV.GrbF06 .....USING CMP......OK - Comparing NATLEV.GrbF00 .....USING CMP......OK - Comparing NATLEV.GrbF06 .....USING CMP......OK - - 0: The total amount of wall time = 2158.789432 - 0: The maximum resident set size (KB) = 560836 - -Test dcp PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3015786/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_56239/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -58,20 +40,56 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2165.997972 - 0: The maximum resident set size (KB) = 556908 + 0: The total amount of wall time = 2241.535310 + 0: The maximum resident set size (KB) = 542212 Test std_base PASS + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_56239/thr_thr +Checking test thr results .... + Comparing dynf000.nc .....USING NCCMP......OK + Comparing dynf006.nc .....USING NCCMP......OK + Comparing phyf000.nc .....USING NCCMP......OK + Comparing phyf006.nc .....USING NCCMP......OK + Comparing PRSLEV.GrbF00 .....USING CMP......OK + Comparing PRSLEV.GrbF06 .....USING CMP......OK + Comparing NATLEV.GrbF00 .....USING CMP......OK + Comparing NATLEV.GrbF06 .....USING CMP......OK + + 0: The total amount of wall time = 2211.134928 + 0: The maximum resident set size (KB) = 542148 + +Test thr PASS + OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed May 8 20:07:02 UTC 2024 -Elapsed time: 01h:18m:35s. Have a nice day! -Wed May 8 20:12:02 UTC 2024 +Mon May 13 00:16:03 UTC 2024 +Elapsed time: 01h:21m:34s. Have a nice day! +Mon May 13 03:04:00 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3343721/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1227404/dcp_dcp +Checking test dcp results .... + Comparing dynf000.nc .....USING NCCMP......OK + Comparing dynf006.nc .....USING NCCMP......OK + Comparing phyf000.nc .....USING NCCMP......OK + Comparing phyf006.nc .....USING NCCMP......OK + Comparing PRSLEV.GrbF00 .....USING CMP......OK + Comparing PRSLEV.GrbF06 .....USING CMP......OK + Comparing NATLEV.GrbF00 .....USING CMP......OK + Comparing NATLEV.GrbF06 .....USING CMP......OK + + 0: The total amount of wall time = 2157.558307 + 0: The maximum resident set size (KB) = 546728 + +Test dcp PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1227404/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -83,29 +101,11 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2128.207151 - 0: The maximum resident set size (KB) = 555744 + 0: The total amount of wall time = 2148.505696 + 0: The maximum resident set size (KB) = 543380 Test std_base PASS - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3343721/thr_thr -Checking test thr results .... - Comparing dynf000.nc .....USING NCCMP......OK - Comparing dynf006.nc .....USING NCCMP......OK - Comparing phyf000.nc .....USING NCCMP......OK - Comparing phyf006.nc .....USING NCCMP......OK - Comparing PRSLEV.GrbF00 .....USING CMP......OK - Comparing PRSLEV.GrbF06 .....USING CMP......OK - Comparing NATLEV.GrbF00 .....USING CMP......OK - Comparing NATLEV.GrbF06 .....USING CMP......OK - - 0: The total amount of wall time = 2139.117039 - 0: The maximum resident set size (KB) = 580480 - -Test thr PASS - OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed May 8 21:29:22 UTC 2024 -Elapsed time: 01h:17m:20s. Have a nice day! +Mon May 13 04:21:22 UTC 2024 +Elapsed time: 01h:17m:22s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 00f3b3ffda..aca7db6a29 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,17 +1,17 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -1b73dc3cfe52765a05ce8ae57735fef196de5fab +57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) + 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,270 +36,361 @@ 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-20240503 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_15947 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_111254 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:51, 20:04] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:04, 04:57](3072 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:51, 20:27] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [28:28, 13:45](1697 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:42, 15:10](1827 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 07:19](958 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 15:49](1659 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:19, 10:42] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:35, 21:17](1694 MB) - -PASS -- COMPILE 's2swa_intel' [21:51, 20:04] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:28, 05:39](3092 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:12, 05:37](3092 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:31, 03:19](3150 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:07, 05:40](3125 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:51, 03:20](3179 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:44, 05:34](3092 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:49, 04:37](3400 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:05, 05:35](3100 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [31:09, 08:53](3636 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [19:01, 05:52](3617 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [36:12, 09:48](4343 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [42:55, 07:04](4651 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:31, 05:14](3067 MB) - -PASS -- COMPILE 's2sw_intel' [22:51, 19:14] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:16, 04:12](1690 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:28, 04:16](1731 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:49, 10:37] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:28, 07:43](3156 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:46, 10:03] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:10, 05:20](1708 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:50, 14:51] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 04:18](1736 MB) - -PASS -- COMPILE 's2s_intel' [17:50, 14:51] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [27:52, 06:40](2667 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [21:42, 01:57](2691 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:28, 01:12](2121 MB) - -PASS -- COMPILE 's2swa_faster_intel' [09:48, 23:12] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:26, 05:27](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [53:49, 20:09] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:52, 14:01](1706 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:07, 07:28](1021 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:24, 16:01](1678 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:53, 09:55] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:00, 22:59](1712 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [07:51, 12:49] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:40, 03:23](672 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:17, 02:22](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:29, 02:24](1571 MB) -PASS -- TEST 'control_latlon_intel' [04:20, 02:22](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:17, 02:27](1568 MB) -PASS -- TEST 'control_c48_intel' [08:16, 06:12](1620 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:13](738 MB) -PASS -- TEST 'control_c192_intel' [11:56, 08:43](1694 MB) -PASS -- TEST 'control_c384_intel' [16:49, 08:56](2010 MB) -PASS -- TEST 'control_c384gdas_intel' [18:01, 07:22](1203 MB) -PASS -- TEST 'control_stochy_intel' [02:28, 01:24](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:37, 00:51](441 MB) -PASS -- TEST 'control_lndp_intel' [02:41, 01:20](626 MB) -PASS -- TEST 'control_iovr4_intel' [03:57, 02:04](624 MB) -PASS -- TEST 'control_iovr5_intel' [03:56, 02:03](624 MB) -PASS -- TEST 'control_p8_intel' [04:51, 02:29](1597 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:50, 02:30](1595 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:51, 02:30](1604 MB) -PASS -- TEST 'control_restart_p8_intel' [03:31, 01:23](801 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:44, 02:27](1592 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:28, 01:23](808 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:33](1590 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:31, 04:20](1604 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:17](1661 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:31](1606 MB) -PASS -- TEST 'merra2_thompson_intel' [05:46, 02:47](1608 MB) -PASS -- TEST 'regional_control_intel' [06:05, 04:30](628 MB) -PASS -- TEST 'regional_restart_intel' [04:06, 02:29](801 MB) -PASS -- TEST 'regional_decomp_intel' [06:58, 04:44](632 MB) -PASS -- TEST 'regional_noquilt_intel' [06:11, 04:25](1161 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:16, 04:26](628 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:10, 04:30](633 MB) -PASS -- TEST 'regional_wofs_intel' [07:10, 05:39](1605 MB) - -PASS -- COMPILE 'rrfs_intel' [04:49, 11:31] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:13, 06:05](1007 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:43, 03:37](1204 MB) -PASS -- TEST 'rap_decomp_intel' [08:26, 06:20](1004 MB) -PASS -- TEST 'rap_restart_intel' [05:18, 03:11](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:20, 06:02](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:19, 06:19](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 04:32](880 MB) -PASS -- TEST 'hrrr_control_intel' [05:04, 03:12](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:08, 03:16](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:48](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:58, 01:44](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:18, 05:58](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:49, 07:19](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:49, 07:03](1955 MB) - -PASS -- COMPILE 'csawmg_intel' [03:49, 10:46] ( 6 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:17, 05:49](695 MB) -PASS -- TEST 'control_ras_intel' [04:32, 02:51](659 MB) - -PASS -- COMPILE 'wam_intel' [59:47, 10:01] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:34, 01:55](387 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [02:48, 12:50] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:47, 02:23](1604 MB) -PASS -- TEST 'regional_control_faster_intel' [06:05, 04:15](626 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [57:46, 09:15] ( 890 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:58, 02:30](1595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:57, 02:29](1593 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:01, 02:55](804 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:35, 02:36](800 MB) -PASS -- TEST 'control_csawmg_debug_intel' [12:04, 04:01](838 MB) -PASS -- TEST 'control_ras_debug_intel' [04:57, 02:38](809 MB) -PASS -- TEST 'control_diag_debug_intel' [05:30, 02:34](1664 MB) -PASS -- TEST 'control_debug_p8_intel' [11:01, 02:37](1627 MB) -PASS -- TEST 'regional_debug_intel' [24:04, 16:04](661 MB) -PASS -- TEST 'rap_control_debug_intel' [06:18, 04:38](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:32](1177 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 04:46](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:40](1182 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:39](1183 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:38, 04:52](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 04:50](1184 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 04:50](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:21, 04:47](1180 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 04:38](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:35](1178 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:49](1182 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:11, 07:39](1176 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:36](1174 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:35](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:36](1182 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 07:54](1187 MB) - -PASS -- COMPILE 'wam_debug_intel' [54:44, 06:03] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:25, 04:37](421 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:30, 10:08] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:38, 03:29](1057 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:19, 05:07](883 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:20, 02:46](882 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:18, 02:54](884 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:03, 03:51](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:43, 01:30](778 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:17, 12:16] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:07, 01:57](1084 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:48, 01:01](1086 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:07](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:16, 10:11] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:16, 03:36](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 06:15] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:33](1063 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:43, 04:32](1060 MB) -PASS -- TEST 'conus13km_debug_intel' [15:51, 13:20](1134 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:41](821 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:34, 13:17](1202 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:12, 06:12] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 04:32](1083 MB) - -PASS -- COMPILE 'hafsw_intel' [17:14, 15:57] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:31, 04:29](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 05:02](1069 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:02, 06:23](785 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:32, 10:54](800 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:52, 11:59](816 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:36, 04:39](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 05:45](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:57, 02:18](395 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:06, 06:15](457 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:18](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:24, 03:05](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:22, 03:50](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:18](429 MB) -PASS -- TEST 'gnv1_nested_intel' [05:13, 03:25](789 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:13, 07:55] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:29, 12:05](646 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:18, 19:13] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:22, 07:03](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:41, 07:08](692 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:17, 17:05] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:28, 05:19](677 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:13, 14:21] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:45, 05:32](751 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:44, 05:37](743 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:11](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:19, 08:13] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:28](759 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:40, 01:32](738 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:34, 02:23](638 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:36, 02:24](638 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:24, 02:25](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:28](750 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:29](759 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:20](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:35, 05:38](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:49, 05:41](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:22, 02:32](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:31, 03:52](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [10:27, 03:56](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:17, 05:38] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:30, 05:02](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:21] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:27, 02:31](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:56] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:41, 01:12](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:31, 01:03](457 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:40, 00:44](452 MB) - -PASS -- COMPILE 'atml_intel' [14:20, 13:28] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:56, 06:29](1632 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:34, 06:10](1636 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:06, 03:06](856 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:13, 08:21] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:46, 05:29](1669 MB) - -PASS -- COMPILE 'atmw_intel' [14:20, 12:56] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:55, 01:32](1636 MB) - -PASS -- COMPILE 'atmaero_intel' [18:21, 11:45] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:39, 03:42](2950 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:45, 04:17](2995 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:11, 04:21](3010 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:20, 07:02] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:51, 21:57](4531 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:25, 20:12] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:45, 04:54](3072 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:25, 21:20] ( 6 warnings 10 remarks ) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:05, 15:44](1659 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:21, 10:05] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:45, 21:23](1693 MB) + +PASS -- COMPILE 's2swa_intel' [20:23, 19:56] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:02, 05:35](3090 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:19, 05:35](3092 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:22, 03:16](3154 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:02, 05:33](3125 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:23, 03:16](3181 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:56, 05:32](3094 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:58, 04:33](3399 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:16, 05:34](3102 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:21, 08:52](3634 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:20, 05:59](3611 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:40, 09:46](4341 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:57, 07:08](4650 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:44, 05:17](3068 MB) + +PASS -- COMPILE 's2sw_intel' [20:25, 19:20] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:41, 04:12](1680 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:54, 04:13](1729 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:21, 09:46] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:53, 07:41](3155 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:22, 09:17] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:32, 05:14](1706 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:22, 14:30] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:34, 04:19](1727 MB) + +PASS -- COMPILE 's2s_intel' [15:22, 14:44] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:19, 06:34](2668 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 02:00](2684 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:19, 01:10](2123 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:26, 23:19] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:55, 05:28](3103 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:15, 20:13] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:51, 13:59](1703 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:01, 07:16](1017 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:50, 16:01](1675 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:13, 09:16] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:27, 22:56](1717 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:19, 12:56] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:38, 03:24](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:31, 02:24](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:50, 02:29](1575 MB) +PASS -- TEST 'control_latlon_intel' [04:28, 02:23](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:26](1568 MB) +PASS -- TEST 'control_c48_intel' [08:34, 06:12](1621 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 05:14](737 MB) +PASS -- TEST 'control_c192_intel' [11:08, 08:38](1692 MB) +PASS -- TEST 'control_c384_intel' [16:46, 08:56](2003 MB) +PASS -- TEST 'control_c384gdas_intel' [17:34, 07:18](1204 MB) +PASS -- TEST 'control_stochy_intel' [02:37, 01:24](625 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 00:51](441 MB) +PASS -- TEST 'control_lndp_intel' [02:46, 01:21](627 MB) +PASS -- TEST 'control_iovr4_intel' [03:51, 02:04](622 MB) +PASS -- TEST 'control_iovr5_intel' [03:44, 02:05](623 MB) +PASS -- TEST 'control_p8_intel' [04:47, 02:29](1595 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:40, 02:27](1594 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:33, 02:27](1605 MB) +PASS -- TEST 'control_restart_p8_intel' [03:32, 01:25](802 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:43, 02:29](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:26, 01:23](808 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:34](1598 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:22, 04:20](1596 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:42, 03:17](1654 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:29, 02:31](1614 MB) +PASS -- TEST 'merra2_thompson_intel' [04:41, 02:47](1611 MB) +PASS -- TEST 'regional_control_intel' [06:12, 04:28](628 MB) +PASS -- TEST 'regional_restart_intel' [04:03, 02:31](807 MB) +PASS -- TEST 'regional_decomp_intel' [06:09, 04:43](628 MB) +PASS -- TEST 'regional_noquilt_intel' [06:06, 04:25](1165 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:06, 04:29](624 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:02, 04:31](628 MB) +PASS -- TEST 'regional_wofs_intel' [07:07, 05:40](1606 MB) + +PASS -- COMPILE 'rrfs_intel' [12:14, 11:27] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:28, 06:08](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:38, 03:41](1204 MB) +PASS -- TEST 'rap_decomp_intel' [08:28, 06:22](1004 MB) +PASS -- TEST 'rap_restart_intel' [05:20, 03:13](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:28, 06:04](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 06:23](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:15, 04:35](882 MB) +PASS -- TEST 'hrrr_control_intel' [05:06, 03:14](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:06, 03:18](1002 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:47](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:44, 01:45](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:29, 05:57](1002 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:56, 07:22](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:59, 07:08](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [11:14, 10:21] ( 6 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:53, 05:49](695 MB) +PASS -- TEST 'control_ras_intel' [04:25, 02:53](656 MB) + +PASS -- COMPILE 'wam_intel' [10:13, 09:40] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:24, 01:54](383 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:14, 12:39] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:37, 02:25](1599 MB) +PASS -- TEST 'regional_control_faster_intel' [06:06, 04:16](625 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:20, 08:50] ( 890 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:10, 02:34](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:15, 02:28](1598 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:42, 02:54](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:34, 02:35](801 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:14, 03:59](838 MB) +PASS -- TEST 'control_ras_debug_intel' [03:43, 02:36](811 MB) +PASS -- TEST 'control_diag_debug_intel' [05:28, 02:36](1653 MB) +PASS -- TEST 'control_debug_p8_intel' [04:05, 02:36](1629 MB) +PASS -- TEST 'regional_debug_intel' [18:01, 16:42](663 MB) +PASS -- TEST 'rap_control_debug_intel' [05:33, 04:43](1180 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:38](1177 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:33, 04:40](1178 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_c3_debug_intel' [, ]( MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:37, 04:40](1180 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:12, 04:50](1266 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 04:49](1187 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:40, 04:39](1183 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 04:40](1180 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:41, 04:33](1179 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:37, 04:38](1184 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:26, 07:37](1181 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:43, 04:34](1173 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 05:34](1182 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:38, 04:37](1183 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:12, 07:54](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:12, 05:34] ( 860 warnings ) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 09:58] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:48, 03:31](1058 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:16, 05:06](884 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:04, 02:45](881 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 02:54](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:52](798 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:31](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:13, 12:00] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:17, 01:51](1084 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:57](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:09](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:19, 09:48] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:56, 03:38](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 05:53] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:42, 04:38](1058 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:44, 04:21](1055 MB) +PASS -- TEST 'conus13km_debug_intel' [16:29, 13:24](1136 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:30, 13:28](820 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 13:27](1202 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 05:36] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:44, 04:41](1088 MB) + +PASS -- COMPILE 'hafsw_intel' [17:15, 16:14] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:32, 04:33](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 05:03](1070 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:24](778 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 10:54](802 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:44, 11:59](816 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 04:40](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:38, 05:49](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 02:21](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:50, 06:13](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:08, 03:20](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:25, 03:05](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:32, 03:47](590 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:13](428 MB) +PASS -- TEST 'gnv1_nested_intel' [05:12, 03:23](791 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:27] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:10, 12:00](617 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:22, 19:46] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:20, 07:05](638 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:50, 07:08](693 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:20, 16:58] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:34, 05:26](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:13, 14:19] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:37, 05:36](757 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:28, 05:36](740 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:23, 16:15](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:18, 07:58] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:29](749 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 01:33](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:21](637 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:25](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:24, 02:23](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:39, 02:31](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:25, 02:31](750 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:30, 02:21](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:32, 05:41](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:40, 05:40](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:23, 02:28](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:25, 03:55](2019 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:31, 03:56](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:17, 05:07] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:27, 05:02](747 MB) + +FAILED: UNABLE TO COMPILE -- COMPILE 'datm_cdeps_faster_intel' [, ] +FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_control_cfsr_faster_intel' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:26] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:35, 01:09](304 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:04](453 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:42](452 MB) + +PASS -- COMPILE 'atml_intel' [14:22, 13:05] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 05:49](1633 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:32, 05:44](1634 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:06, 03:15](853 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:17, 07:47] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:26, 05:29](1658 MB) + +PASS -- COMPILE 'atmw_intel' [14:20, 12:57] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:13, 01:32](1637 MB) + +PASS -- COMPILE 'atmaero_intel' [12:20, 11:28] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:40, 03:37](2948 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:36, 04:14](3002 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 04:21](3012 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:33] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:19, 21:58](4531 MB) SYNOPSIS: -Starting Date/Time: 20240508 12:49:22 -Ending Date/Time: 20240508 19:08:33 -Total Time: 06h:20m:08s -Compiles Completed: 38/38 -Tests Completed: 175/175 +Starting Date/Time: 20240512 06:19:01 +Ending Date/Time: 20240512 07:51:11 +Total Time: 01h:33m:10s +Compiles Completed: 37/38 +Tests Completed: 168/175 +Failed Compiles: +* COMPILE datm_cdeps_faster_intel: FAILED: UNABLE TO COMPILE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/compile_datm_cdeps_faster_intel.log +Failed Tests: +* TEST cpld_control_gfsv17_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_cpld_control_gfsv17_intel.log +* TEST cpld_control_gfsv17_iau_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST hrrr_c3_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_hrrr_c3_debug_intel.log +* TEST rap_cires_ugwp_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_rap_cires_ugwp_debug_intel.log +* TEST control_wam_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_control_wam_debug_intel.log +* TEST datm_cdeps_control_cfsr_faster_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +575b7c28583dac4700e80788b5d7c8e9a12ee4df + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6102 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [06:18, 05:28] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:23, 04:42](419 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:34] ( 890 warnings 9 remarks ) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 04:50](1183 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:39](1181 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:22, 20:43] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:01, 13:47](1684 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:01] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:29](747 MB) + +SYNOPSIS: +Starting Date/Time: 20240512 15:55:41 +Ending Date/Time: 20240512 16:35:33 +Total Time: 00h:40m:03s +Compiles Completed: 4/4 +Tests Completed: 5/5 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index d031ec5ff0..272aea4007 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,17 +1,17 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -f29351be77830efd8ae23ad72436b4b38b886383 +6a75664fc408bfd7a64311ae178ffeb12ffe7b77 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) + 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,275 +36,275 @@ 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-20240503 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_7744 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_169283 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:12, 19:08] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:03, 07:19](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 24:29] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [29:35, 13:28](1698 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:32, 14:22](1808 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:28, 06:49](944 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:48, 15:09](1670 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:12, 11:28] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:44, 23:51](1707 MB) - -PASS -- COMPILE 's2swa_intel' [20:13, 19:30] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:28, 07:57](3098 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:39, 08:23](3097 MB) -PASS -- TEST 'cpld_restart_p8_intel' [29:54, 05:17](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:26, 08:05](3121 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [29:55, 05:19](3175 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:17, 06:47](3408 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:26, 07:58](3096 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:24, 07:29](3021 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:40, 08:18](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [36:30, 10:46](3268 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:54, 07:21](3603 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [51:37, 13:03](4034 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:14, 09:13](4341 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:26, 07:50](3066 MB) - -PASS -- COMPILE 's2sw_intel' [19:12, 18:19] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:53, 05:06](1686 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:02, 05:14](1732 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:12, 14:19] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:45, 10:07](3129 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:12, 11:20] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 06:28](1697 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [40:15, 39:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:52, 05:20](1728 MB) - -PASS -- COMPILE 's2s_intel' [26:12, 25:42] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [26:59, 07:03](2659 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [21:24, 02:05](2684 MB) -PASS -- TEST 'cpld_restart_c48_intel' [12:24, 01:10](2114 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:12, 22:30] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:53, 08:11](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:13, 24:17] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:37, 15:01](1701 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:09, 07:42](1000 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:53, 17:40](1683 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 14:26] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [56:48, 26:50](1715 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:14, 17:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [27:31, 03:44](670 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [25:01, 03:17](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:01, 03:16](1579 MB) -PASS -- TEST 'control_latlon_intel' [17:50, 03:24](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:11, 03:01](1567 MB) -PASS -- TEST 'control_c48_intel' [13:30, 06:37](1601 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:47, 05:39](722 MB) -PASS -- TEST 'control_c192_intel' [10:56, 09:57](1683 MB) -PASS -- TEST 'control_c384_intel' [20:22, 18:14](1986 MB) -PASS -- TEST 'control_c384gdas_intel' [17:31, 14:12](1183 MB) -PASS -- TEST 'control_stochy_intel' [02:34, 01:54](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:35, 01:04](430 MB) -PASS -- TEST 'control_lndp_intel' [03:32, 02:07](628 MB) -PASS -- TEST 'control_iovr4_intel' [03:37, 02:33](623 MB) -PASS -- TEST 'control_iovr5_intel' [03:37, 02:32](623 MB) -PASS -- TEST 'control_p8_intel' [05:14, 03:17](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:31, 03:24](1607 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 03:11](1607 MB) -PASS -- TEST 'control_restart_p8_intel' [04:05, 02:08](788 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:18](1594 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:09, 01:55](792 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:04, 03:43](1595 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:10, 02:45](1684 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:27](1605 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:15, 04:36](1656 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:18, 03:38](1613 MB) -PASS -- TEST 'merra2_thompson_intel' [06:15, 03:58](1609 MB) -PASS -- TEST 'regional_control_intel' [06:45, 04:42](617 MB) -PASS -- TEST 'regional_restart_intel' [03:41, 02:38](786 MB) -PASS -- TEST 'regional_decomp_intel' [06:45, 04:49](617 MB) -PASS -- TEST 'regional_2threads_intel' [04:43, 02:55](758 MB) -PASS -- TEST 'regional_noquilt_intel' [06:52, 04:52](1155 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 04:41](614 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:49, 04:44](617 MB) -PASS -- TEST 'regional_wofs_intel' [09:18, 06:14](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:55] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [31:56, 06:45](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [28:32, 04:00](1189 MB) -PASS -- TEST 'rap_decomp_intel' [30:57, 07:06](1009 MB) -PASS -- TEST 'rap_2threads_intel' [30:57, 06:12](1094 MB) -PASS -- TEST 'rap_restart_intel' [06:03, 03:42](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [31:58, 07:00](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:58, 07:20](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 05:12](882 MB) -PASS -- TEST 'hrrr_control_intel' [27:24, 04:04](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [27:33, 03:53](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [26:29, 03:04](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:34, 02:06](839 MB) -PASS -- TEST 'rrfs_v1beta_intel' [32:01, 06:52](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [31:30, 08:08](1968 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [31:30, 08:07](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:29] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [31:33, 06:37](696 MB) -PASS -- TEST 'control_ras_intel' [26:22, 03:30](656 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 13:24] -PASS -- TEST 'control_wam_intel' [03:28, 02:26](370 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:12, 15:12] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:10, 03:13](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [05:39, 04:44](617 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 11:03] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:53, 03:05](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:55, 03:03](1585 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:04](783 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:47](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:41, 04:19](825 MB) -PASS -- TEST 'control_ras_debug_intel' [04:28, 02:49](795 MB) -PASS -- TEST 'control_diag_debug_intel' [04:46, 03:21](1641 MB) -PASS -- TEST 'control_debug_p8_intel' [04:44, 03:28](1617 MB) -PASS -- TEST 'regional_debug_intel' [17:44, 16:22](633 MB) -PASS -- TEST 'rap_control_debug_intel' [06:34, 05:10](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:32, 05:05](1167 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 05:24](1173 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:33, 05:29](1173 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 05:09](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:37, 05:24](1252 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 05:27](1169 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:31, 05:47](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:31](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 05:19](1169 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:17](1168 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:21](1167 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 08:03](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 05:25](1167 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:32, 06:26](1171 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:33, 05:28](1169 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:54, 08:20](1174 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:13, 08:47] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:33, 05:02](398 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:14, 22:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:53](1051 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:05, 05:55](891 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:00, 03:40](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:01, 05:22](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:59, 02:48](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 03:29](885 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:14, 04:56](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:42](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 16:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:03, 02:12](1091 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:14, 01:09](1073 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:51](975 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 15:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:27, 04:20](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 11:22] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:33, 04:58](1050 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:11, 04:45](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [16:58, 14:15](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:56, 14:06](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:11](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:21, 14:18](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 08:14] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:10, 04:58](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [28:12, 27:10] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:19](710 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:59, 04:32](1062 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:37](740 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:16, 11:32](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:17, 12:44](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:17, 05:25](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:35, 06:53](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:58](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:01, 08:03](432 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:03, 04:01](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:13, 03:48](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:16, 05:19](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:04, 01:51](401 MB) -PASS -- TEST 'gnv1_nested_intel' [06:42, 04:05](769 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [17:16, 16:15] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:29, 13:17](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:12, 26:35] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:22, 07:41](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:11, 07:49](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [24:12, 23:45] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:16, 05:59](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:11, 17:14] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:28](744 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:13](732 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:16, 20:02](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:13, 12:45] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:26, 02:36](759 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:35](746 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:34](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:25, 02:29](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:32](637 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:40](759 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:30, 02:34](759 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:28](637 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:00, 06:12](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:02](678 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:37](759 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:59, 04:41](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:35](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 10:02] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:23](743 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [16:14, 16:05] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:42](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [09:11, 08:36] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:02, 01:54](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:51, 01:34](457 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:49, 02:27](456 MB) - -PASS -- COMPILE 'atml_intel' [22:15, 21:31] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:54, 08:14](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:37, 08:03](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:03, 04:33](836 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:14, 09:55] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:32, 06:14](1653 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 14:01] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:26, 02:35](1651 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 12:54] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:19, 06:43](2947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:16, 06:48](3013 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 07:38](3019 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [21:11, 20:52] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:36, 18:57](4483 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:13, 22:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:01, 07:52](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 23:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [31:42, 13:28](1695 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:09, 14:43](1808 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [24:32, 07:18](945 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:55, 15:47](1669 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:11, 12:29] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:57, 23:35](1707 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 17:56] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:01, 08:31](3098 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:15, 08:27](3097 MB) +PASS -- TEST 'cpld_restart_p8_intel' [24:07, 05:03](3154 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:00, 08:35](3121 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [24:09, 05:06](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:16, 07:03](3411 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:47, 08:25](3096 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:05, 07:33](3021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:15, 08:34](3098 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:10, 10:33](3263 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [20:05, 07:19](3601 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [41:06, 13:39](4037 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:22, 09:11](4342 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:53, 08:18](3065 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 16:22] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:45, 04:55](1686 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 05:16](1732 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:49] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:29, 10:25](3131 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:24] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:36, 05:54](1699 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:57] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:44, 05:13](1730 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 15:56] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:17, 06:54](2657 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:16, 02:02](2682 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:07, 01:05](2112 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:13, 22:28] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:22, 08:22](3102 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 22:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:59, 15:00](1701 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:47, 07:41](998 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:09, 17:19](1680 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 12:53] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:40, 27:39](1714 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [19:05, 04:02](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [23:09, 03:28](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:12, 03:30](1579 MB) +PASS -- TEST 'control_latlon_intel' [21:54, 03:15](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [22:03, 03:25](1567 MB) +PASS -- TEST 'control_c48_intel' [25:16, 06:43](1601 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [25:07, 05:39](721 MB) +PASS -- TEST 'control_c192_intel' [27:54, 10:01](1692 MB) +PASS -- TEST 'control_c384_intel' [36:00, 18:19](1986 MB) +PASS -- TEST 'control_c384gdas_intel' [33:58, 14:14](1180 MB) +PASS -- TEST 'control_stochy_intel' [17:01, 02:12](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:54, 01:00](430 MB) +PASS -- TEST 'control_lndp_intel' [17:01, 02:12](628 MB) +PASS -- TEST 'control_iovr4_intel' [18:20, 02:57](623 MB) +PASS -- TEST 'control_iovr5_intel' [18:20, 02:57](623 MB) +PASS -- TEST 'control_p8_intel' [24:19, 03:24](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:52, 03:50](1607 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [22:49, 03:41](1607 MB) +PASS -- TEST 'control_restart_p8_intel' [04:55, 02:03](789 MB) +PASS -- TEST 'control_noqr_p8_intel' [22:34, 03:31](1594 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:48, 02:10](792 MB) +PASS -- TEST 'control_decomp_p8_intel' [21:55, 03:19](1595 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:38, 02:40](1687 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:54, 05:15](1605 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:23, 04:08](1656 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:21, 03:20](1613 MB) +PASS -- TEST 'merra2_thompson_intel' [07:20, 03:36](1610 MB) +PASS -- TEST 'regional_control_intel' [06:05, 04:46](617 MB) +PASS -- TEST 'regional_restart_intel' [04:20, 02:51](786 MB) +PASS -- TEST 'regional_decomp_intel' [06:10, 04:55](617 MB) +PASS -- TEST 'regional_2threads_intel' [05:11, 03:02](767 MB) +PASS -- TEST 'regional_noquilt_intel' [07:54, 04:39](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:47, 04:58](614 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:58, 04:43](617 MB) +PASS -- TEST 'regional_wofs_intel' [07:35, 06:04](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 13:38] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:00, 06:57](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 04:01](1186 MB) +PASS -- TEST 'rap_decomp_intel' [09:54, 07:06](1009 MB) +PASS -- TEST 'rap_2threads_intel' [09:23, 06:06](1100 MB) +PASS -- TEST 'rap_restart_intel' [16:09, 03:59](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:12, 06:55](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 07:24](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [20:25, 05:05](882 MB) +PASS -- TEST 'hrrr_control_intel' [06:27, 04:11](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:55, 03:54](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 03:15](1080 MB) +PASS -- TEST 'hrrr_control_restart_intel' [15:46, 02:17](839 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:42, 06:54](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:46, 08:14](1968 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:38, 08:10](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [13:13, 12:55] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:52, 06:38](696 MB) +PASS -- TEST 'control_ras_intel' [18:48, 03:50](656 MB) + +PASS -- COMPILE 'wam_intel' [12:13, 12:02] +PASS -- TEST 'control_wam_intel' [18:57, 02:27](370 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:22] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:47, 03:45](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [06:14, 04:30](617 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:38] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [18:23, 02:59](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:20, 03:00](1587 MB) +PASS -- TEST 'control_stochy_debug_intel' [17:49, 03:13](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [17:48, 02:53](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [19:17, 04:16](825 MB) +PASS -- TEST 'control_ras_debug_intel' [16:43, 02:52](794 MB) +PASS -- TEST 'control_diag_debug_intel' [16:55, 03:03](1643 MB) +PASS -- TEST 'control_debug_p8_intel' [17:01, 03:31](1619 MB) +PASS -- TEST 'regional_debug_intel' [24:59, 16:14](635 MB) +PASS -- TEST 'rap_control_debug_intel' [16:39, 05:06](1169 MB) +PASS -- TEST 'hrrr_control_debug_intel' [16:40, 04:53](1167 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [16:42, 04:56](1173 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [16:42, 05:06](1173 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:14, 05:07](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [18:44, 05:18](1252 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:38, 05:10](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:32, 05:20](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:15](1170 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:06](1169 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:35, 05:06](1168 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:42, 05:00](1167 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:30, 08:05](1168 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:33, 05:11](1165 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:34, 05:55](1170 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:32, 05:05](1169 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:23](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:11, 09:02] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:29, 05:08](398 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:19, 04:02](1048 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:07, 05:54](890 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:10, 03:51](887 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:01, 05:07](948 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 02:43](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:02, 03:34](885 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:03, 04:15](786 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 01:40](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:04, 02:20](1092 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:53, 01:03](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:42](975 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 13:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:04, 04:18](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 08:50] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 05:39](1050 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:32, 05:28](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [16:00, 14:25](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:58, 14:01](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:11](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:11](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 08:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:36, 04:54](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [17:14, 16:42] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:17](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:42, 04:30](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:41, 07:36](744 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:20, 11:42](791 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:32, 12:52](801 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:28](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 06:45](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:21, 02:57](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:25, 08:05](434 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:04, 03:50](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:09, 03:36](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:12, 04:40](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:39, 01:51](401 MB) +PASS -- TEST 'gnv1_nested_intel' [07:34, 04:08](766 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:12, 10:34] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:44, 12:56](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:15, 19:08] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:20, 07:44](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:22, 07:50](788 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:15, 20:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:29, 06:03](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 17:00] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:28, 06:12](744 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:13](731 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:17, 20:05](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:15, 11:38] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:29, 02:38](759 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:30, 02:15](748 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:59, 02:28](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:29](638 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:27, 02:29](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:28, 02:37](762 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:36](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:24](637 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:09, 06:04](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:28](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:35](748 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:36](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:30, 04:35](2021 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 08:34] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:36, 05:23](731 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:15, 11:38] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:31, 02:36](759 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:50] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:57, 01:55](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:56, 01:35](457 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:01, 01:06](456 MB) + +PASS -- COMPILE 'atml_intel' [20:11, 19:56] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:51, 06:56](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:37, 06:53](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:02, 03:56](836 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:12, 12:57] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:42, 06:14](1651 MB) + +PASS -- COMPILE 'atmw_intel' [18:11, 17:49] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:26, 02:14](1649 MB) + +PASS -- COMPILE 'atmaero_intel' [20:12, 19:44] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:30, 06:17](2947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:32](3012 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:30, 06:25](3019 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [16:11, 15:44] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:49, 18:23](4449 MB) SYNOPSIS: -Starting Date/Time: 20240508 10:47:03 -Ending Date/Time: 20240508 12:41:33 -Total Time: 01h:55m:44s +Starting Date/Time: 20240510 13:48:51 +Ending Date/Time: 20240510 15:46:52 +Total Time: 01h:59m:09s Compiles Completed: 38/38 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index c9c5cfaf88..bf40591ff6 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,18 +1,18 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -f29351be77830efd8ae23ad72436b4b38b886383 +6a75664fc408bfd7a64311ae178ffeb12ffe7b77 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) + 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -25,367 +25,367 @@ 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-20240503 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3058841 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2863157 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:23, 05:31](3184 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:33, 17:09](1764 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 17:48](2026 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 08:08](1122 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:04, 19:18](1651 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:45] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:06, 22:33](1706 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 12:48] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:18, 05:47](3208 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:25, 05:49](3227 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:21, 03:24](3257 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:19, 05:50](3252 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 03:25](3282 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:15, 05:31](3562 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:18, 05:47](3225 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:19, 04:45](3086 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:23, 05:47](3196 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:25, 10:03](3352 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:35, 06:27](3628 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:34, 09:31](4129 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:31, 06:02](4371 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:17, 05:23](3184 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 12:03] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:06, 04:43](1751 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:11, 04:17](1799 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:28] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:14, 08:29](3210 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:32] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:05, 05:46](1720 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:24] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:11, 04:18](1790 MB) - -PASS -- COMPILE 's2s_intel' [12:11, 11:28] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:49, 09:20](2830 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:50, 02:34](2830 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:25](2287 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:22, 05:26](3226 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:10] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:04, 17:13](1793 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:17, 08:07](1178 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:25, 19:38](1694 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:18] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:50](1737 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:22, 03:18](711 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:51, 02:54](1607 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:55, 02:57](1613 MB) -PASS -- TEST 'control_latlon_intel' [08:48, 02:52](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:56, 02:55](1597 MB) -PASS -- TEST 'control_c48_intel' [10:51, 07:35](1761 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:26, 06:24](877 MB) -PASS -- TEST 'control_c192_intel' [16:08, 10:30](1751 MB) -PASS -- TEST 'control_c384_intel' [16:07, 10:30](2015 MB) -PASS -- TEST 'control_c384gdas_intel' [14:53, 08:01](1403 MB) -PASS -- TEST 'control_stochy_intel' [06:23, 01:39](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:25, 00:58](511 MB) -PASS -- TEST 'control_lndp_intel' [06:22, 01:35](664 MB) -PASS -- TEST 'control_iovr4_intel' [07:24, 02:25](651 MB) -PASS -- TEST 'control_iovr5_intel' [06:24, 02:25](662 MB) -PASS -- TEST 'control_p8_intel' [07:00, 02:54](1626 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:58, 02:54](1632 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:52, 02:49](1635 MB) -PASS -- TEST 'control_restart_p8_intel' [02:48, 01:37](898 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:51, 02:50](1627 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:38](943 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:49, 02:57](1627 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:41](1716 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:07](1634 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 03:53](1703 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:57, 03:02](1646 MB) -PASS -- TEST 'merra2_thompson_intel' [04:55, 03:12](1641 MB) -PASS -- TEST 'regional_control_intel' [06:42, 05:09](850 MB) -PASS -- TEST 'regional_restart_intel' [05:45, 02:47](1015 MB) -PASS -- TEST 'regional_decomp_intel' [06:41, 05:29](852 MB) -PASS -- TEST 'regional_2threads_intel' [04:43, 03:14](857 MB) -PASS -- TEST 'regional_noquilt_intel' [06:44, 05:06](1361 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:48, 05:05](852 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 05:05](857 MB) -PASS -- TEST 'regional_wofs_intel' [07:45, 06:44](1913 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 10:31] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:43, 07:42](1114 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:07](1301 MB) -PASS -- TEST 'rap_decomp_intel' [08:35, 08:05](1040 MB) -PASS -- TEST 'rap_2threads_intel' [10:34, 07:15](1181 MB) -PASS -- TEST 'rap_restart_intel' [05:53, 04:12](1111 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:46, 07:43](1106 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:15, 08:10](1041 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 05:47](1133 MB) -PASS -- TEST 'hrrr_control_intel' [06:36, 04:00](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 04:09](1035 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:36](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:20](1005 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:50, 07:36](1097 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:13](1989 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:58](2074 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:20] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:42, 05:55](759 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:14](757 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 03:35] -PASS -- TEST 'control_csawmg_gnu' [09:40, 08:25](548 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 10:04] -PASS -- TEST 'control_wam_intel' [04:21, 02:06](660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:31] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:24, 02:45](1631 MB) -PASS -- TEST 'regional_control_faster_intel' [09:46, 04:45](853 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:47] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:50, 02:45](1625 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:00, 02:43](1618 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:24, 03:12](830 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:45, 02:51](826 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:41, 04:16](881 MB) -PASS -- TEST 'control_ras_debug_intel' [06:02, 02:54](834 MB) -PASS -- TEST 'control_diag_debug_intel' [05:51, 02:55](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [05:48, 03:01](1651 MB) -PASS -- TEST 'regional_debug_intel' [20:47, 17:09](848 MB) -PASS -- TEST 'rap_control_debug_intel' [06:25, 05:02](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:50](1208 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:51](1210 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:52](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:30, 04:50](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:51, 05:06](1300 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 04:55](1208 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:23, 04:55](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:48](1209 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:46](1211 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:44](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 04:45](1209 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:58](1208 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 04:43](1207 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:47](1209 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:50](1207 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:14](1211 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:10, 02:42] -PASS -- TEST 'control_csawmg_debug_gnu' [03:40, 02:11](532 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:09] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [08:22, 05:00](516 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 03:55](1170 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 06:23](1053 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:46, 03:24](991 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:37, 06:04](1104 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:33, 03:07](971 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 03:35](936 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:49, 05:03](1039 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:38, 01:51](947 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 12:13] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:03, 02:06](1208 MB) -PASS -- TEST 'conus13km_2threads_intel' [15:48, 00:52](1122 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [17:50, 01:14](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 10:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:43, 04:10](990 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:35] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:44](1093 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 04:39](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [18:00, 14:22](1231 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:56, 14:50](926 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:49, 08:05](1158 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:51, 14:47](1309 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:20] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [19:27, 04:56](1138 MB) - -PASS -- COMPILE 'hafsw_intel' [15:12, 11:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [17:25, 05:04](742 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:36, 06:15](1121 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:32, 07:02](840 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [28:22, 13:25](866 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:41, 15:09](890 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [20:02, 05:34](506 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [20:34, 06:45](521 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [16:46, 02:39](380 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:19, 07:28](482 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:49, 03:45](538 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:55, 03:32](535 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:57, 04:08](593 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [17:30, 01:23](401 MB) -PASS -- TEST 'gnv1_nested_intel' [19:47, 04:16](802 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 03:51] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [27:59, 12:57](584 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:12, 12:05] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:11, 08:58](673 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:17, 09:05](739 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:14, 06:42](732 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [18:24, 06:52](802 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:23, 06:42](826 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:01, 16:21](1216 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:12, 05:50] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 02:54](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:36](1106 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:45](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:48](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:50](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:51](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:37](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:36](1025 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:21](1055 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:29, 06:27](1042 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:35](1153 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 03:58](2451 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:57](2438 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 02:58] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:12](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:09] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:41](1163 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:58] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:43](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:48](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:30](323 MB) - -PASS -- COMPILE 'atml_intel' [12:13, 11:37] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:12, 04:06](1616 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:09, 04:07](1616 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:13](901 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:24](1633 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 10:55] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:45](1685 MB) - -PASS -- COMPILE 'atmaero_intel' [11:28, 10:52] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:00, 04:00](3031 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 04:50](3094 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:52](3114 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:49, 03:32] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:13, 21:38](4440 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 04:16] -PASS -- TEST 'control_c48_gnu' [11:49, 11:07](1544 MB) -PASS -- TEST 'control_stochy_gnu' [04:25, 03:25](508 MB) -PASS -- TEST 'control_ras_gnu' [05:22, 04:50](524 MB) -PASS -- TEST 'control_p8_gnu' [06:05, 04:39](1267 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:00, 04:33](1269 MB) -PASS -- TEST 'control_flake_gnu' [11:23, 10:43](551 MB) - -PASS -- COMPILE 'rrfs_gnu' [07:11, 04:28] -PASS -- TEST 'rap_control_gnu' [11:38, 10:40](862 MB) -PASS -- TEST 'rap_decomp_gnu' [12:37, 10:53](867 MB) -PASS -- TEST 'rap_2threads_gnu' [11:39, 09:48](942 MB) -PASS -- TEST 'rap_restart_gnu' [06:40, 05:24](586 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:38, 10:44](859 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:33, 10:56](860 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:45, 08:02](593 MB) -PASS -- TEST 'hrrr_control_gnu' [06:38, 05:34](857 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:35](848 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:32, 05:01](938 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:30](859 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:56](571 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:51](665 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:33](855 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 04:03] -PASS -- TEST 'control_diag_debug_gnu' [03:54, 01:41](1292 MB) -PASS -- TEST 'regional_debug_gnu' [11:47, 10:19](568 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:39](873 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:37](871 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:38](878 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:24, 02:37](876 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:36, 02:53](958 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:22, 04:04](871 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:38](875 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:36](869 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:37](503 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:45](504 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:39](1259 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:32](873 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:49](877 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:21](879 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:38] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:00] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:11](716 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:37, 04:56](718 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 08:34](772 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:27](756 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 04:58](713 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:37, 06:47](563 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:34](549 MB) -PASS -- TEST 'conus13km_control_gnu' [04:55, 03:13](888 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:49, 05:54](890 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:51, 01:48](568 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:12, 05:45] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](743 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 03:44] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:31](721 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:26](724 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:52, 06:59](903 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:49, 06:59](585 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:46, 07:18](905 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 06:49](971 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:30] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:38](750 MB) - -PASS -- COMPILE 's2swa_gnu' [15:12, 14:30] - -PASS -- COMPILE 's2s_gnu' [15:12, 14:14] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:11, 07:09](1359 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:28] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:13, 14:17] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:10, 26:49](1325 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:16] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:01, 12:51](1336 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:14, 14:15] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 02:59](705 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:14, 12:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:28, 05:44](3166 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 17:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 17:12](1738 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:31, 18:16](2009 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:25, 08:34](1102 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:23, 19:21](1626 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 04:35] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:21, 22:48](1659 MB) + +PASS -- COMPILE 's2swa_intel' [13:14, 13:02] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:30, 05:57](3195 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:43, 05:51](3192 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:25, 03:27](3229 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:30, 06:01](3221 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:30, 03:29](3253 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:27, 05:41](3527 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:30, 06:02](3194 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:27, 04:58](3051 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:42, 05:59](3185 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:24, 10:13](3323 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:48, 06:26](3594 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:43, 09:45](4103 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:31, 06:52](4340 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:27, 05:29](3157 MB) + +PASS -- COMPILE 's2sw_intel' [13:15, 12:37] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:19, 04:52](1721 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:26](1769 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:12, 04:31] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:22, 08:33](3200 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:25] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:12, 05:50](1708 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:15, 11:32] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:14, 04:27](1766 MB) + +PASS -- COMPILE 's2s_intel' [12:13, 11:38] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:50, 09:28](2820 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:53, 02:36](2811 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:46, 01:28](2285 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:15, 16:46] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:22, 05:27](3201 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 16:29] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:17, 17:29](1762 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:26, 08:24](1141 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:03](1661 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:27] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:14, 25:03](1694 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:15, 11:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:27, 03:24](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:54, 02:53](1580 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:56, 02:57](1588 MB) +PASS -- TEST 'control_latlon_intel' [03:49, 02:53](1578 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:57, 02:57](1573 MB) +PASS -- TEST 'control_c48_intel' [08:52, 07:36](1735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:26](855 MB) +PASS -- TEST 'control_c192_intel' [12:08, 10:43](1728 MB) +PASS -- TEST 'control_c384_intel' [13:05, 10:40](1999 MB) +PASS -- TEST 'control_c384gdas_intel' [20:19, 08:08](1384 MB) +PASS -- TEST 'control_stochy_intel' [02:24, 01:40](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:29, 01:01](481 MB) +PASS -- TEST 'control_lndp_intel' [02:23, 01:33](648 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:25](636 MB) +PASS -- TEST 'control_iovr5_intel' [03:25, 02:25](642 MB) +PASS -- TEST 'control_p8_intel' [04:02, 03:02](1611 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 02:56](1612 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:54, 02:49](1608 MB) +PASS -- TEST 'control_restart_p8_intel' [06:49, 01:42](876 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:01, 02:56](1593 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:04, 01:37](919 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:55, 03:04](1609 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:54, 02:47](1694 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:50, 05:17](1607 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:58, 04:03](1677 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:04, 03:05](1609 MB) +PASS -- TEST 'merra2_thompson_intel' [10:02, 03:20](1614 MB) +PASS -- TEST 'regional_control_intel' [10:42, 05:19](839 MB) +PASS -- TEST 'regional_restart_intel' [03:42, 02:45](998 MB) +PASS -- TEST 'regional_decomp_intel' [10:40, 05:39](826 MB) +PASS -- TEST 'regional_2threads_intel' [08:39, 03:23](824 MB) +PASS -- TEST 'regional_noquilt_intel' [09:47, 05:15](1343 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:47, 05:15](831 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:42, 05:17](830 MB) +PASS -- TEST 'regional_wofs_intel' [11:42, 06:53](1894 MB) + +PASS -- COMPILE 'rrfs_intel' [15:13, 10:38] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:59, 07:48](1091 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:11](1279 MB) +PASS -- TEST 'rap_decomp_intel' [09:48, 08:19](1022 MB) +PASS -- TEST 'rap_2threads_intel' [08:45, 07:24](1160 MB) +PASS -- TEST 'rap_restart_intel' [05:58, 04:34](1085 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:47, 08:09](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 08:39](1020 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 06:16](1111 MB) +PASS -- TEST 'hrrr_control_intel' [04:41, 04:01](1024 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 04:09](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:40](1095 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:22](992 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:52, 07:59](1079 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:28, 09:54](1978 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:38](2048 MB) + +PASS -- COMPILE 'csawmg_intel' [13:14, 10:26] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:43, 06:23](744 MB) +PASS -- TEST 'control_ras_intel' [04:23, 03:14](737 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:14, 03:42] +PASS -- TEST 'control_csawmg_gnu' [12:59, 08:27](534 MB) + +PASS -- COMPILE 'wam_intel' [12:13, 10:08] +PASS -- TEST 'control_wam_intel' [02:22, 02:04](635 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 10:53] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:00, 02:41](1604 MB) +PASS -- TEST 'regional_control_faster_intel' [06:43, 05:11](828 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:13, 04:46] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:50, 02:37](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:49, 02:37](1583 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:07](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:50](786 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:13](829 MB) +PASS -- TEST 'control_ras_debug_intel' [03:26, 03:04](800 MB) +PASS -- TEST 'control_diag_debug_intel' [03:57, 02:56](1648 MB) +PASS -- TEST 'control_debug_p8_intel' [04:47, 03:03](1609 MB) +PASS -- TEST 'regional_debug_intel' [18:48, 17:52](811 MB) +PASS -- TEST 'rap_control_debug_intel' [06:27, 05:17](1171 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:11](1171 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 05:20](1148 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:08](1176 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:06](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:42, 09:14](1251 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 05:16](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 05:15](1174 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:05](1173 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:29, 05:05](1171 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:33, 04:58](1172 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:28, 05:01](1170 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 08:09](1170 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:05](1165 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:11](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:24, 05:01](1170 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:42, 09:10](1181 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:12, 02:44] +PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:22](510 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:12, 03:19] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:23, 05:06](463 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:13, 10:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:07, 04:26](1140 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 07:03](1036 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:49](973 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:26](1077 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 03:17](943 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:42](918 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:41, 04:57](1018 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:16](918 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:14, 12:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:07, 02:09](1179 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:57](1097 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:17](1092 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 10:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:17](969 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:29] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:47](1053 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:50](1052 MB) +PASS -- TEST 'conus13km_debug_intel' [16:49, 15:14](1177 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:34](885 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:20](1101 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 14:41](1244 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:33] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 05:00](1092 MB) + +PASS -- COMPILE 'hafsw_intel' [19:12, 12:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:15](729 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:23](1106 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 07:06](814 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:17, 13:41](843 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:46, 15:37](851 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:59, 05:39](483 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 06:57](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:43, 02:50](358 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:47, 07:21](463 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:46](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:34](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:10](569 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:13](382 MB) +PASS -- TEST 'gnv1_nested_intel' [05:46, 04:17](781 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:13, 04:03] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:52, 12:45](534 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:13, 12:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:47](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:14, 08:53](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:13, 12:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:09, 06:26](676 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:14, 11:56] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:22, 06:33](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:36](802 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 16:12](1230 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:13, 06:06] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:21, 02:42](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:39](1092 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:39](992 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:41](1025 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:19, 02:40](1007 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:39](1139 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:38](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:35](1006 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:55, 06:25](1046 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:37, 06:28](1028 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:47](1145 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:23, 03:56](2372 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:22, 03:52](2437 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 03:15] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 06:17](1052 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 06:08] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:37](1140 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:27] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:44](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:48](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:31](318 MB) + +PASS -- COMPILE 'atml_intel' [13:15, 12:22] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:26, 04:13](1603 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:14, 04:12](1595 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:56, 02:28](885 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:12, 04:36] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:34](1581 MB) + +PASS -- COMPILE 'atmw_intel' [12:14, 11:33] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:46](1653 MB) + +PASS -- COMPILE 'atmaero_intel' [12:14, 11:32] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:05](3011 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 05:00](3064 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:02](3091 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:52] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:13, 24:46](4439 MB) + +PASS -- COMPILE 'atm_gnu' [04:11, 04:07] +PASS -- TEST 'control_c48_gnu' [12:45, 11:13](1532 MB) +PASS -- TEST 'control_stochy_gnu' [04:25, 03:27](491 MB) +PASS -- TEST 'control_ras_gnu' [06:24, 04:51](504 MB) +PASS -- TEST 'control_p8_gnu' [06:03, 04:47](1252 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:54, 04:43](1252 MB) +PASS -- TEST 'control_flake_gnu' [11:24, 10:44](534 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:26] +PASS -- TEST 'rap_control_gnu' [11:35, 11:06](845 MB) +PASS -- TEST 'rap_decomp_gnu' [11:35, 10:53](842 MB) +PASS -- TEST 'rap_2threads_gnu' [10:37, 09:58](925 MB) +PASS -- TEST 'rap_restart_gnu' [06:43, 05:36](574 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:40, 11:17](840 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:36, 11:20](847 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 08:09](577 MB) +PASS -- TEST 'hrrr_control_gnu' [06:39, 05:46](845 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:53](830 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 06:17](914 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:34, 05:52](844 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:52](560 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:53](655 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:49, 10:58](834 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:11, 04:14] +PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:39](1265 MB) +PASS -- TEST 'regional_debug_gnu' [11:44, 10:22](548 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:40](818 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:35](848 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:25, 02:42](856 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:40](853 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:34, 02:54](936 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 04:06](852 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 02:39](849 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:47](847 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:42](479 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:55](488 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:46, 01:58](1241 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:51](850 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:30, 02:51](858 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:37, 04:25](857 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:14] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:49] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:30](698 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:04](701 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 09:04](747 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:30, 05:32](745 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:30, 05:09](698 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:40, 07:01](545 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 02:37](537 MB) +PASS -- TEST 'conus13km_control_gnu' [04:51, 03:15](870 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:44, 05:57](876 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:45, 01:52](558 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:10, 05:48] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:41, 05:54](730 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 04:02] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:20, 02:30](696 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:33](709 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:50, 07:16](870 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 07:06](566 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:36](880 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:38, 06:55](942 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:10, 03:57] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:42](735 MB) + +PASS -- COMPILE 's2swa_gnu' [15:12, 14:36] + +PASS -- COMPILE 's2s_gnu' [15:12, 14:23] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 07:31](1342 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:41] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:13, 14:45] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:33, 32:41](1312 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:27] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 13:04](1307 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:13] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:20, 03:09](695 MB) SYNOPSIS: -Starting Date/Time: 20240508 14:46:21 -Ending Date/Time: 20240508 16:38:40 -Total Time: 01h:53m:59s +Starting Date/Time: 20240510 17:42:13 +Ending Date/Time: 20240510 20:09:13 +Total Time: 02h:27m:16s Compiles Completed: 54/54 Tests Completed: 242/242 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 2b0fe10f1e..83ccef861e 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,17 +1,17 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -1b73dc3cfe52765a05ce8ae57735fef196de5fab +57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679f) + 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) + 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,362 +36,362 @@ 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-20240503 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_138572 +COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1888579 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:37] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:52, 07:39](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [30:07, 14:45](1771 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:27, 14:16](2169 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:18, 06:25](1176 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:44, 15:16](1687 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:06] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:17, 20:18](1734 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 12:15] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:55, 07:40](2064 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:05, 07:35](2086 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:23](1969 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:59, 07:43](1981 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:26, 04:26](1731 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:53, 09:13](2494 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:43, 07:39](2083 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:50, 06:30](1895 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:57, 07:48](2088 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:42, 15:22](2809 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:22, 05:48](2917 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [31:43, 09:04](3634 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:16, 05:15](3622 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:50, 04:53](2023 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 10:30] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:44, 07:13](1765 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:51, 04:07](1835 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:07] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:05, 06:53](2051 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 05:51] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 04:48](1802 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 09:48] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:51, 04:07](1822 MB) - -PASS -- COMPILE 's2s_intel' [12:11, 09:59] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [15:44, 07:17](2841 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [10:44, 02:06](2813 MB) -PASS -- TEST 'cpld_restart_c48_intel' [14:45, 01:11](2302 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:11, 13:40] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [25:02, 07:19](2054 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:10, 16:29] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:52, 14:08](1798 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:55, 06:42](1283 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:52, 15:28](1731 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 03:32] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:01, 21:24](1767 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:10, 08:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [18:22, 02:49](710 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:37, 02:29](1621 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:40, 02:37](1624 MB) -PASS -- TEST 'control_latlon_intel' [17:34, 02:28](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:40, 02:32](1605 MB) -PASS -- TEST 'control_c48_intel' [22:39, 07:04](1744 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [21:27, 05:49](854 MB) -PASS -- TEST 'control_c192_intel' [24:44, 08:59](1757 MB) -PASS -- TEST 'control_c384_intel' [25:22, 09:42](2058 MB) -PASS -- TEST 'control_c384gdas_intel' [24:57, 07:22](1534 MB) -PASS -- TEST 'control_stochy_intel' [14:18, 01:29](665 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:58](536 MB) -PASS -- TEST 'control_lndp_intel' [11:17, 01:24](670 MB) -PASS -- TEST 'control_iovr4_intel' [12:19, 02:10](656 MB) -PASS -- TEST 'control_iovr5_intel' [11:20, 02:17](666 MB) -PASS -- TEST 'control_p8_intel' [10:52, 02:34](1630 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:57, 02:37](1635 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:55, 02:34](1644 MB) -PASS -- TEST 'control_restart_p8_intel' [02:51, 01:24](915 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:48, 02:33](1628 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:00, 01:21](982 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:47, 02:35](1627 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:44, 02:24](1723 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:30, 04:25](1632 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:56, 03:28](1709 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:52, 02:34](1647 MB) -PASS -- TEST 'merra2_thompson_intel' [03:58, 02:47](1651 MB) -PASS -- TEST 'regional_control_intel' [05:27, 04:32](961 MB) -PASS -- TEST 'regional_restart_intel' [03:27, 02:26](1102 MB) -PASS -- TEST 'regional_decomp_intel' [05:25, 04:41](945 MB) -PASS -- TEST 'regional_2threads_intel' [03:29, 02:49](913 MB) -PASS -- TEST 'regional_noquilt_intel' [05:27, 04:19](1492 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 04:30](955 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 04:27](963 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 05:32](2072 MB) - -PASS -- COMPILE 'rrfs_intel' [12:10, 07:41] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:35, 06:34](1197 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:26](1413 MB) -PASS -- TEST 'rap_decomp_intel' [07:31, 06:46](1140 MB) -PASS -- TEST 'rap_2threads_intel' [06:53, 06:06](1376 MB) -PASS -- TEST 'rap_restart_intel' [04:51, 03:23](1154 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:44, 06:32](1200 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:38, 06:51](1144 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:54, 04:59](1192 MB) -PASS -- TEST 'hrrr_control_intel' [04:38, 03:25](1088 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:38, 03:29](1048 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:55, 03:04](1126 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:31, 01:50](1026 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:58, 06:22](1186 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:37](2013 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:22](2183 MB) - -PASS -- COMPILE 'csawmg_intel' [12:10, 07:35] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:28, 05:27](836 MB) -PASS -- TEST 'control_ras_intel' [03:18, 02:47](820 MB) - -PASS -- COMPILE 'csawmg_gnu' [09:10, 04:33] -PASS -- TEST 'control_csawmg_gnu' [07:35, 06:34](808 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 07:07] -PASS -- TEST 'control_wam_intel' [02:26, 01:50](793 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 09:54] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:52, 02:15](1641 MB) -PASS -- TEST 'regional_control_faster_intel' [04:27, 04:05](953 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:14] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:31, 02:09](1631 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:33, 02:13](1633 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:19, 02:29](833 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:14](835 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:27, 03:29](884 MB) -PASS -- TEST 'control_ras_debug_intel' [03:16, 02:17](838 MB) -PASS -- TEST 'control_diag_debug_intel' [03:37, 02:13](1682 MB) -PASS -- TEST 'control_debug_p8_intel' [03:32, 02:20](1657 MB) -PASS -- TEST 'regional_debug_intel' [14:37, 14:04](904 MB) -PASS -- TEST 'rap_control_debug_intel' [04:18, 03:58](1223 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:24, 03:52](1224 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 03:56](1227 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:21, 03:59](1222 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:55](1221 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:11](1297 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:03](1215 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:01](1233 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:58](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:57](1225 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:54](1232 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:02](1213 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:30](1224 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:54](1213 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 04:53](1225 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:00](1224 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 06:43](1223 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 03:18] -PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 01:52](792 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:49] ( 855 warnings ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 06:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:15](1324 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:45, 05:27](1151 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:46, 02:51](1040 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 05:07](1302 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 02:36](1042 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:54, 03:00](969 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 04:04](1106 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:18, 01:39](955 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:40, 01:49](1294 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:48](1207 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:31, 01:04](1165 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 06:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:34, 03:41](1088 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 03:07] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:55](1101 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:50](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [12:31, 11:35](1334 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:31, 11:48](1001 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:32, 06:35](1233 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:33, 11:33](1414 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:08] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:21, 03:59](1144 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 10:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:08, 05:29](875 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:22, 04:54](1278 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:13, 06:19](965 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:02, 13:50](962 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 15:15](1005 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:31](607 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:18, 07:03](618 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:43, 02:54](439 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:11, 07:56](545 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:46](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:40, 03:41](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:46, 04:51](684 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:27](453 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 03:34] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:49, 11:19](625 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 10:45] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:49, 15:57](731 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:37](809 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 11:02] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:57, 10:00](838 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 10:17] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:24](954 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:05, 05:25](945 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:49, 16:23](1348 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 06:16] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:08](1139 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:18](1100 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:07](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:09](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:10](1006 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:07](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:09](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 02:05](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:48, 04:56](1156 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:47, 04:55](1136 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:11](1147 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:18, 02:59](2334 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:05](2431 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 03:47] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:07](1076 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:02] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:11](1150 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:00] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 01:03](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 01:02](554 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:33](563 MB) - -PASS -- COMPILE 'atml_intel' [10:11, 08:29] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:08, 05:48](1637 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:43](1634 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:38, 02:44](939 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:10, 03:28] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:55, 04:46](1663 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 10:27] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:33](1683 MB) - -PASS -- COMPILE 'atmaero_intel' [09:11, 07:20] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:49, 03:30](1798 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:54, 04:23](1811 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:27](1826 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:30] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:34, 17:27](4578 MB) - -PASS -- COMPILE 'atm_gnu' [07:11, 05:28] -PASS -- TEST 'control_c48_gnu' [10:39, 09:29](1576 MB) -PASS -- TEST 'control_stochy_gnu' [03:20, 02:18](742 MB) -PASS -- TEST 'control_ras_gnu' [04:17, 03:45](730 MB) -PASS -- TEST 'control_p8_gnu' [04:46, 03:42](1517 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:40, 03:30](1517 MB) -PASS -- TEST 'control_flake_gnu' [05:17, 04:24](800 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 05:22] -PASS -- TEST 'rap_control_gnu' [09:32, 07:49](1083 MB) -PASS -- TEST 'rap_decomp_gnu' [09:31, 07:53](1084 MB) -PASS -- TEST 'rap_2threads_gnu' [08:47, 07:02](1127 MB) -PASS -- TEST 'rap_restart_gnu' [05:49, 03:57](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:46, 07:36](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 07:44](1081 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:54, 05:40](884 MB) -PASS -- TEST 'hrrr_control_gnu' [05:34, 03:57](1070 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:35, 03:59](1139 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:48, 03:33](1025 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:56](1073 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:36, 02:03](880 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:05](935 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:51, 07:36](1083 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:10] -PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:20](1624 MB) -PASS -- TEST 'regional_debug_gnu' [07:28, 06:22](925 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:04](1100 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:53](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:59](1098 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:01](1093 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:27, 02:07](1268 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:03](1094 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:59](1098 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 01:54](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:09](729 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:14](728 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:13](1503 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:22, 01:56](1097 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 02:09](1098 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 03:15](1101 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:54] -PASS -- TEST 'control_wam_debug_gnu' [02:23, 02:01](502 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:30] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:31, 07:20](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:50, 03:49](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:45, 06:44](969 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:35, 03:27](892 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:54, 03:48](958 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:46, 05:23](858 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:18, 02:03](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:38, 02:29](1266 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:27, 01:02](1173 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:24](928 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:11, 08:47] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:34, 04:18](992 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:11, 06:02] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 01:57](980 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:19, 01:56](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:36, 05:33](1279 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:29, 05:38](952 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:19](1191 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:28, 05:35](1353 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:11, 06:07] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:02](1008 MB) - -PASS -- COMPILE 's2swa_gnu' [17:10, 16:45] - -PASS -- COMPILE 's2s_gnu' [17:10, 16:41] - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:33] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:26] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:11, 05:45] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 16:37] +PASS -- COMPILE 's2swa_32bit_intel' [13:10, 13:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 07:21](1897 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:19, 13:22](1774 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:58, 14:02](2177 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:27, 06:33](1179 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:34, 15:11](1699 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:55] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:21, 20:25](1727 MB) + +PASS -- COMPILE 's2swa_intel' [13:10, 13:03] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:14, 07:28](2089 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:21, 07:31](2051 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:36, 04:17](1964 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:14, 07:37](1969 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:36, 04:20](1729 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:15, 09:08](2497 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:09, 07:41](2065 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:14, 06:23](1899 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:14, 07:39](2075 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:00, 15:38](2803 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:39, 05:44](2919 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:35, 08:35](3631 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:17, 05:29](3616 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:07, 04:53](2032 MB) + +PASS -- COMPILE 's2sw_intel' [12:10, 11:55] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:57, 07:05](1772 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:15, 03:54](1814 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:55] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [08:15, 06:46](2056 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 06:41] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:49, 04:45](1788 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:47] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:55, 03:57](1831 MB) + +PASS -- COMPILE 's2s_intel' [11:10, 10:23] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:42, 07:10](2834 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:42, 02:01](2821 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:50, 01:02](2304 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:10, 14:40] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:19, 07:25](2053 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 16:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:02, 13:50](1798 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:12, 06:47](1304 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:08, 15:17](1746 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:23] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:36](1777 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:21, 02:52](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:29](1610 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:48, 02:31](1621 MB) +PASS -- TEST 'control_latlon_intel' [03:42, 02:30](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:53, 02:29](1614 MB) +PASS -- TEST 'control_c48_intel' [07:46, 07:01](1752 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:31, 05:44](860 MB) +PASS -- TEST 'control_c192_intel' [09:53, 09:00](1764 MB) +PASS -- TEST 'control_c384_intel' [11:44, 09:17](2052 MB) +PASS -- TEST 'control_c384gdas_intel' [10:17, 07:16](1530 MB) +PASS -- TEST 'control_stochy_intel' [02:21, 01:25](669 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:39, 00:52](548 MB) +PASS -- TEST 'control_lndp_intel' [02:21, 01:19](664 MB) +PASS -- TEST 'control_iovr4_intel' [02:22, 02:03](668 MB) +PASS -- TEST 'control_iovr5_intel' [02:21, 02:05](663 MB) +PASS -- TEST 'control_p8_intel' [04:08, 02:31](1643 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:06, 02:29](1646 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:03, 02:25](1639 MB) +PASS -- TEST 'control_restart_p8_intel' [03:00, 01:27](910 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:01, 02:24](1622 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:11, 01:21](981 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:55, 02:31](1626 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:01, 02:17](1731 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:44, 04:25](1636 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:06, 03:24](1718 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:02, 02:33](1648 MB) +PASS -- TEST 'merra2_thompson_intel' [04:07, 02:45](1650 MB) +PASS -- TEST 'regional_control_intel' [05:32, 04:32](961 MB) +PASS -- TEST 'regional_restart_intel' [03:32, 02:26](1099 MB) +PASS -- TEST 'regional_decomp_intel' [05:38, 04:41](946 MB) +PASS -- TEST 'regional_2threads_intel' [03:38, 02:48](921 MB) +PASS -- TEST 'regional_noquilt_intel' [05:38, 04:22](1488 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:46, 04:28](958 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 04:31](957 MB) +PASS -- TEST 'regional_wofs_intel' [06:35, 05:33](2101 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 07:25] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:54, 06:34](1193 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:55, 03:24](1414 MB) +PASS -- TEST 'rap_decomp_intel' [07:52, 06:51](1160 MB) +PASS -- TEST 'rap_2threads_intel' [06:55, 06:07](1374 MB) +PASS -- TEST 'rap_restart_intel' [05:10, 03:23](1136 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:52, 06:31](1201 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:53, 07:02](1151 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:06, 04:56](1199 MB) +PASS -- TEST 'hrrr_control_intel' [04:55, 03:22](1066 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:57, 03:26](1042 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:58, 03:04](1122 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:38, 01:51](1029 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:57, 06:19](1193 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:37](2008 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:21](2175 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 07:05] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:35, 05:15](822 MB) +PASS -- TEST 'control_ras_intel' [03:18, 02:48](814 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 04:06] +PASS -- TEST 'control_csawmg_gnu' [07:40, 06:25](811 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 06:40] +PASS -- TEST 'control_wam_intel' [02:25, 01:48](787 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:30] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:04, 02:13](1638 MB) +PASS -- TEST 'regional_control_faster_intel' [04:34, 04:04](963 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 03:48] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:41, 02:11](1629 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:42, 02:06](1635 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:19, 02:28](832 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:14](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:33, 03:22](876 MB) +PASS -- TEST 'control_ras_debug_intel' [03:18, 02:16](841 MB) +PASS -- TEST 'control_diag_debug_intel' [03:40, 02:10](1692 MB) +PASS -- TEST 'control_debug_p8_intel' [03:41, 02:19](1667 MB) +PASS -- TEST 'regional_debug_intel' [14:38, 14:01](903 MB) +PASS -- TEST 'rap_control_debug_intel' [04:22, 03:58](1221 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:22, 03:51](1214 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 03:57](1219 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:22, 03:59](1230 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:27, 04:01](1219 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:45, 04:14](1297 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 04:08](1215 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:10](1228 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:02](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 04:00](1232 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:59](1221 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 03:57](1229 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:34](1223 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:54](1212 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:49](1229 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:16, 03:58](1221 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:51, 06:46](1221 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:11] +PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 01:51](790 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 02:38] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 06:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:56, 03:14](1271 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:45, 05:24](1154 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:00, 02:53](1020 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:40, 05:15](1249 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:04, 02:38](1033 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:04, 03:01](981 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:57, 04:05](1102 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:46, 01:33](959 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 08:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:47, 01:44](1312 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:42, 00:44](1201 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:40, 01:02](1152 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:37, 03:42](1098 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 04:27] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:21, 03:58](1095 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:22, 03:53](1104 MB) +PASS -- TEST 'conus13km_debug_intel' [12:42, 11:46](1343 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:42, 11:51](988 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:41, 06:35](1240 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:36, 11:37](1397 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 04:27] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:24, 04:01](1158 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 09:28] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:05, 05:24](884 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:25, 05:11](1280 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:19, 06:27](944 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 13:58](984 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 15:53](1008 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:53, 05:21](606 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:55](619 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:41](439 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:13, 07:48](545 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:52](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 03:46](618 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:47](680 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 01:19](449 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:10, 03:03] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:50, 11:23](626 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:10, 10:24] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:53, 17:23](748 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:08, 16:49](845 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:09, 10:46](832 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:11, 09:34] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:10, 05:19](951 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:11, 05:22](938 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:20](1344 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:11, 05:56] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:10](1141 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:18](1093 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:15, 02:06](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:08](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:10](1009 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:12](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:15, 02:09](1133 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:04](1012 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:53, 04:57](1160 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:48, 04:56](1143 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:08](1137 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:02](2436 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2391 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:56] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:15](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 06:05] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:08](1144 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:54] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:50](336 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:47](558 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:31](559 MB) + +PASS -- COMPILE 'atml_intel' [08:11, 08:04] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:11, 05:21](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:10, 05:17](1646 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:45](938 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:11, 03:21] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:04, 04:43](1654 MB) + +PASS -- COMPILE 'atmw_intel' [10:10, 09:41] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 01:30](1684 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 07:32] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:57, 03:30](1796 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 04:13](1797 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:49, 04:17](1817 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:55] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:35, 16:00](4573 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:57] +PASS -- TEST 'control_c48_gnu' [10:45, 09:26](1578 MB) +PASS -- TEST 'control_stochy_gnu' [03:23, 02:17](729 MB) +PASS -- TEST 'control_ras_gnu' [04:25, 03:42](736 MB) +PASS -- TEST 'control_p8_gnu' [05:02, 03:31](1512 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:52, 03:24](1516 MB) +PASS -- TEST 'control_flake_gnu' [05:21, 04:22](803 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 04:47] +PASS -- TEST 'rap_control_gnu' [09:05, 07:34](1083 MB) +PASS -- TEST 'rap_decomp_gnu' [08:58, 07:44](1084 MB) +PASS -- TEST 'rap_2threads_gnu' [09:09, 07:12](1147 MB) +PASS -- TEST 'rap_restart_gnu' [05:14, 03:55](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:00, 07:34](1088 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:54, 07:42](1086 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:03, 05:38](884 MB) +PASS -- TEST 'hrrr_control_gnu' [05:02, 03:59](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:54, 03:58](1140 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:57, 03:39](1031 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:58, 04:00](1074 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:36, 02:05](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:37, 01:59](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:56, 07:31](1084 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 08:13] +PASS -- TEST 'control_diag_debug_gnu' [02:40, 01:14](1625 MB) +PASS -- TEST 'regional_debug_gnu' [07:33, 06:16](927 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:18, 01:59](1100 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:21, 01:52](1090 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:20, 01:54](1097 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:19, 01:57](1094 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:01](1270 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:19, 03:03](1097 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 01:58](1101 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 01:53](1095 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:12](727 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:14](722 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:14](1502 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:58](1100 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:10](1104 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:00, 03:14](1100 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:35] +PASS -- TEST 'control_wam_debug_gnu' [02:27, 01:56](499 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 06:27] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:44, 07:14](961 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:05, 03:46](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:54, 06:40](968 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:51, 03:26](875 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:43, 03:45](948 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:03, 05:28](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:41, 01:58](857 MB) +PASS -- TEST 'conus13km_control_gnu' [03:45, 02:28](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:36, 01:01](1174 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:35, 01:24](920 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 14:00] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:32, 04:16](993 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:10, 12:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 01:53](979 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:19, 01:51](974 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:37, 05:28](1278 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:41, 05:30](951 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:36, 03:15](1189 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:36, 05:25](1356 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:10, 12:43] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:22, 01:57](1002 MB) + +PASS -- COMPILE 's2swa_gnu' [19:10, 18:35] + +PASS -- COMPILE 's2s_gnu' [17:10, 17:06] + +PASS -- COMPILE 's2swa_debug_gnu' [13:10, 12:53] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:10, 17:48] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:11, 12:03] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 15:56] SYNOPSIS: -Starting Date/Time: 20240508 13:49:00 -Ending Date/Time: 20240508 15:19:44 -Total Time: 01h:31m:22s +Starting Date/Time: 20240512 07:18:29 +Ending Date/Time: 20240512 08:31:43 +Total Time: 01h:13m:36s Compiles Completed: 54/54 Tests Completed: 237/237 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 9aa3779381..0a73641041 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,17 +1,17 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -f29351be77830efd8ae23ad72436b4b38b886383 +6a75664fc408bfd7a64311ae178ffeb12ffe7b77 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) + 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,244 +36,244 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_36815 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3749061 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [59:01, 39:54] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 07:22](1791 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [09:02, 50:08] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:05, 22:18](1670 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:27, 24:43](1882 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:38, 11:03](999 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:36, 24:52](1636 MB) - -PASS -- COMPILE 's2swa_intel' [59:01, 39:55] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:42, 08:51](1807 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:09, 08:28](1826 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:09, 05:17](1713 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:41, 08:43](1850 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:10, 05:07](1732 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:44, 07:37](2274 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:33, 08:34](1806 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:44, 07:16](1771 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:10, 08:32](1821 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:50, 07:32](1788 MB) - -PASS -- COMPILE 's2sw_intel' [57:00, 38:10] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:40, 06:06](1649 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:48, 05:59](1693 MB) - -PASS -- COMPILE 's2swa_debug_intel' [25:57, 07:14] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:08, 10:40](1859 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:47] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:25, 07:19](1681 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:14, 32:31] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:00, 06:23](1715 MB) - -PASS -- COMPILE 's2s_intel' [33:14, 32:30] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:20, 12:52](2799 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:10, 03:44](2802 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:08, 02:12](2268 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:39] ( 1608 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:02, 07:42](1825 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:53] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:57, 22:16](1692 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:31, 10:55](1040 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:06, 24:29](1657 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 05:02] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:48, 32:25](1691 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [35:13, 35:04] ( 1 warnings 1151 remarks ) -PASS -- TEST 'control_flake_intel' [06:33, 04:52](642 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:44, 04:56](1533 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:55, 05:00](1551 MB) -PASS -- TEST 'control_latlon_intel' [19:37, 04:18](1549 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:49, 04:55](1537 MB) -PASS -- TEST 'control_c48_intel' [17:48, 12:02](1737 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:45, 10:16](847 MB) -PASS -- TEST 'control_c192_intel' [22:04, 15:23](1675 MB) -PASS -- TEST 'control_c384_intel' [26:14, 21:22](1813 MB) -PASS -- TEST 'control_c384gdas_intel' [23:36, 16:16](1021 MB) -PASS -- TEST 'control_stochy_intel' [03:31, 02:14](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [15:52, 01:41](436 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 02:09](603 MB) -PASS -- TEST 'control_iovr4_intel' [04:36, 03:43](604 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 03:36](595 MB) -PASS -- TEST 'control_p8_intel' [17:21, 04:23](1576 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:26, 04:14](1573 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:27, 04:15](1577 MB) -PASS -- TEST 'control_restart_p8_intel' [11:33, 02:48](817 MB) -PASS -- TEST 'control_noqr_p8_intel' [21:09, 04:23](1566 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:22, 02:29](852 MB) -PASS -- TEST 'control_decomp_p8_intel' [18:06, 05:03](1570 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:21, 04:04](1663 MB) -PASS -- TEST 'control_p8_lndp_intel' [23:58, 07:52](1570 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:35, 05:26](1618 MB) -PASS -- TEST 'control_p8_mynn_intel' [19:27, 05:02](1583 MB) -PASS -- TEST 'merra2_thompson_intel' [21:30, 04:54](1587 MB) -PASS -- TEST 'regional_control_intel' [24:42, 08:30](764 MB) -PASS -- TEST 'regional_restart_intel' [06:48, 04:37](934 MB) -PASS -- TEST 'regional_decomp_intel' [11:34, 08:54](765 MB) -PASS -- TEST 'regional_2threads_intel' [07:26, 05:37](756 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [22:06, 08:02](762 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [21:49, 08:11](762 MB) - -PASS -- COMPILE 'rrfs_intel' [33:13, 32:53] ( 3 warnings 1119 remarks ) -PASS -- TEST 'rap_control_intel' [26:38, 11:11](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:28, 06:09](1221 MB) -PASS -- TEST 'rap_decomp_intel' [26:06, 11:23](989 MB) -PASS -- TEST 'rap_2threads_intel' [25:07, 10:24](1088 MB) -PASS -- TEST 'rap_restart_intel' [07:17, 05:45](993 MB) -PASS -- TEST 'rap_sfcdiff_intel' [25:31, 10:46](996 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:04, 11:37](993 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:44, 08:08](1000 MB) -PASS -- TEST 'hrrr_control_intel' [16:19, 05:40](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [16:09, 05:43](987 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [16:02, 05:31](1065 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:40, 03:03](916 MB) -PASS -- TEST 'rrfs_v1beta_intel' [23:52, 11:05](991 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [23:35, 13:29](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:35, 13:25](1932 MB) - -PASS -- COMPILE 'csawmg_intel' [32:14, 31:15] ( 1 warnings 1096 remarks ) -PASS -- TEST 'control_csawmg_intel' [17:02, 09:03](693 MB) -PASS -- TEST 'control_ras_intel' [12:27, 05:03](664 MB) - -PASS -- COMPILE 'wam_intel' [30:13, 30:08] ( 982 remarks ) -PASS -- TEST 'control_wam_intel' [04:25, 03:14](505 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [43:13, 32:13] ( 1295 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:36, 03:39](1584 MB) -PASS -- TEST 'regional_control_faster_intel' [10:44, 06:59](769 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:13, 06:12] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:05, 03:24](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:16, 03:36](1558 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:29, 03:52](763 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:31, 03:29](764 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:00, 05:28](810 MB) -PASS -- TEST 'control_ras_debug_intel' [06:30, 03:31](776 MB) -PASS -- TEST 'control_diag_debug_intel' [07:07, 03:25](1630 MB) -PASS -- TEST 'control_debug_p8_intel' [07:03, 03:41](1588 MB) -PASS -- TEST 'regional_debug_intel' [24:59, 21:56](780 MB) -PASS -- TEST 'rap_control_debug_intel' [07:29, 06:14](1155 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:30, 06:11](1148 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 06:23](1154 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:30, 06:21](1150 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:18](1150 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:38, 06:25](1232 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:29, 06:27](1150 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 06:26](1148 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:31, 06:21](1149 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 06:15](1147 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:29, 06:13](1150 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:11](1143 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:09](1141 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 06:03](1146 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:31](1149 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:29, 06:12](1151 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:33, 11:00](1156 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:11, 04:15] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:28, 06:15](446 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:13, 30:33] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:24, 05:25](1069 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:08, 08:49](899 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:22, 04:37](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:08, 08:09](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:16, 04:05](911 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:21, 05:02](840 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:44](890 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:36, 02:36](837 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 43:02] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:12, 03:08](1106 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:56, 01:33](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:55, 01:39](1023 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:37] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 05:39](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 04:07] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 06:08](1030 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:29, 06:08](1027 MB) -PASS -- TEST 'conus13km_debug_intel' [24:09, 18:30](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:03, 18:45](852 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:01, 10:46](1083 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:00, 18:29](1205 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:22] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 06:12](1076 MB) - -PASS -- COMPILE 'hafsw_intel' [35:13, 34:59] ( 1 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:26, 07:43](722 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:37, 07:36](1084 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:53, 09:48](766 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:32, 19:14](809 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:54, 19:08](966 MB) -PASS -- TEST 'gnv1_nested_intel' [09:24, 07:10](775 MB) - -PASS -- COMPILE 'hafs_all_intel' [33:13, 32:20] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:27, 10:42](772 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:34, 10:43](754 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:03] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 03:44](1055 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:17](1032 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 03:18](922 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 03:36](927 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 03:36](926 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 03:38](1060 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 03:42](1056 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:23, 03:31](926 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:36, 08:25](884 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:34, 08:04](842 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:39](1064 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:16](2400 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:16](2408 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:25] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:01](1017 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:47] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 03:46](1049 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 02:00] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:42, 01:54](233 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:32](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:29, 00:56](253 MB) - -PASS -- COMPILE 'atml_intel' [39:14, 38:41] ( 8 warnings 1189 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:48, 10:14](1605 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:47, 10:11](1597 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:57, 05:34](870 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:28] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:50](1629 MB) - -PASS -- COMPILE 'atmw_intel' [32:13, 31:48] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 02:32](1611 MB) - -PASS -- COMPILE 'atmaero_intel' [31:13, 30:25] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:37, 05:39](1698 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:37](1722 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:13, 06:53](1729 MB) +PASS -- COMPILE 's2swa_32bit_intel' [39:13, 38:49] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:45, 07:07](1789 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:15, 53:21] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:01, 20:46](1662 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:17, 22:34](1883 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:18, 10:25](990 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:34, 23:56](1626 MB) + +PASS -- COMPILE 's2swa_intel' [39:14, 39:03] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:22, 07:46](1829 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:46, 07:47](1825 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:54, 04:24](1716 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:22, 07:49](1866 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:53, 04:39](1730 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:17, 07:29](2265 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:17, 07:47](1812 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:45, 06:37](1785 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:45, 07:44](1829 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:36, 07:20](1792 MB) + +PASS -- COMPILE 's2sw_intel' [37:13, 36:56] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:37, 05:55](1667 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:47, 05:47](1706 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:29] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:57, 11:34](1845 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:15] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:25, 07:17](1681 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:21] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:52, 05:47](1722 MB) + +PASS -- COMPILE 's2s_intel' [33:13, 32:20] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:42](2801 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:12, 03:34](2794 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:03, 02:00](2273 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:37] ( 1608 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:55, 07:35](1811 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:14, 46:31] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:41, 20:51](1684 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 10:27](1031 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:34, 24:08](1654 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:59] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:41, 32:11](1691 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:35] ( 1 warnings 1151 remarks ) +PASS -- TEST 'control_flake_intel' [05:33, 04:38](644 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [12:19, 04:08](1532 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:33, 04:05](1552 MB) +PASS -- TEST 'control_latlon_intel' [12:15, 04:04](1510 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:24, 04:09](1546 MB) +PASS -- TEST 'control_c48_intel' [14:31, 11:56](1729 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:43, 10:06](846 MB) +PASS -- TEST 'control_c192_intel' [19:42, 14:12](1689 MB) +PASS -- TEST 'control_c384_intel' [27:44, 18:16](1809 MB) +PASS -- TEST 'control_c384gdas_intel' [27:02, 13:35](1018 MB) +PASS -- TEST 'control_stochy_intel' [03:31, 02:20](601 MB) +PASS -- TEST 'control_stochy_restart_intel' [08:32, 01:22](441 MB) +PASS -- TEST 'control_lndp_intel' [03:32, 02:11](600 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 03:26](600 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 03:27](591 MB) +PASS -- TEST 'control_p8_intel' [12:38, 03:57](1575 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [15:06, 04:00](1580 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:56, 04:01](1544 MB) +PASS -- TEST 'control_restart_p8_intel' [04:19, 02:12](813 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:44, 04:01](1525 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:11, 02:12](837 MB) +PASS -- TEST 'control_decomp_p8_intel' [12:39, 04:12](1528 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:57, 03:41](1660 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:26, 07:15](1548 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:08, 05:03](1636 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:57, 04:05](1555 MB) +PASS -- TEST 'merra2_thompson_intel' [14:19, 04:29](1548 MB) +PASS -- TEST 'regional_control_intel' [17:12, 07:14](767 MB) +PASS -- TEST 'regional_restart_intel' [04:45, 03:50](940 MB) +PASS -- TEST 'regional_decomp_intel' [10:12, 07:33](763 MB) +PASS -- TEST 'regional_2threads_intel' [08:14, 04:23](755 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [17:19, 07:17](760 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [14:44, 07:12](763 MB) + +PASS -- COMPILE 'rrfs_intel' [33:13, 33:04] ( 3 warnings 1119 remarks ) +PASS -- TEST 'rap_control_intel' [18:28, 10:16](986 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:13, 05:45](1221 MB) +PASS -- TEST 'rap_decomp_intel' [17:58, 10:48](987 MB) +PASS -- TEST 'rap_2threads_intel' [14:57, 09:43](1086 MB) +PASS -- TEST 'rap_restart_intel' [07:20, 05:18](995 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:24, 10:10](995 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:03, 10:49](975 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 07:35](998 MB) +PASS -- TEST 'hrrr_control_intel' [08:03, 05:15](993 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:06, 05:26](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:31, 04:47](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:53](921 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:26, 10:04](987 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 12:28](1946 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:28, 12:15](1938 MB) + +PASS -- COMPILE 'csawmg_intel' [32:14, 31:16] ( 1 warnings 1096 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:43, 08:08](688 MB) +PASS -- TEST 'control_ras_intel' [05:24, 04:30](663 MB) + +PASS -- COMPILE 'wam_intel' [30:14, 29:45] ( 982 remarks ) +PASS -- TEST 'control_wam_intel' [03:26, 02:44](501 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [32:13, 31:53] ( 1295 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:29, 03:38](1570 MB) +PASS -- TEST 'regional_control_faster_intel' [07:44, 06:38](770 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 05:40] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 03:25](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:55, 03:29](1556 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:26, 03:50](766 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:25, 03:31](765 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:45, 05:23](812 MB) +PASS -- TEST 'control_ras_debug_intel' [05:25, 03:32](779 MB) +PASS -- TEST 'control_diag_debug_intel' [06:03, 03:23](1628 MB) +PASS -- TEST 'control_debug_p8_intel' [06:02, 03:40](1587 MB) +PASS -- TEST 'regional_debug_intel' [24:43, 21:59](776 MB) +PASS -- TEST 'rap_control_debug_intel' [07:28, 06:09](1150 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:27, 05:56](1150 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 06:09](1147 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:04](1154 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:03](1149 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:44, 06:24](1236 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:28, 06:16](1152 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:28, 06:11](1152 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:28, 06:08](1153 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 06:08](1149 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:58](1148 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:06](1150 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 09:57](1148 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 05:59](1145 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:23](1150 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:24, 06:06](1151 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:27, 10:31](1157 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:55] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:24, 06:10](444 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:12, 30:25] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:38, 05:19](1080 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:03, 08:34](904 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:02, 04:26](871 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:03, 08:14](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 04:05](904 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 04:40](859 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:20, 06:18](898 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:35](842 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:13, 43:10] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:05, 02:58](1105 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:49, 01:25](1050 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:37](1026 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:48] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:59, 05:33](913 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:14] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 06:03](1030 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 05:59](1024 MB) +PASS -- TEST 'conus13km_debug_intel' [19:56, 18:29](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:56, 18:35](850 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:44](1088 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:51, 18:22](1202 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:10] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:13](1073 MB) + +PASS -- COMPILE 'hafsw_intel' [35:13, 35:05] ( 1 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:29, 07:01](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:29](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:48, 09:22](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:33, 16:24](803 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:55, 18:17](823 MB) +PASS -- TEST 'gnv1_nested_intel' [07:35, 05:48](779 MB) + +PASS -- COMPILE 'hafs_all_intel' [32:13, 32:07] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:22, 08:51](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:25, 08:43](755 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:49] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 03:38](1057 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:14](1029 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:33](920 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 03:38](926 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 03:36](935 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:38](1062 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:38](1064 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:30](921 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 07:58](886 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 07:57](839 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1067 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:25, 05:06](2395 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:24, 05:05](2347 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:27] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:03](1014 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 08:04] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 03:38](1051 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:57] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:38](234 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:24](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:53](256 MB) + +PASS -- COMPILE 'atml_intel' [34:13, 33:54] ( 8 warnings 1189 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:50, 08:05](1601 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:47, 08:12](1597 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:55](864 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:20] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:58, 07:23](1627 MB) + +PASS -- COMPILE 'atmw_intel' [33:13, 32:35] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:28, 02:19](1595 MB) + +PASS -- COMPILE 'atmaero_intel' [31:13, 30:57] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:31, 05:21](1702 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:22](1729 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:21, 06:33](1729 MB) SYNOPSIS: -Starting Date/Time: 20240508 14:46:39 -Ending Date/Time: 20240509 00:39:50 -Total Time: 09h:53m:54s +Starting Date/Time: 20240510 17:44:38 +Ending Date/Time: 20240510 21:07:06 +Total Time: 03h:23m:06s Compiles Completed: 33/33 Tests Completed: 161/161 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 851f2ac9e6..7e0f13836d 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,17 +1,17 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -1b73dc3cfe52765a05ce8ae57735fef196de5fab +57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) + 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,275 +36,275 @@ 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-20240503 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_67506 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_114590 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:54, 05:33](3178 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 20:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:21, 17:19](1736 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 18:27](1976 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:10, 08:32](1117 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:17, 19:31](1647 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:21] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:58, 23:06](1630 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 15:39] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:38, 05:50](3210 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:07, 05:58](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:07, 03:22](3250 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:38, 05:52](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:06, 03:28](3274 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:54, 06:16](3561 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 05:59](3193 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:39, 04:53](3068 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:55, 05:51](3214 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:57, 10:32](3337 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:34, 06:47](3563 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:01, 11:22](4127 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:56, 07:25](4378 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:35](3173 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 14:10] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:20, 04:50](1738 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:40, 04:34](1781 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:22] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:49, 08:45](3251 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:30] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:19, 06:04](1754 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 14:02] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:43, 04:32](1779 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 13:37] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:01, 08:07](2827 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:24](2830 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:07, 01:21](2307 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:12, 20:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:02, 05:26](3222 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:27, 17:32](1767 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:40, 08:33](1138 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:19, 19:34](1678 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:06] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:26, 24:48](1704 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:26, 03:27](700 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:57, 02:57](1553 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:02, 03:03](1600 MB) -PASS -- TEST 'control_latlon_intel' [06:55, 03:00](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:04, 03:00](1537 MB) -PASS -- TEST 'control_c48_intel' [11:01, 07:10](1767 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:32, 06:04](875 MB) -PASS -- TEST 'control_c192_intel' [14:12, 10:28](1752 MB) -PASS -- TEST 'control_c384_intel' [17:14, 12:49](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [15:12, 09:10](1352 MB) -PASS -- TEST 'control_stochy_intel' [04:26, 01:43](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [10:25, 01:08](502 MB) -PASS -- TEST 'control_lndp_intel' [04:23, 01:37](657 MB) -PASS -- TEST 'control_iovr4_intel' [05:29, 02:30](651 MB) -PASS -- TEST 'control_iovr5_intel' [04:26, 02:28](659 MB) -PASS -- TEST 'control_p8_intel' [12:19, 03:05](1634 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:30, 02:59](1632 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:44, 02:54](1625 MB) -PASS -- TEST 'control_restart_p8_intel' [03:22, 01:40](900 MB) -PASS -- TEST 'control_noqr_p8_intel' [12:29, 02:54](1623 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:35](927 MB) -PASS -- TEST 'control_decomp_p8_intel' [12:24, 03:03](1572 MB) -PASS -- TEST 'control_2threads_p8_intel' [12:14, 03:08](1716 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:48, 05:15](1638 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:37, 03:57](1695 MB) -PASS -- TEST 'control_p8_mynn_intel' [13:35, 03:53](1635 MB) -PASS -- TEST 'merra2_thompson_intel' [12:50, 03:22](1638 MB) -PASS -- TEST 'regional_control_intel' [12:46, 05:16](858 MB) -PASS -- TEST 'regional_restart_intel' [04:44, 03:01](991 MB) -PASS -- TEST 'regional_decomp_intel' [13:50, 05:40](854 MB) -PASS -- TEST 'regional_2threads_intel' [11:47, 03:53](843 MB) -PASS -- TEST 'regional_noquilt_intel' [12:48, 05:13](1368 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [12:54, 05:15](855 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:40, 05:15](859 MB) -PASS -- TEST 'regional_wofs_intel' [10:42, 06:49](1879 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:03] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:38, 07:50](1105 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:53](1238 MB) -PASS -- TEST 'rap_decomp_intel' [10:01, 08:09](1032 MB) -PASS -- TEST 'rap_2threads_intel' [09:23, 07:57](1182 MB) -PASS -- TEST 'rap_restart_intel' [08:35, 04:05](1105 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:50](1107 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:08, 08:16](1020 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 05:57](1132 MB) -PASS -- TEST 'hrrr_control_intel' [05:31, 04:03](1030 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:09, 04:10](1024 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:09, 03:29](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:27, 02:12](999 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:27, 07:38](1101 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:15](1988 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 08:58](2065 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 11:56] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:46, 06:09](746 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:22](740 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 11:28] -PASS -- TEST 'control_wam_intel' [02:22, 02:06](663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 12:30] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:36, 02:42](1620 MB) -PASS -- TEST 'regional_control_faster_intel' [05:49, 04:38](851 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 14:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:11, 05:26](3177 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 20:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 17:11](1747 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:00, 18:20](2023 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 08:21](1109 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 19:22](1655 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 05:26] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:44, 23:16](1685 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 13:52] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:49, 05:41](3206 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:13, 05:44](3216 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:00, 03:26](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:49, 05:52](3232 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:00, 03:27](3273 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:08, 06:09](3559 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:49, 05:47](3202 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:05, 04:49](3070 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:12, 05:44](3209 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:27, 10:25](3342 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:40, 06:30](3625 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:38, 11:12](4119 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:01, 06:49](4370 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:59, 05:27](3176 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 13:39] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:44, 04:40](1736 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:05, 04:27](1783 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 04:58] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:29, 08:32](3248 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 04:48] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:13, 05:55](1753 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 13:07] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:22, 04:25](1781 MB) + +PASS -- COMPILE 's2s_intel' [17:12, 13:14] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:57, 08:10](2836 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:56, 02:22](2833 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:02, 01:27](2294 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:11, 18:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:47, 05:26](3211 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:23, 17:25](1764 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:20](1169 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:12, 19:27](1673 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:03] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 24:32](1715 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:27, 03:29](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:57, 02:54](1595 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:02](1596 MB) +PASS -- TEST 'control_latlon_intel' [05:52, 02:52](1594 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:01, 03:01](1598 MB) +PASS -- TEST 'control_c48_intel' [09:52, 07:07](1770 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:33, 06:01](872 MB) +PASS -- TEST 'control_c192_intel' [13:09, 10:29](1741 MB) +PASS -- TEST 'control_c384_intel' [15:15, 11:30](2006 MB) +PASS -- TEST 'control_c384gdas_intel' [12:58, 08:56](1354 MB) +PASS -- TEST 'control_stochy_intel' [04:25, 01:40](654 MB) +PASS -- TEST 'control_stochy_restart_intel' [08:24, 00:59](502 MB) +PASS -- TEST 'control_lndp_intel' [04:25, 01:36](658 MB) +PASS -- TEST 'control_iovr4_intel' [05:28, 02:29](648 MB) +PASS -- TEST 'control_iovr5_intel' [05:27, 02:28](654 MB) +PASS -- TEST 'control_p8_intel' [09:28, 03:00](1630 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:24, 02:57](1634 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:41, 02:51](1640 MB) +PASS -- TEST 'control_restart_p8_intel' [07:17, 01:41](890 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:23, 02:54](1626 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:08, 01:36](930 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:24, 03:02](1615 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:23, 03:05](1712 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:53, 05:15](1637 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:34, 03:56](1693 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:34, 02:59](1640 MB) +PASS -- TEST 'merra2_thompson_intel' [10:43, 03:22](1645 MB) +PASS -- TEST 'regional_control_intel' [10:45, 05:08](860 MB) +PASS -- TEST 'regional_restart_intel' [05:41, 02:46](1023 MB) +PASS -- TEST 'regional_decomp_intel' [10:41, 05:30](851 MB) +PASS -- TEST 'regional_2threads_intel' [08:39, 03:40](848 MB) +PASS -- TEST 'regional_noquilt_intel' [10:42, 05:05](1364 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:44, 05:04](859 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:44, 05:05](856 MB) +PASS -- TEST 'regional_wofs_intel' [12:39, 06:44](1921 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:26] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [14:32, 07:44](1106 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:11, 04:40](1301 MB) +PASS -- TEST 'rap_decomp_intel' [11:07, 08:07](1025 MB) +PASS -- TEST 'rap_2threads_intel' [11:00, 07:54](1177 MB) +PASS -- TEST 'rap_restart_intel' [05:02, 04:06](1098 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:20, 07:44](1099 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:04, 08:11](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:27, 05:50](1124 MB) +PASS -- TEST 'hrrr_control_intel' [10:11, 04:06](1037 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:05, 04:10](1022 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [11:00, 03:26](1114 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:25, 02:11](993 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:25, 07:36](1102 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:24, 09:10](1997 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:25, 08:57](2074 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:59] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:41, 06:03](746 MB) +PASS -- TEST 'control_ras_intel' [06:25, 03:20](740 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 10:44] +PASS -- TEST 'control_wam_intel' [05:20, 02:05](658 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 11:33] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:31, 02:40](1633 MB) +PASS -- TEST 'regional_control_faster_intel' [07:38, 04:49](856 MB) PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:37] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:42](1617 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:57, 02:40](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:04](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:44](819 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:50, 04:22](829 MB) -PASS -- TEST 'control_ras_debug_intel' [03:24, 02:42](825 MB) -PASS -- TEST 'control_diag_debug_intel' [07:52, 02:51](1630 MB) -PASS -- TEST 'control_debug_p8_intel' [06:50, 02:56](1643 MB) -PASS -- TEST 'regional_debug_intel' [22:49, 17:32](845 MB) -PASS -- TEST 'rap_control_debug_intel' [09:25, 05:03](1206 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:26, 05:03](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:26, 04:49](1202 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:24, 04:57](1203 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:24, 05:05](1203 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:38, 05:18](1281 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:23, 05:07](1201 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:25, 05:10](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:24, 05:14](1206 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:23, 05:04](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:23, 04:57](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 05:02](1199 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:14](1206 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 04:54](1197 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 06:20](1213 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:57](1202 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:38, 08:27](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:30] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:24, 05:02](507 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:34](1122 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 06:37](1047 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:12, 03:33](978 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:52, 06:51](1099 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:59](968 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:39](920 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:22, 04:55](1027 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:24, 02:01](896 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 14:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:02, 02:04](1199 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:07](1119 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:45, 01:21](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:55, 04:17](998 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:39] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:58](1082 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:48](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [15:03, 14:02](1222 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:07, 14:30](925 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:25](1162 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 14:34](1288 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 02:59] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:53](1127 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 12:32] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:29](739 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:02](1119 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:32, 07:10](837 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 13:28](861 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:26, 15:03](1028 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:00, 06:15](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 07:35](517 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:51, 03:11](368 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:14, 08:13](484 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:18](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:52, 03:56](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:57, 05:19](579 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:28, 01:22](406 MB) -PASS -- TEST 'gnv1_nested_intel' [11:59, 04:34](804 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:51] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:53, 12:59](565 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:10, 13:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:03, 09:40](649 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:05, 09:48](741 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 13:00] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:08, 07:06](699 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 12:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:19, 06:20](830 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:18, 06:29](813 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:58, 15:54](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 06:56] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:18, 02:35](1133 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:39](1088 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:34](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 02:38](996 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:18, 02:37](1010 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:19, 02:38](1126 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:36](1122 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:33](996 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 05:48](1047 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:17, 06:05](1034 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:41](1112 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:29](2435 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:37](2434 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:46] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:21](1053 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:35] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1138 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 01:43] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:51](245 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:33](324 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 13:04] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:41, 04:15](1613 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:36, 04:19](1598 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:26](894 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:10, 04:08] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:38, 05:43](1614 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:19] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:37, 01:46](1621 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 11:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:28, 04:02](3014 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:25, 04:54](3101 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 05:02](3101 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:35] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:56, 20:41](4420 MB) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:47, 02:43](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:47, 02:41](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:22, 03:09](822 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:21, 02:47](821 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:10](866 MB) +PASS -- TEST 'control_ras_debug_intel' [05:21, 02:53](828 MB) +PASS -- TEST 'control_diag_debug_intel' [04:49, 02:51](1672 MB) +PASS -- TEST 'control_debug_p8_intel' [03:46, 02:44](1648 MB) +PASS -- TEST 'regional_debug_intel' [18:43, 17:18](839 MB) +PASS -- TEST 'rap_control_debug_intel' [05:26, 04:54](1204 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:24, 04:51](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:52](1207 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:54](1200 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 04:56](1204 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:21](1286 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 04:52](1199 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:59](1198 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:05](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:39](1211 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:49](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:53](1196 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:50](1206 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:47](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 06:02](1200 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:53](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:25](1216 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:45] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:21, 05:17](506 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:26](1176 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:20, 06:27](1054 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:29, 03:24](981 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:00, 06:45](1098 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:12, 02:58](960 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:36](919 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:20, 04:58](1043 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:56](923 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:01, 02:05](1205 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:48, 01:03](1124 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:16](1106 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 10:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:16](992 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:46] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:54](1076 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:55](1078 MB) +PASS -- TEST 'conus13km_debug_intel' [15:52, 14:26](1229 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:39](928 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:55](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 14:46](1294 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:21] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:28, 04:41](1124 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 12:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:26](742 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:51](1120 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:20, 06:58](831 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:20](864 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:59](884 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 06:11](499 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:29](517 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 03:10](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:19, 08:00](518 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 04:12](533 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:50, 04:03](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 05:17](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:25, 01:23](408 MB) +PASS -- TEST 'gnv1_nested_intel' [09:57, 04:36](803 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:10, 04:34] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:51, 13:08](567 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:11, 12:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:01, 09:48](671 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:01, 09:55](740 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 12:14] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:05, 07:01](665 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:11, 12:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:23](827 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:13, 06:31](816 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:00, 16:03](1210 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:16] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:39](1137 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:39](1089 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:31](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:38](1022 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:36](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:34](1135 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:37](1129 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:36](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:14, 05:55](1060 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:12, 06:00](1040 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:45](1125 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:35](2495 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:31](2436 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:56] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:18](1062 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:15, 06:37] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:38](1129 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:12] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:49](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:51](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:35](323 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 12:14] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:39, 04:15](1614 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:41, 04:21](1607 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:28](905 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 04:03] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:31, 05:41](1619 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:05] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:50](1674 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 10:40] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:19, 03:58](3024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:21, 04:51](3095 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 04:57](3096 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 03:13] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:44, 20:52](4577 MB) SYNOPSIS: -Starting Date/Time: 20240508 15:06:47 -Ending Date/Time: 20240508 16:39:45 -Total Time: 01h:33m:47s +Starting Date/Time: 20240512 07:31:45 +Ending Date/Time: 20240512 09:04:54 +Total Time: 01h:33m:38s Compiles Completed: 38/38 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 257d32ff8a..93b9c16d21 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,18 +1,18 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -f29351be77830efd8ae23ad72436b4b38b886383 +bd6721bc051892b41f039008a028aaef572d7c78 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (7147dac) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,245 +36,252 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244581 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_123747 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:36, 22:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:01, 01:24](2973 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:37, 22:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [08:00, 01:54](1592 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:01, 01:44](1709 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [50:01, 02:12](851 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [08:01, 01:40](1576 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:21] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:20, 01:42](1605 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 11:00] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:13, 01:29](3005 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:13, 01:45](3002 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:52, 01:54](3062 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:13, 01:25](3025 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:48, 01:52](3080 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:13, 01:07](3311 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:13, 01:28](3003 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [20:14, 01:26](2932 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:13, 01:47](3002 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:22, 03:33](3952 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [02:29, 04:17](4246 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [20:13, 01:55](2970 MB) - -PASS -- COMPILE 's2sw_intel' [11:24, 10:30] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [20:13, 00:50](1593 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:13, 01:04](1640 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [28:42, 28:23] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [02:54, 00:57](1635 MB) - -PASS -- COMPILE 's2s_intel' [10:23, 09:47] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [21:13, 00:43](2657 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [21:13, 01:27](2678 MB) -PASS -- TEST 'cpld_restart_c48_intel' [17:13, 01:24](2108 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:34, 19:38] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:59, 01:47](3003 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:42, 17:37] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [53:20, 01:11](1604 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:58, 00:42](903 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:59, 00:40](1581 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:18] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:20, 01:40](1611 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 11:01] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [14:54, 00:19](576 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [14:54, 00:27](1468 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:54, 00:27](1478 MB) -PASS -- TEST 'control_latlon_intel' [14:54, 00:20](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:54, 00:33](1477 MB) -PASS -- TEST 'control_c48_intel' [14:53, 00:52](1597 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:53, 00:55](714 MB) -PASS -- TEST 'control_c192_intel' [14:54, 00:41](1582 MB) -PASS -- TEST 'control_c384_intel' [02:53, 01:59](1905 MB) -PASS -- TEST 'control_c384gdas_intel' [14:58, 01:50](1090 MB) -PASS -- TEST 'control_stochy_intel' [14:54, 00:29](532 MB) -PASS -- TEST 'control_stochy_restart_intel' [12:20, 01:04](328 MB) -PASS -- TEST 'control_lndp_intel' [14:54, 00:34](529 MB) -PASS -- TEST 'control_iovr4_intel' [14:54, 00:45](524 MB) -PASS -- TEST 'control_iovr5_intel' [14:54, 00:45](522 MB) -PASS -- TEST 'control_p8_intel' [14:54, 01:56](1509 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [14:08, 01:53](1501 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [13:59, 01:57](1503 MB) -PASS -- TEST 'control_restart_p8_intel' [09:26, 00:42](694 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:45, 01:33](1497 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:44, 00:50](698 MB) -PASS -- TEST 'control_decomp_p8_intel' [13:05, 01:21](1495 MB) -PASS -- TEST 'control_2threads_p8_intel' [12:46, 00:51](1591 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:46, 01:08](1510 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:17, 01:01](1565 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:53, 01:47](1506 MB) -PASS -- TEST 'merra2_thompson_intel' [11:40, 01:45](1510 MB) -PASS -- TEST 'regional_control_intel' [11:30, 00:18](610 MB) -PASS -- TEST 'regional_restart_intel' [05:48, 00:21](777 MB) -PASS -- TEST 'regional_decomp_intel' [11:29, 01:05](608 MB) -PASS -- TEST 'regional_2threads_intel' [11:18, 00:58](660 MB) -PASS -- TEST 'regional_noquilt_intel' [11:17, 00:24](1146 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:08, 00:27](606 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:03, 00:17](610 MB) -PASS -- TEST 'regional_wofs_intel' [11:03, 00:34](1577 MB) - -PASS -- COMPILE 'rrfs_intel' [27:52, 27:04] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [58:26, 01:38](917 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [58:27, 01:07](1099 MB) -PASS -- TEST 'rap_decomp_intel' [58:26, 01:23](918 MB) -PASS -- TEST 'rap_2threads_intel' [58:26, 01:45](1005 MB) -PASS -- TEST 'rap_restart_intel' [49:28, 01:17](788 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'rap_sfcdiff_intel' [, ]( MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [58:26, 01:44](916 MB) -FAILED: UNABLE TO START RUN -- TEST 'rap_sfcdiff_restart_intel' [, ]( MB) -PASS -- TEST 'hrrr_control_intel' [58:26, 01:02](910 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [58:26, 00:56](909 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [58:27, 01:23](989 MB) -PASS -- TEST 'hrrr_control_restart_intel' [53:24, 01:06](742 MB) -PASS -- TEST 'rrfs_v1beta_intel' [58:26, 01:15](912 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [58:26, 01:00](1871 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [58:26, 01:18](1861 MB) - -PASS -- COMPILE 'csawmg_intel' [25:50, 24:55] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [55:23, 00:33](600 MB) -PASS -- TEST 'control_ras_intel' [55:23, 00:55](560 MB) - -PASS -- COMPILE 'wam_intel' [31:02, 30:34] -PASS -- TEST 'control_wam_intel' [49:08, 00:54](272 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [23:48, 23:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [56:24, 02:02](1504 MB) -PASS -- TEST 'regional_control_faster_intel' [56:23, 00:26](609 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [22:40, 21:56] ( 870 warnings 92 remarks ) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [52:13, 00:29](1493 MB) -PASS -- TEST 'control_stochy_debug_intel' [52:13, 00:56](693 MB) -PASS -- TEST 'control_lndp_debug_intel' [52:13, 01:16](694 MB) -PASS -- TEST 'control_csawmg_debug_intel' [52:13, 00:41](732 MB) -PASS -- TEST 'control_ras_debug_intel' [52:13, 01:12](704 MB) -PASS -- TEST 'control_diag_debug_intel' [52:13, 01:17](1546 MB) -PASS -- TEST 'control_debug_p8_intel' [52:13, 01:05](1524 MB) -PASS -- TEST 'regional_debug_intel' [52:12, 00:47](629 MB) -PASS -- TEST 'rap_control_debug_intel' [52:13, 00:57](1074 MB) -PASS -- TEST 'hrrr_control_debug_intel' [52:13, 01:06](1068 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [50:58, 01:01](1072 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [50:57, 00:58](1071 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [50:42, 00:53](1075 MB) -PASS -- TEST 'rap_diag_debug_intel' [50:00, 00:50](1156 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [49:58, 00:44](1076 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [49:31, 00:46](1073 MB) -PASS -- TEST 'rap_lndp_debug_intel' [49:28, 00:53](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [49:00, 00:56](1076 MB) -PASS -- TEST 'rap_noah_debug_intel' [48:48, 01:02](1073 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [48:47, 00:54](1078 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [48:20, 00:41](1077 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [47:51, 01:02](1071 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [47:43, 01:06](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [47:43, 00:55](1074 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [47:43, 02:13](1084 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:25, 05:18] ( 842 warnings ) -PASS -- TEST 'control_wam_debug_intel' [04:37, 00:50](301 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:53, 21:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [46:29, 01:27](957 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [45:53, 01:19](791 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [45:45, 01:39](786 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [45:42, 01:38](856 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [45:42, 01:33](839 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [44:58, 01:47](789 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [38:29, 01:34](688 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:41, 00:19](669 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:38, 13:31] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [53:22, 01:03](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [47:42, 00:54](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [47:29, 00:42](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 13:44] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:24, 01:25](806 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:42, 11:26] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:51, 00:57](952 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:51, 01:11](951 MB) -PASS -- TEST 'conus13km_debug_intel' [44:24, 00:30](1039 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [44:24, 01:06](709 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [44:17, 00:33](1038 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:04, 00:24](1102 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:22, 07:56] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:32, 00:58](981 MB) - -PASS -- COMPILE 'hafsw_intel' [21:46, 20:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [34:40, 02:07](621 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [34:40, 00:37](971 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [34:38, 01:55](663 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [34:38, 01:35](704 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:39, 01:22](711 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [34:38, 01:07](386 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [34:39, 02:14](401 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [34:39, 01:26](292 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [34:42, 02:26](376 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:29, 01:30](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:14, 00:52](410 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [33:13, 00:49](493 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:12, 00:23](316 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:29, 15:00] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [39:56, 00:39](507 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:25, 10:26] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [42:00, 00:44](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [42:00, 00:44](708 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:30, 12:24] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [39:52, 00:53](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:27, 10:23] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [40:47, 01:21](661 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [40:46, 01:23](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [40:44, 00:30](882 MB) - -PASS -- COMPILE 'atml_intel' [20:39, 19:53] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [29:32, 01:21](1543 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [29:32, 01:21](1550 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:52, 00:21](746 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:21, 04:33] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [35:22, 01:44](1569 MB) - -PASS -- COMPILE 'atmaero_intel' [10:32, 10:09] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [39:31, 01:31](2850 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [39:31, 00:53](2914 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [39:31, 01:51](2923 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:23, 09:56] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [38:47, 01:36](4445 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:26, 11:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:18, 01:24](2974 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:34, 16:56] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:43, 01:59](1596 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [04:36, 01:43](1712 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [04:19, 02:16](847 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:44, 01:35](1567 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:52] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [47:27, 01:57](1600 MB) + +PASS -- COMPILE 's2swa_intel' [24:40, 24:02] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [28:04, 01:06](3002 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:04, 01:37](3004 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:39, 02:02](3061 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [28:04, 01:08](3025 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [19:47, 01:56](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [28:03, 01:09](3314 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [28:03, 01:14](3004 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [28:04, 01:33](2930 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:04, 01:29](3005 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:12, 04:11](3948 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:21, 04:19](4247 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [28:04, 01:44](2975 MB) + +PASS -- COMPILE 's2sw_intel' [11:24, 10:28] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [41:19, 00:50](1585 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:38, 01:48](1640 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [20:33, 20:19] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:10, 01:59](1632 MB) + +PASS -- COMPILE 's2s_intel' [21:36, 21:17] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [31:07, 00:43](2645 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [31:07, 01:27](2665 MB) +PASS -- TEST 'cpld_restart_c48_intel' [27:03, 01:10](2105 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:40, 20:11] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [02:27, 01:47](3004 MB) + +FAILED: UNABLE TO COMPILE -- COMPILE 's2sw_pdlib_intel' [, ] +FAILED: UNABLE TO START RUN -- TEST 'cpld_control_pdlib_p8_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:24, 09:17] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:21, 01:43](1613 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [27:42, 26:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [19:43, 00:24](576 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [19:43, 00:27](1468 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:43, 00:28](1475 MB) +PASS -- TEST 'control_latlon_intel' [19:43, 00:23](1474 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:43, 00:33](1474 MB) +PASS -- TEST 'control_c48_intel' [19:42, 00:56](1597 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [19:42, 00:50](713 MB) +PASS -- TEST 'control_c192_intel' [19:43, 00:40](1583 MB) +PASS -- TEST 'control_c384_intel' [19:47, 01:50](1904 MB) +PASS -- TEST 'control_c384gdas_intel' [19:47, 02:36](1086 MB) +PASS -- TEST 'control_stochy_intel' [19:43, 00:26](532 MB) +PASS -- TEST 'control_stochy_restart_intel' [17:17, 01:04](332 MB) +PASS -- TEST 'control_lndp_intel' [19:43, 00:31](525 MB) +PASS -- TEST 'control_iovr4_intel' [19:43, 00:45](523 MB) +PASS -- TEST 'control_iovr5_intel' [19:43, 00:43](525 MB) +PASS -- TEST 'control_p8_intel' [19:43, 01:38](1499 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [19:43, 01:57](1500 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [19:43, 02:01](1503 MB) +PASS -- TEST 'control_restart_p8_intel' [14:28, 01:04](693 MB) +PASS -- TEST 'control_noqr_p8_intel' [19:43, 01:39](1492 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [14:27, 01:03](698 MB) +PASS -- TEST 'control_decomp_p8_intel' [19:38, 01:31](1499 MB) +PASS -- TEST 'control_2threads_p8_intel' [19:28, 01:14](1595 MB) +PASS -- TEST 'control_p8_lndp_intel' [19:28, 01:11](1503 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:30, 01:54](1554 MB) +PASS -- TEST 'control_p8_mynn_intel' [17:17, 01:50](1514 MB) +PASS -- TEST 'merra2_thompson_intel' [16:14, 01:59](1509 MB) +PASS -- TEST 'regional_control_intel' [16:12, 00:18](606 MB) +PASS -- TEST 'regional_restart_intel' [10:30, 00:22](777 MB) +PASS -- TEST 'regional_decomp_intel' [15:58, 00:55](609 MB) +PASS -- TEST 'regional_2threads_intel' [15:55, 00:59](668 MB) +PASS -- TEST 'regional_noquilt_intel' [15:49, 00:20](1147 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [15:46, 00:21](606 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:42, 00:13](608 MB) +PASS -- TEST 'regional_wofs_intel' [15:14, 00:26](1579 MB) + +PASS -- COMPILE 'rrfs_intel' [24:41, 23:37] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [14:56, 01:30](918 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:51, 01:07](1101 MB) +PASS -- TEST 'rap_decomp_intel' [14:38, 01:49](919 MB) +PASS -- TEST 'rap_2threads_intel' [14:29, 01:39](1001 MB) +PASS -- TEST 'rap_restart_intel' [06:08, 01:18](787 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:14, 01:04](915 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:08, 01:36](916 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:53, 01:48](788 MB) +PASS -- TEST 'hrrr_control_intel' [14:08, 01:21](910 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [13:00, 01:07](910 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:58, 01:35](989 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:46, 01:03](742 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:29, 01:15](912 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:54, 00:56](1875 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:38, 01:14](1861 MB) + +PASS -- COMPILE 'csawmg_intel' [17:33, 16:25] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [23:45, 00:30](603 MB) +PASS -- TEST 'control_ras_intel' [23:45, 00:51](559 MB) + +PASS -- COMPILE 'wam_intel' [32:52, 31:41] +PASS -- TEST 'control_wam_intel' [07:25, 01:07](272 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 11:50] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:11, 02:00](1510 MB) +PASS -- TEST 'regional_control_faster_intel' [11:01, 00:30](611 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:29, 13:19] ( 870 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:16, 01:19](1487 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:27, 00:28](1491 MB) +PASS -- TEST 'control_stochy_debug_intel' [10:06, 00:53](692 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:02, 01:11](692 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:59, 00:38](730 MB) +PASS -- TEST 'control_ras_debug_intel' [09:18, 01:09](701 MB) +PASS -- TEST 'control_diag_debug_intel' [08:42, 01:22](1555 MB) +PASS -- TEST 'control_debug_p8_intel' [08:27, 01:07](1524 MB) +PASS -- TEST 'regional_debug_intel' [08:07, 00:47](630 MB) +PASS -- TEST 'rap_control_debug_intel' [07:53, 00:56](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:50, 01:02](1070 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:50, 00:57](1073 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:53, 00:55](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:48, 00:52](1074 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 00:50](1156 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:08, 00:55](1074 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:43, 00:47](1077 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:40, 00:50](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 00:55](1075 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:37, 00:58](1075 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 00:56](1071 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [05:10, 00:50](1075 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:09, 00:59](1067 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [04:57, 01:07](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:49, 00:46](1077 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB) + +PASS -- COMPILE 'wam_debug_intel' [07:21, 06:55] ( 842 warnings ) +PASS -- TEST 'control_wam_debug_intel' [20:42, 00:58](297 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:38, 17:53] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [53:39, 01:28](954 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [53:38, 01:05](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [53:38, 02:33](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:38, 01:34](852 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [, ]( MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:20, 02:09](787 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [46:26, 01:29](685 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:36, 00:20](671 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:33, 17:43] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:43, 01:03](1002 MB) +PASS -- TEST 'conus13km_2threads_intel' [59:52, 00:54](1007 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [59:30, 00:42](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:32, 16:53] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [02:21, 01:23](806 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [21:37, 20:54] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [58:05, 01:06](959 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:05, 01:14](951 MB) +PASS -- TEST 'conus13km_debug_intel' [58:05, 00:30](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [58:05, 01:15](707 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [57:24, 00:30](1040 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:12, 00:25](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:25, 10:56] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [03:40, 00:54](981 MB) + +PASS -- COMPILE 'hafsw_intel' [15:31, 14:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [02:11, 02:12](622 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [02:05, 00:30](965 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:21, 01:48](659 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [01:19, 01:29](702 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [01:20, 01:33](715 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:44, 01:10](392 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [00:24, 02:13](402 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [00:24, 01:29](282 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:01, 02:35](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:17, 01:37](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:14, 00:56](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:14, 00:53](495 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:12, 00:22](320 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:28, 12:01] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [03:36, 00:41](506 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:26, 10:24] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:08, 01:36](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:54, 01:38](707 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:38, 14:23] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:13, 00:50](710 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:27, 12:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [53:58, 01:19](668 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:58, 01:16](651 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:56, 00:27](882 MB) + +PASS -- COMPILE 'atml_intel' [19:35, 18:36] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [44:34, 01:29](1544 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [44:34, 02:23](1541 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [36:40, 00:23](744 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:18, 03:44] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [50:18, 01:42](1565 MB) + +PASS -- COMPILE 'atmaero_intel' [13:27, 13:04] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [49:52, 01:26](2851 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [49:52, 01:52](2913 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:52, 01:52](2923 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:18, 04:28] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [56:40, 01:28](4439 MB) SYNOPSIS: -Starting Date/Time: 20240508 15:27:57 -Ending Date/Time: 20240508 16:47:23 -Total Time: 01h:19m:56s -Compiles Completed: 31/31 -Tests Completed: 155/158 +Starting Date/Time: 20240513 12:06:51 +Ending Date/Time: 20240513 13:29:43 +Total Time: 01h:23m:30s +Compiles Completed: 30/31 +Tests Completed: 153/158 +Failed Compiles: +* COMPILE s2sw_pdlib_intel: FAILED: UNABLE TO COMPILE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/compile_s2sw_pdlib_intel.log Failed Tests: -* TEST rap_sfcdiff_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/fabiolrdiniz/ufs-weather-model/tests/logs/log_wcoss2/run_rap_sfcdiff_intel.log -* TEST rap_sfcdiff_restart_intel: FAILED: UNABLE TO START RUN +* TEST cpld_control_pdlib_p8_intel: FAILED: UNABLE TO START RUN -- LOG: N/A -* TEST control_CubedSphereGrid_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/fabiolrdiniz/ufs-weather-model/tests/logs/log_wcoss2/run_control_CubedSphereGrid_debug_intel.log +* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST gnv1_c96_no_nest_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_gnv1_c96_no_nest_debug_intel.log +* TEST hrrr_control_2threads_dyn32_phy32_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_hrrr_control_2threads_dyn32_phy32_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -287,18 +294,18 @@ Result: FAILURE ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -f29351be77830efd8ae23ad72436b4b38b886383 +bd6721bc051892b41f039008a028aaef572d7c78 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (7147dac) + 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (9711488) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -307,7 +314,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -322,26 +329,30 @@ 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-20240503 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_51903 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_18671 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-b) - NEW BASELINES FROM FILE: test_changes.list * (-e) - USE ECFLOW -PASS -- COMPILE 'rrfs_intel' [10:23, 09:15] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_sfcdiff_intel' [21:31, 02:11](915 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:05, 01:20](791 MB) +PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 11:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [01:36, 01:12](1604 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:04, 01:24](903 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:05, 01:32](1584 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:19, 04:13] ( 870 warnings 92 remarks ) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:44, 02:17](1087 MB) -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:18, 04:12] ( 870 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:36, 01:18](1490 MB) +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 08:10] ( 3 warnings 91 remarks ) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 01:32](842 MB) SYNOPSIS: -Starting Date/Time: 20240508 17:27:57 -Ending Date/Time: 20240508 17:56:08 -Total Time: 00h:28m:25s -Compiles Completed: 2/2 -Tests Completed: 3/3 +Starting Date/Time: 20240513 13:45:47 +Ending Date/Time: 20240513 14:37:26 +Total Time: 00h:51m:58s +Compiles Completed: 3/3 +Tests Completed: 5/5 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/opnReqTest b/tests/opnReqTest index cf854962b7..3578f1a098 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -633,7 +633,7 @@ mkdir -p ${STMP}/${USER} NEW_BASELINE=${STMP}/${USER}/FV3_OPNREQ_TEST/OPNREQ_TEST RTPWD=${NEW_BASELINE} INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20240501} -INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624/ +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214/ INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} rm -rf $NEW_BASELINE diff --git a/tests/parm/ice_in.IN b/tests/parm/ice_in.IN index 7910561fe0..e0a29ecacb 100644 --- a/tests/parm/ice_in.IN +++ b/tests/parm/ice_in.IN @@ -195,6 +195,14 @@ / &icefields_nml + f_tlon = .true. + f_tlat = .true. + f_ulon = .true. + f_ulat = .true. + f_nlon = .true. + f_nlat = .true. + f_elon = .true. + f_elat = .true. f_tmask = .true. f_blkmask = .true. f_tarea = .true. From 1c6b4d464b7c1c0c73c2fbfa74a3875cf0ef5b47 Mon Sep 17 00:00:00 2001 From: XiaqiongZhou-NOAA <48254930+XiaqiongZhou-NOAA@users.noreply.github.com> Date: Thu, 16 May 2024 01:35:49 -0400 Subject: [PATCH 10/16] Add a RT for SFS with hydrostatic options (#2255) * UFSWM - Add a RT for SFS with hydrostatic options * FV3 - Remove -DUSE_COND and -DMOIST_CAPPA compiling flags for hydrostatic runs; Fix the issue to write out geopotential height for inline post in hydrostatic runs; Use omega from the model if defined in diag_table instead calculated in post * atmos_cubed_sphere - Remove -DUSE_COND and -DMOIST_CAPPA compiling flags for hydrostatic runs --- CMakeLists.txt | 2 + FV3 | 2 +- NOAHMP-interface/CMakeLists.txt | 6 +- tests/default_vars.sh | 8 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../logs/OpnReqTests_cpld_sfs_hydro_hera.log | 126 +++ .../OpnReqTests_regional_control_hera.log | 89 +-- tests/logs/RegressionTests_acorn.log | 588 +++++++------- tests/logs/RegressionTests_derecho.log | 593 +++++++------- tests/logs/RegressionTests_gaea.log | 539 ++++++------- tests/logs/RegressionTests_hera.log | 721 +++++++++--------- tests/logs/RegressionTests_hercules.log | 713 ++++++++--------- tests/logs/RegressionTests_jet.log | 477 ++++++------ tests/logs/RegressionTests_orion.log | 539 ++++++------- tests/logs/RegressionTests_wcoss2.log | 552 ++++++-------- tests/parm/diag_table/diag_table_cpld_sfs.IN | 311 ++++++++ tests/parm/global_control.nml.IN | 24 +- tests/rt.conf | 16 +- tests/rt_utils.sh | 6 +- tests/test_changes.list | 1 + tests/tests/cpld_control_sfs | 89 +++ 22 files changed, 2992 insertions(+), 2482 deletions(-) create mode 100644 tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log create mode 100644 tests/parm/diag_table/diag_table_cpld_sfs.IN create mode 100644 tests/tests/cpld_control_sfs diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e9c8ccd39..4f4d418862 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -73,6 +73,7 @@ set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") set(CMEPS_AOFLUX OFF CACHE BOOL "Enable atmosphere-ocean flux calculation in mediator") set(PDLIB OFF CACHE BOOL "Enable Domain Decomposition in WW3 via PDLIB") set(CDEPS_INLINE OFF CACHE BOOL "Enable CDEPS inline capability") +set(HYDRO OFF CACHE BOOL "Enable hydrostatic set") set(CMAKE_Platform $ENV{CMAKE_Platform}) if(CMAKE_Platform) @@ -122,6 +123,7 @@ message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("JEDI_DRIVER ...... ${JEDI_DRIVER}") message("CMEPS_AOFLUX ..... ${CMEPS_AOFLUX}") message("CDEPS_INLINE ..... ${CDEPS_INLINE}") +message("HYDRO ........... ${HYDRO}") message("") diff --git a/FV3 b/FV3 index 7147dac3d5..9534e14d3c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 7147dac3d5075c38a43cc221d1e7e7337c28437f +Subproject commit 9534e14d3c740c8aa9c915ad03f36dc7b75d8ab8 diff --git a/NOAHMP-interface/CMakeLists.txt b/NOAHMP-interface/CMakeLists.txt index fa533818fb..f8b6d99ab1 100644 --- a/NOAHMP-interface/CMakeLists.txt +++ b/NOAHMP-interface/CMakeLists.txt @@ -56,8 +56,10 @@ endif() #------------------------------------------------------------------------------ # Add model-specific flags for C/C++/Fortran preprocessor -add_definitions(-DMOIST_CAPPA -DUSE_COND -DNEMS_GSM) -add_definitions(-DINTERNAL_FILE_NML) +if (NOT HYDRO) +add_definitions(-DMOIST_CAPPA -DUSE_COND) +endif() +add_definitions(-DINTERNAL_FILE_NML -DNEMS_GSM) #------------------------------------------------------------------------------ # NOAHMP diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 03e70f9308..7c7c71d765 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -556,6 +556,14 @@ export EXTERNAL_IC=.true. export MAKE_NH=.true. export MOUNTAIN=.false. export NA_INIT=1 +export DO_VORT_DAMP=.true. +export HYDROSTATIC=.false. +export KORD_XX=9 +export KORD_TM=-9 +export D_CON=1. +export HORD_XX=5 +export HORD_DP=-5 +export HORD_TR=8 # Radiation export DO_RRTMGP=.false. diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 7788869a56..3476a24c88 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Sun May 12 12:30:46 UTC 2024 +Mon May 13 18:14:19 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/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 = 274.685635 - 0: The maximum resident set size (KB) = 1268520 + 0: The total amount of wall time = 270.538118 + 0: The maximum resident set size (KB) = 1254096 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/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 = 961.766801 - 0: The maximum resident set size (KB) = 1234336 + 0: The total amount of wall time = 975.476688 + 0: The maximum resident set size (KB) = 1230856 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/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 = 239.860027 - 0: The maximum resident set size (KB) = 1250884 + 0: The total amount of wall time = 237.920448 + 0: The maximum resident set size (KB) = 1231760 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/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 = 241.404044 - 0: The maximum resident set size (KB) = 1246748 + 0: The total amount of wall time = 238.597717 + 0: The maximum resident set size (KB) = 1233284 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/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 = 242.962682 - 0: The maximum resident set size (KB) = 1249268 + 0: The total amount of wall time = 237.803525 + 0: The maximum resident set size (KB) = 1234508 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/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 = 237.070887 - 0: The maximum resident set size (KB) = 1238956 + 0: The total amount of wall time = 241.082583 + 0: The maximum resident set size (KB) = 1232320 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/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 = 237.482893 - 0: The maximum resident set size (KB) = 1245620 + 0: The total amount of wall time = 246.042458 + 0: The maximum resident set size (KB) = 1232080 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sun May 12 13:33:32 UTC 2024 -Elapsed time: 01h:02m:46s. Have a nice day! +Mon May 13 19:16:46 UTC 2024 +Elapsed time: 01h:02m:28s. 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 4a9c079313..5a5ebcd930 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon May 13 12:14:02 UTC 2024 +Tue May 14 03:58:00 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/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 = 1419.286675 - 0: The maximum resident set size (KB) = 1344244 + 0: The total amount of wall time = 1357.491643 + 0: The maximum resident set size (KB) = 1368672 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/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 = 385.831343 - 0: The maximum resident set size (KB) = 1341548 + 0: The total amount of wall time = 388.602017 + 0: The maximum resident set size (KB) = 1356348 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/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 = 389.117762 - 0: The maximum resident set size (KB) = 1343228 + 0: The total amount of wall time = 392.294030 + 0: The maximum resident set size (KB) = 1358828 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon May 13 13:13:57 UTC 2024 -Elapsed time: 00h:59m:55s. Have a nice day! +Tue May 14 04:56:24 UTC 2024 +Elapsed time: 00h:58m:24s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log b/tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log new file mode 100644 index 0000000000..2372e020a4 --- /dev/null +++ b/tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log @@ -0,0 +1,126 @@ + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1959771/rst_rst +Checking test rst results .... + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + + 0: The total amount of wall time = 1001.529109 + 0: The maximum resident set size (KB) = 1728376 + +Test rst PASS + +Mon May 13 19:39:40 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1277.784752 + 0: The maximum resident set size (KB) = 1309112 + +Test bit_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/sfcf021.nc + Moving sfcf024.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/sfcf024.nc + Moving atmf021.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/atmf021.nc + Moving atmf024.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/atmf024.nc + Moving GFSFLX.GrbF21 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSFLX.GrbF21 + Moving GFSFLX.GrbF24 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSFLX.GrbF24 + Moving GFSPRS.GrbF21 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSPRS.GrbF21 + Moving GFSPRS.GrbF24 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSPRS.GrbF24 + + +Test dbg_base FAIL + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1316.780909 + 0: The maximum resident set size (KB) = 1297596 + +Test std_base PASS + +FAILED TESTS: +Test dbg_base failed in check_result failed +Test dcp failed in check_result failed +Test rst failed in check_result failed +OPERATION REQUIREMENT TEST FAILED +Mon May 13 23:18:35 UTC 2024 +Elapsed time: 03h:38m:57s. Have a nice day! +Mon May 13 23:52:01 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3335353/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 3225.706174 + 0: The maximum resident set size (KB) = 1322788 + +Test dbg_base PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Tue May 14 00:50:40 UTC 2024 +Elapsed time: 00h:58m:40s. Have a nice day! + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3478207/dcp_dcp +Checking test dcp results .... + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + + 0: The total amount of wall time = 1556.575445 + 0: The maximum resident set size (KB) = 1314156 + +Test dcp PASS + diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 41329d28f6..78733d81a4 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Sun May 12 21:58:20 UTC 2024 +Tue May 14 12:09:43 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4046824/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving dynf000.nc .........OK @@ -15,20 +15,32 @@ Moving baseline bit_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1390.059976 - 0: The maximum resident set size (KB) = 576080 + 0: The total amount of wall time = 1347.763107 + 0: The maximum resident set size (KB) = 583388 Test bit_base PASS -OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sun May 12 22:27:02 UTC 2024 -Elapsed time: 00h:28m:42s. Have a nice day! -Sun May 12 22:54:29 UTC 2024 -Start Operation Requirement Test + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/dcp_dcp +Checking test dcp results .... + Comparing dynf000.nc .....USING NCCMP......OK + Comparing dynf006.nc .....USING NCCMP......OK + Comparing phyf000.nc .....USING NCCMP......OK + Comparing phyf006.nc .....USING NCCMP......OK + Comparing PRSLEV.GrbF00 .....USING CMP......OK + Comparing PRSLEV.GrbF06 .....USING CMP......OK + Comparing NATLEV.GrbF00 .....USING CMP......OK + Comparing NATLEV.GrbF06 .....USING CMP......OK + + 0: The total amount of wall time = 2795.464199 + 0: The maximum resident set size (KB) = 541676 + +Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_56239/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -40,14 +52,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2241.535310 - 0: The maximum resident set size (KB) = 542212 + 0: The total amount of wall time = 2362.646234 + 0: The maximum resident set size (KB) = 541132 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_56239/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -58,54 +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 = 2211.134928 - 0: The maximum resident set size (KB) = 542148 + 0: The total amount of wall time = 2378.042584 + 0: The maximum resident set size (KB) = 541716 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon May 13 00:16:03 UTC 2024 -Elapsed time: 01h:21m:34s. Have a nice day! -Mon May 13 03:04:00 UTC 2024 -Start Operation Requirement Test - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1227404/dcp_dcp -Checking test dcp results .... - Comparing dynf000.nc .....USING NCCMP......OK - Comparing dynf006.nc .....USING NCCMP......OK - Comparing phyf000.nc .....USING NCCMP......OK - Comparing phyf006.nc .....USING NCCMP......OK - Comparing PRSLEV.GrbF00 .....USING CMP......OK - Comparing PRSLEV.GrbF06 .....USING CMP......OK - Comparing NATLEV.GrbF00 .....USING CMP......OK - Comparing NATLEV.GrbF06 .....USING CMP......OK - - 0: The total amount of wall time = 2157.558307 - 0: The maximum resident set size (KB) = 546728 - -Test dcp PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1227404/std_base_std_base -Checking test std_base results .... -Moving baseline std_base files .... - Moving dynf000.nc .........OK - Moving dynf006.nc .........OK - Moving phyf000.nc .........OK - Moving phyf006.nc .........OK - Moving PRSLEV.GrbF00 .........OK - Moving PRSLEV.GrbF06 .........OK - Moving NATLEV.GrbF00 .........OK - Moving NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 2148.505696 - 0: The maximum resident set size (KB) = 543380 - -Test std_base PASS - -OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon May 13 04:21:22 UTC 2024 -Elapsed time: 01h:17m:22s. Have a nice day! +Tue May 14 14:52:00 UTC 2024 +Elapsed time: 02h:42m:17s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index db9e35c572..b6a7a66536 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: -11f08c4352632e1432d9c38e6d066387da2828e1 +c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) + aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,266 +36,338 @@ 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-20240503 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_210135 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_188435 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:22, 10:08] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [51:27, 01:23](3047 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:28, 15:44] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [45:10, 01:31](1655 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:12, 01:10](1777 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [19:08, 01:32](911 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [45:00, 02:02](1631 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:16, 03:43] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [57:34, 01:06](1673 MB) - -PASS -- COMPILE 's2swa_intel' [10:22, 10:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [51:27, 01:20](3076 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [51:27, 01:30](3077 MB) -PASS -- TEST 'cpld_restart_p8_intel' [43:04, 01:27](3131 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [51:27, 01:23](3096 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [43:03, 01:23](3149 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [51:27, 01:03](3384 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [51:27, 01:26](3072 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [51:28, 01:24](3001 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [51:27, 00:55](3074 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [51:27, 00:48](3042 MB) - -PASS -- COMPILE 's2sw_intel' [10:22, 09:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [51:27, 00:51](1653 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:27, 00:57](1695 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:22, 09:05] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [42:35, 01:02](1700 MB) - -PASS -- COMPILE 's2s_intel' [09:21, 09:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [52:27, 00:41](2678 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [52:27, 00:28](2696 MB) -PASS -- TEST 'cpld_restart_c48_intel' [49:34, 01:18](2130 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:27, 14:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [44:30, 01:28](3076 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:27, 15:11] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [43:57, 01:11](1671 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:32, 01:14](969 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:28, 00:36](1644 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:10] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [56:32, 01:28](1683 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:22, 09:09] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [48:10, 01:09](637 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [48:10, 01:07](1527 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:10, 01:08](1546 MB) -PASS -- TEST 'control_latlon_intel' [48:10, 00:57](1540 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:10, 01:04](1534 MB) -PASS -- TEST 'control_c48_intel' [48:09, 00:47](1616 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [48:09, 01:18](742 MB) -PASS -- TEST 'control_c192_intel' [48:10, 01:14](1650 MB) -PASS -- TEST 'control_c384_intel' [48:14, 01:52](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [48:14, 01:40](1157 MB) -PASS -- TEST 'control_stochy_intel' [48:10, 00:48](596 MB) -PASS -- TEST 'control_stochy_restart_intel' [41:40, 00:55](397 MB) -PASS -- TEST 'control_lndp_intel' [48:10, 00:37](592 MB) -PASS -- TEST 'control_iovr4_intel' [48:10, 00:26](588 MB) -PASS -- TEST 'control_iovr5_intel' [48:10, 01:02](587 MB) -PASS -- TEST 'control_p8_intel' [48:10, 01:03](1562 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [43:55, 01:31](1563 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [43:09, 01:12](1575 MB) -PASS -- TEST 'control_restart_p8_intel' [33:29, 01:29](758 MB) -PASS -- TEST 'control_noqr_p8_intel' [41:40, 01:55](1557 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [28:12, 01:13](760 MB) -PASS -- TEST 'control_decomp_p8_intel' [40:50, 01:02](1561 MB) -PASS -- TEST 'control_2threads_p8_intel' [40:37, 00:58](1653 MB) -PASS -- TEST 'control_p8_lndp_intel' [38:45, 00:29](1573 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [38:35, 01:26](1625 MB) -PASS -- TEST 'control_p8_mynn_intel' [37:47, 01:14](1572 MB) -PASS -- TEST 'merra2_thompson_intel' [36:48, 01:48](1573 MB) -PASS -- TEST 'regional_control_intel' [36:31, 00:44](631 MB) -PASS -- TEST 'regional_restart_intel' [24:46, 00:24](800 MB) -PASS -- TEST 'regional_decomp_intel' [21:24, 00:20](632 MB) -PASS -- TEST 'regional_2threads_intel' [35:07, 00:25](728 MB) -PASS -- TEST 'regional_noquilt_intel' [34:53, 00:47](1167 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [34:01, 00:25](634 MB) -PASS -- TEST 'regional_wofs_intel' [32:17, 00:39](1609 MB) - -PASS -- COMPILE 'ifi_intel' [08:21, 07:56] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [31:44, 01:02](631 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [31:04, 00:19](631 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [30:37, 00:52](727 MB) - -PASS -- COMPILE 'rrfs_intel' [09:22, 08:39] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [30:29, 01:25](974 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:45, 00:29](1154 MB) -PASS -- TEST 'rap_decomp_intel' [29:11, 01:30](975 MB) -PASS -- TEST 'rap_2threads_intel' [28:29, 00:44](1061 MB) -PASS -- TEST 'rap_restart_intel' [21:12, 01:54](843 MB) -PASS -- TEST 'rap_sfcdiff_intel' [28:29, 01:17](971 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [28:12, 00:55](972 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [19:13, 01:11](845 MB) -PASS -- TEST 'hrrr_control_intel' [28:04, 01:19](964 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [27:44, 01:01](970 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [27:14, 01:10](1052 MB) -PASS -- TEST 'hrrr_control_restart_intel' [21:50, 00:22](795 MB) -PASS -- TEST 'rrfs_v1beta_intel' [26:28, 01:36](970 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [26:28, 00:54](1931 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:26, 01:02](1920 MB) - -PASS -- COMPILE 'csawmg_intel' [09:21, 08:20] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [26:11, 00:55](662 MB) - -PASS -- COMPILE 'wam_intel' [42:59, 08:04] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [00:05, 00:35](332 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:41] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [25:53, 01:37](1560 MB) -PASS -- TEST 'regional_control_faster_intel' [25:49, 00:30](628 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 03:58] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [25:16, 00:27](1560 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:58, 01:00](1564 MB) -PASS -- TEST 'control_stochy_debug_intel' [23:52, 00:56](764 MB) -PASS -- TEST 'control_lndp_debug_intel' [23:49, 01:03](775 MB) -PASS -- TEST 'control_csawmg_debug_intel' [22:09, 01:06](801 MB) -PASS -- TEST 'control_ras_debug_intel' [21:50, 00:35](774 MB) -PASS -- TEST 'control_diag_debug_intel' [20:35, 01:10](1626 MB) -PASS -- TEST 'control_debug_p8_intel' [20:34, 00:57](1595 MB) -PASS -- TEST 'regional_debug_intel' [19:36, 00:43](673 MB) -PASS -- TEST 'rap_control_debug_intel' [19:17, 00:27](1147 MB) -PASS -- TEST 'hrrr_control_debug_intel' [19:13, 00:37](1139 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [18:27, 00:59](1141 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [18:25, 00:33](1144 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [18:24, 00:28](1146 MB) -PASS -- TEST 'rap_diag_debug_intel' [17:13, 00:31](1229 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [17:12, 00:30](1147 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:57, 00:27](1148 MB) -PASS -- TEST 'rap_lndp_debug_intel' [16:30, 01:04](1148 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [16:07, 01:00](1145 MB) -PASS -- TEST 'rap_noah_debug_intel' [15:56, 00:26](1143 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [15:56, 00:27](1145 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:53, 01:09](1146 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [15:50, 01:11](1137 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [15:31, 01:10](1147 MB) -PASS -- TEST 'rap_flake_debug_intel' [14:58, 00:28](1145 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:04, 01:21](1150 MB) - -PASS -- COMPILE 'wam_debug_intel' [40:56, 02:51] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:13, 01:02](376 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [45:01, 08:08] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:21, 00:53](1020 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:20, 01:26](853 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:20, 01:58](849 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:20, 01:52](913 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [01:21, 01:56](904 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [01:20, 01:38](852 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:59, 01:33](747 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:17, 00:44](732 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [48:03, 10:16] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [58:18, 00:38](1061 MB) -PASS -- TEST 'conus13km_2threads_intel' [27:59, 00:17](1041 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [27:58, 00:55](941 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [44:59, 08:17] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [00:21, 01:21](873 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [37:51, 03:02] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:13, 01:08](1026 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 00:14](1021 MB) -PASS -- TEST 'conus13km_debug_intel' [05:13, 00:58](1112 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [05:13, 00:41](789 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [05:14, 00:31](1087 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:13, 00:17](1184 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:53, 02:55] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:10, 01:07](1046 MB) - -PASS -- COMPILE 'hafsw_intel' [43:57, 09:17] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [46:28, 01:45](674 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [58:10, 00:38](1027 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [58:08, 02:01](712 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [58:08, 01:35](761 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [58:09, 02:06](769 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [58:08, 01:30](441 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:09, 02:04](464 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [58:09, 01:02](339 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [58:12, 02:38](400 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [58:08, 00:41](479 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:08, 00:56](479 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [58:10, 01:24](537 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [58:09, 01:09](370 MB) -PASS -- TEST 'gnv1_nested_intel' [57:41, 01:17](733 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [37:51, 03:19] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:15, 01:04](571 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [40:55, 09:30] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [56:37, 01:12](577 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [55:26, 01:23](752 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:23, 09:33] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:24, 01:03](755 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:22, 09:00] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [52:37, 01:29](714 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [51:00, 02:08](698 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [50:04, 00:47](897 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:22, 08:38] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [48:08, 00:34](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [43:46, 00:11](749 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [48:08, 00:45](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [46:01, 00:17](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [45:19, 00:46](641 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [44:56, 00:42](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [43:47, 00:37](762 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [43:07, 01:03](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [42:52, 00:47](645 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [42:25, 01:13](627 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:40, 00:18](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [40:59, 00:50](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [40:36, 00:56](2025 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:24, 07:46] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [40:16, 00:11](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:13, 00:50] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:07, 00:45](266 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:07, 00:49](412 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [39:57, 00:12](411 MB) - -PASS -- COMPILE 'atml_intel' [11:23, 09:45] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:24, 01:48](1608 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [39:09, 01:53](1611 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [28:45, 00:27](803 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:17, 03:33] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [38:27, 01:20](1631 MB) - -PASS -- COMPILE 'atmw_intel' [10:23, 08:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:00, 01:38](1611 MB) - -PASS -- COMPILE 'atmaero_intel' [11:23, 08:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [37:21, 01:42](2916 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [36:04, 01:25](2983 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [35:38, 01:09](2991 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:20, 03:03] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [34:56, 01:20](4501 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:25, 10:15] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:36, 01:15](3046 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:14] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [44:31, 01:59](1652 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:42, 02:01](1777 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [26:23, 01:25](908 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:32, 01:37](1633 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 15:46] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [28:39, 00:49](1648 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:16, 03:46] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [56:45, 01:53](1684 MB) + +PASS -- COMPILE 's2swa_intel' [10:24, 10:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [38:36, 00:50](3074 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:35, 01:04](3074 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:03, 01:02](3131 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [37:16, 00:50](3098 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:54, 01:31](3150 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [36:33, 01:22](3387 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [36:33, 01:46](3073 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [35:26, 01:02](2998 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [31:44, 01:13](3075 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [30:46, 01:18](3039 MB) + +PASS -- COMPILE 's2sw_intel' [10:23, 09:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [50:37, 00:51](1650 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [50:37, 00:56](1699 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:25, 10:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [49:36, 00:57](1698 MB) + +PASS -- COMPILE 's2s_intel' [09:23, 09:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [51:37, 00:44](2679 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_warmstart_c48_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_c48_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:30, 14:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [45:31, 01:37](3075 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:30, 01:12](1670 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:12, 00:44](971 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:04, 01:32](1646 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:30] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:28, 01:29](1697 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:14] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [42:04, 01:04](637 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [42:04, 00:47](1537 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:04, 00:27](1542 MB) +PASS -- TEST 'control_latlon_intel' [42:04, 00:52](1536 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [42:04, 00:34](1533 MB) +PASS -- TEST 'control_c48_intel' [42:03, 00:48](1615 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [42:03, 00:48](740 MB) +PASS -- TEST 'control_c192_intel' [42:04, 01:19](1650 MB) +PASS -- TEST 'control_c384_intel' [42:08, 01:29](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [42:08, 02:06](1149 MB) +PASS -- TEST 'control_stochy_intel' [42:04, 00:16](593 MB) +PASS -- TEST 'control_stochy_restart_intel' [25:19, 00:51](395 MB) +PASS -- TEST 'control_lndp_intel' [42:04, 01:04](592 MB) +PASS -- TEST 'control_iovr4_intel' [42:04, 00:24](587 MB) +PASS -- TEST 'control_iovr5_intel' [42:04, 00:24](587 MB) +PASS -- TEST 'control_p8_intel' [42:04, 01:01](1569 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:47, 01:11](1573 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [42:04, 01:14](1562 MB) +PASS -- TEST 'control_restart_p8_intel' [24:08, 01:08](751 MB) +PASS -- TEST 'control_noqr_p8_intel' [42:04, 01:15](1556 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [21:17, 00:45](759 MB) +PASS -- TEST 'control_decomp_p8_intel' [42:04, 01:36](1562 MB) +PASS -- TEST 'control_2threads_p8_intel' [42:04, 01:34](1656 MB) +PASS -- TEST 'control_p8_lndp_intel' [25:18, 00:25](1573 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [25:09, 01:17](1620 MB) +PASS -- TEST 'control_p8_mynn_intel' [24:35, 01:27](1577 MB) +PASS -- TEST 'merra2_thompson_intel' [23:19, 01:22](1570 MB) +PASS -- TEST 'regional_control_intel' [22:44, 00:54](632 MB) +PASS -- TEST 'regional_restart_intel' [06:48, 01:00](800 MB) +PASS -- TEST 'regional_decomp_intel' [22:40, 01:00](631 MB) +PASS -- TEST 'regional_2threads_intel' [22:32, 00:38](733 MB) +PASS -- TEST 'regional_noquilt_intel' [22:03, 00:30](1167 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [21:37, 00:20](634 MB) +PASS -- TEST 'regional_wofs_intel' [21:24, 00:13](1603 MB) + +PASS -- COMPILE 'ifi_intel' [08:21, 08:01] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [43:15, 00:50](635 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [43:15, 00:37](629 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [43:16, 00:48](727 MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 08:45] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [21:17, 01:18](975 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:18, 00:39](1152 MB) +PASS -- TEST 'rap_decomp_intel' [20:03, 01:31](974 MB) +PASS -- TEST 'rap_2threads_intel' [19:49, 01:07](1060 MB) +PASS -- TEST 'rap_restart_intel' [07:54, 01:52](841 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:03, 02:06](972 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:59, 01:49](970 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:36, 01:37](841 MB) +PASS -- TEST 'hrrr_control_intel' [15:56, 01:05](969 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:29, 00:51](973 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [15:27, 01:57](1048 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:42, 00:53](803 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:15, 01:08](968 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:03, 00:51](1936 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:54, 01:10](1919 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:21] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [13:44, 00:59](661 MB) + +PASS -- COMPILE 'wam_intel' [08:22, 08:06] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [13:11, 00:19](333 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 08:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [12:44, 00:56](1564 MB) +PASS -- TEST 'regional_control_faster_intel' [12:32, 00:12](629 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:17, 04:02] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:23, 00:33](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:18, 00:29](1562 MB) +PASS -- TEST 'control_stochy_debug_intel' [12:16, 00:54](764 MB) +PASS -- TEST 'control_lndp_debug_intel' [12:13, 01:09](764 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:50, 00:33](803 MB) +PASS -- TEST 'control_ras_debug_intel' [11:39, 00:22](772 MB) +PASS -- TEST 'control_diag_debug_intel' [08:36, 01:06](1624 MB) +PASS -- TEST 'control_debug_p8_intel' [08:32, 00:34](1599 MB) +PASS -- TEST 'regional_debug_intel' [07:38, 00:20](672 MB) +PASS -- TEST 'rap_control_debug_intel' [06:51, 00:23](1147 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:44, 00:28](1136 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:43, 01:10](1142 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:41, 01:00](1143 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:54, 00:39](1147 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:26, 00:34](1226 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:00, 00:44](1145 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:48, 00:36](1145 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:46, 00:38](1148 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:36, 00:43](1145 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:33, 00:24](1142 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:25, 00:29](1142 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [04:14, 00:17](1143 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:11, 00:36](1135 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [03:42, 00:51](1143 MB) +PASS -- TEST 'rap_flake_debug_intel' [03:31, 00:38](1142 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [03:22, 01:54](1151 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:16, 02:59] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [54:24, 00:51](375 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 08:07] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:49, 00:41](1016 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [02:08, 01:30](853 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:59, 01:30](849 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:13, 01:24](911 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:26, 02:10](904 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:16, 01:11](850 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [51:54, 01:00](751 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:24, 00:58](732 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 10:14] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [59:39, 01:14](1060 MB) +PASS -- TEST 'conus13km_2threads_intel' [54:52, 00:59](1040 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [54:42, 00:37](939 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [46:59, 08:17] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [45:07, 00:38](873 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 02:57] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:27, 00:31](1020 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [59:13, 00:36](1024 MB) +PASS -- TEST 'conus13km_debug_intel' [59:11, 01:16](1113 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [58:51, 01:08](789 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [58:35, 01:01](1090 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:25, 00:18](1181 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:20, 02:55] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:23, 00:48](1047 MB) + +PASS -- COMPILE 'hafsw_intel' [14:29, 09:11] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [58:23, 02:02](677 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [58:13, 01:05](1027 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [58:07, 01:54](708 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [56:59, 01:47](764 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:21, 02:01](772 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [55:52, 00:57](437 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [54:16, 02:10](465 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [54:04, 01:10](339 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [54:07, 02:23](405 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [53:45, 01:29](476 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:38, 01:28](476 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:15, 00:43](542 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:03, 00:54](370 MB) +PASS -- TEST 'gnv1_nested_intel' [51:59, 00:54](731 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:21, 03:14] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [49:01, 00:47](576 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:35] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [48:37, 00:46](584 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [47:52, 01:09](753 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:29, 09:21] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [47:43, 00:51](755 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:24, 08:53] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [44:41, 01:39](715 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [44:13, 02:06](699 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [41:57, 01:08](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:23, 07:32] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [41:19, 00:42](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [37:58, 00:46](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [39:35, 00:42](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [36:52, 00:49](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [36:33, 00:29](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [36:31, 00:47](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [36:26, 00:50](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [36:15, 00:11](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [34:55, 01:06](647 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:50, 00:37](632 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [34:37, 00:51](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [33:32, 00:13](2019 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [31:53, 00:41](2016 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 08:38] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [31:36, 00:44](762 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [39:54, 00:53] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [30:38, 01:04](276 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [30:29, 00:59](410 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [27:02, 00:44](410 MB) + +PASS -- COMPILE 'atml_intel' [50:05, 09:44] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [29:42, 01:23](1610 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [29:07, 01:51](1605 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [21:44, 00:27](806 MB) + +PASS -- COMPILE 'atml_debug_intel' [40:58, 03:36] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [28:36, 01:32](1635 MB) + +PASS -- COMPILE 'atmw_intel' [46:00, 08:45] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [28:26, 00:59](1609 MB) + +PASS -- COMPILE 'atmaero_intel' [47:05, 08:30] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [28:09, 00:48](2922 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [27:04, 01:15](2975 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:02, 01:36](2987 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [40:58, 03:01] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:35, 00:44](4512 MB) SYNOPSIS: -Starting Date/Time: 20240509 10:57:51 -Ending Date/Time: 20240509 12:51:12 -Total Time: 01h:53m:37s -Compiles Completed: 36/36 -Tests Completed: 176/176 +Starting Date/Time: 20240514 18:58:41 +Ending Date/Time: 20240514 20:59:35 +Total Time: 02h:01m:11s +Compiles Completed: 37/37 +Tests Completed: 175/177 +Failed Tests: +* TEST cpld_warmstart_c48_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/XiaqiongZhou-NOAA/ufs-weather-model/tests/logs/log_acorn/run_cpld_warmstart_c48_intel.log +* TEST cpld_restart_c48_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A + +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: +c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) + aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +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-20240503 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_195507 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2s_intel' [09:22, 09:02] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_warmstart_c48_intel' [10:31, 01:25](1487 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:35, 01:10](2132 MB) + +SYNOPSIS: +Starting Date/Time: 20240515 15:39:57 +Ending Date/Time: 20240515 15:56:26 +Total Time: 00h:16m:39s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index aca7db6a29..f5ed43ee9f 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: -57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa +c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) + aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,288 +36,286 @@ 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-20240503 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_111254 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_19059 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:25, 20:12] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:45, 04:54](3072 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:25, 21:20] ( 6 warnings 10 remarks ) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:05, 15:44](1659 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:21, 10:05] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:45, 21:23](1693 MB) - -PASS -- COMPILE 's2swa_intel' [20:23, 19:56] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:02, 05:35](3090 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:19, 05:35](3092 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:22, 03:16](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:02, 05:33](3125 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:23, 03:16](3181 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:56, 05:32](3094 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:58, 04:33](3399 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:16, 05:34](3102 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:21, 08:52](3634 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:20, 05:59](3611 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:40, 09:46](4341 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:57, 07:08](4650 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:44, 05:17](3068 MB) - -PASS -- COMPILE 's2sw_intel' [20:25, 19:20] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:41, 04:12](1680 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:54, 04:13](1729 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:21, 09:46] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:53, 07:41](3155 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:22, 09:17] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:32, 05:14](1706 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:22, 14:30] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:34, 04:19](1727 MB) - -PASS -- COMPILE 's2s_intel' [15:22, 14:44] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:19, 06:34](2668 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 02:00](2684 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:19, 01:10](2123 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:26, 23:19] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:55, 05:28](3103 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:15, 20:13] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:51, 13:59](1703 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:01, 07:16](1017 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:50, 16:01](1675 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:13, 09:16] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:27, 22:56](1717 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:19, 12:56] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:38, 03:24](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:31, 02:24](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:50, 02:29](1575 MB) -PASS -- TEST 'control_latlon_intel' [04:28, 02:23](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:26](1568 MB) -PASS -- TEST 'control_c48_intel' [08:34, 06:12](1621 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 05:14](737 MB) -PASS -- TEST 'control_c192_intel' [11:08, 08:38](1692 MB) -PASS -- TEST 'control_c384_intel' [16:46, 08:56](2003 MB) -PASS -- TEST 'control_c384gdas_intel' [17:34, 07:18](1204 MB) -PASS -- TEST 'control_stochy_intel' [02:37, 01:24](625 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:36, 00:51](441 MB) -PASS -- TEST 'control_lndp_intel' [02:46, 01:21](627 MB) -PASS -- TEST 'control_iovr4_intel' [03:51, 02:04](622 MB) -PASS -- TEST 'control_iovr5_intel' [03:44, 02:05](623 MB) -PASS -- TEST 'control_p8_intel' [04:47, 02:29](1595 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:40, 02:27](1594 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:33, 02:27](1605 MB) -PASS -- TEST 'control_restart_p8_intel' [03:32, 01:25](802 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:43, 02:29](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:26, 01:23](808 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:34](1598 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:22, 04:20](1596 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:42, 03:17](1654 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:29, 02:31](1614 MB) -PASS -- TEST 'merra2_thompson_intel' [04:41, 02:47](1611 MB) -PASS -- TEST 'regional_control_intel' [06:12, 04:28](628 MB) -PASS -- TEST 'regional_restart_intel' [04:03, 02:31](807 MB) -PASS -- TEST 'regional_decomp_intel' [06:09, 04:43](628 MB) -PASS -- TEST 'regional_noquilt_intel' [06:06, 04:25](1165 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:06, 04:29](624 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:02, 04:31](628 MB) -PASS -- TEST 'regional_wofs_intel' [07:07, 05:40](1606 MB) - -PASS -- COMPILE 'rrfs_intel' [12:14, 11:27] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:28, 06:08](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:38, 03:41](1204 MB) -PASS -- TEST 'rap_decomp_intel' [08:28, 06:22](1004 MB) -PASS -- TEST 'rap_restart_intel' [05:20, 03:13](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:28, 06:04](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 06:23](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:15, 04:35](882 MB) -PASS -- TEST 'hrrr_control_intel' [05:06, 03:14](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:06, 03:18](1002 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:47](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:44, 01:45](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:29, 05:57](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:56, 07:22](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:59, 07:08](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [11:14, 10:21] ( 6 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:53, 05:49](695 MB) -PASS -- TEST 'control_ras_intel' [04:25, 02:53](656 MB) - -PASS -- COMPILE 'wam_intel' [10:13, 09:40] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:24, 01:54](383 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:14, 12:39] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:37, 02:25](1599 MB) -PASS -- TEST 'regional_control_faster_intel' [06:06, 04:16](625 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:20, 08:50] ( 890 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:10, 02:34](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:15, 02:28](1598 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:42, 02:54](800 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:34, 02:35](801 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:14, 03:59](838 MB) -PASS -- TEST 'control_ras_debug_intel' [03:43, 02:36](811 MB) -PASS -- TEST 'control_diag_debug_intel' [05:28, 02:36](1653 MB) -PASS -- TEST 'control_debug_p8_intel' [04:05, 02:36](1629 MB) -PASS -- TEST 'regional_debug_intel' [18:01, 16:42](663 MB) -PASS -- TEST 'rap_control_debug_intel' [05:33, 04:43](1180 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:38](1177 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:33, 04:40](1178 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_c3_debug_intel' [, ]( MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:37, 04:40](1180 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:12, 04:50](1266 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 04:49](1187 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:40, 04:39](1183 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 04:40](1180 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:41, 04:33](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:37, 04:38](1184 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:26, 07:37](1181 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:43, 04:34](1173 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 05:34](1182 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:38, 04:37](1183 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:12, 07:54](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:12, 05:34] ( 860 warnings ) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 09:58] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:48, 03:31](1058 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:16, 05:06](884 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:04, 02:45](881 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 02:54](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:52](798 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:31](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:13, 12:00] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:17, 01:51](1084 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:57](1084 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:09](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:19, 09:48] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:56, 03:38](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 05:53] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:42, 04:38](1058 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:44, 04:21](1055 MB) -PASS -- TEST 'conus13km_debug_intel' [16:29, 13:24](1136 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:30, 13:28](820 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 13:27](1202 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 05:36] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:44, 04:41](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [17:15, 16:14] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:32, 04:33](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 05:03](1070 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:24](778 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 10:54](802 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:44, 11:59](816 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 04:40](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:38, 05:49](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 02:21](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:50, 06:13](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:08, 03:20](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:25, 03:05](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:32, 03:47](590 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:13](428 MB) -PASS -- TEST 'gnv1_nested_intel' [05:12, 03:23](791 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:27] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:10, 12:00](617 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:22, 19:46] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:20, 07:05](638 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:50, 07:08](693 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:20, 16:58] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:34, 05:26](677 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:13, 14:19] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:37, 05:36](757 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:28, 05:36](740 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:23, 16:15](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:18, 07:58] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:29](749 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 01:33](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:21](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:25](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:24, 02:23](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:39, 02:31](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:25, 02:31](750 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:30, 02:21](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:32, 05:41](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:40, 05:40](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:23, 02:28](758 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:25, 03:55](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:31, 03:56](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:17, 05:07] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:27, 05:02](747 MB) - -FAILED: UNABLE TO COMPILE -- COMPILE 'datm_cdeps_faster_intel' [, ] -FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_control_cfsr_faster_intel' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:26] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:35, 01:09](304 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:04](453 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:42](452 MB) - -PASS -- COMPILE 'atml_intel' [14:22, 13:05] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 05:49](1633 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:32, 05:44](1634 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:06, 03:15](853 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:17, 07:47] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:26, 05:29](1658 MB) - -PASS -- COMPILE 'atmw_intel' [14:20, 12:57] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:13, 01:32](1637 MB) - -PASS -- COMPILE 'atmaero_intel' [12:20, 11:28] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:40, 03:37](2948 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:36, 04:14](3002 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 04:21](3012 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:33] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:19, 21:58](4531 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:22, 20:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:35, 04:55](3074 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:24, 22:12] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:36, 13:42](1696 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 15:08](1829 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:45, 07:18](961 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:29, 15:44](1660 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:24, 21:21] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:07, 13:36](1692 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:21, 10:35] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:13, 21:20](1693 MB) + +PASS -- COMPILE 's2swa_intel' [21:23, 20:49] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:20, 05:41](3093 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:42, 05:38](3092 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:18, 03:23](3149 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:41, 05:37](3123 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:41, 03:21](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:16, 05:15](3679 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:16, 05:33](3089 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 04:36](3395 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:44, 05:35](3101 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:33, 08:51](3636 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:32, 06:03](3618 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [32:06, 09:55](4343 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:55, 07:49](4649 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:09, 05:16](3063 MB) + +PASS -- COMPILE 's2sw_intel' [21:23, 20:13] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:57, 04:11](1683 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:06, 04:13](1736 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:20, 10:37] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:27, 07:37](3154 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:20, 10:07] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:55, 05:13](1710 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:21, 15:45] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:37, 04:16](1729 MB) + +PASS -- COMPILE 's2s_intel' [17:23, 16:14] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:12, 06:34](2666 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:14, 01:59](2689 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:08, 01:09](2127 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:22, 23:09] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:45, 05:29](3101 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:21, 19:31] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:54, 14:06](1699 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:41, 07:26](1017 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 16:06](1667 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:18, 08:43] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:00, 23:10](1716 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:30] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:44, 03:24](672 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:25](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:29](1570 MB) +PASS -- TEST 'control_latlon_intel' [04:16, 02:24](1574 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:26](1565 MB) +PASS -- TEST 'control_c48_intel' [08:12, 06:15](1616 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:17](738 MB) +PASS -- TEST 'control_c192_intel' [11:11, 08:43](1690 MB) +PASS -- TEST 'control_c384_intel' [16:39, 09:07](2006 MB) +PASS -- TEST 'control_c384gdas_intel' [18:49, 07:24](1198 MB) +PASS -- TEST 'control_stochy_intel' [02:49, 01:26](630 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:00](440 MB) +PASS -- TEST 'control_lndp_intel' [02:49, 01:22](625 MB) +PASS -- TEST 'control_iovr4_intel' [04:47, 02:11](624 MB) +PASS -- TEST 'control_iovr5_intel' [03:38, 02:06](626 MB) +PASS -- TEST 'control_p8_intel' [04:52, 02:30](1606 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:55, 02:29](1598 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:45, 02:30](1601 MB) +PASS -- TEST 'control_restart_p8_intel' [03:40, 01:27](804 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:46, 02:28](1587 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:22](806 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:32, 02:34](1590 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:02, 02:19](1686 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:03, 04:22](1604 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:09, 03:20](1662 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:04, 02:32](1604 MB) +PASS -- TEST 'merra2_thompson_intel' [06:02, 02:50](1607 MB) +PASS -- TEST 'regional_control_intel' [06:29, 04:32](633 MB) +PASS -- TEST 'regional_restart_intel' [04:22, 02:33](799 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'regional_decomp_intel' [, ]( MB) +PASS -- TEST 'regional_noquilt_intel' [06:25, 04:24](1157 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:22, 04:31](630 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:15, 04:31](628 MB) +PASS -- TEST 'regional_wofs_intel' [07:14, 05:41](1604 MB) + +PASS -- COMPILE 'rrfs_intel' [12:14, 11:14] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:49, 06:09](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 03:45](1207 MB) +PASS -- TEST 'rap_decomp_intel' [08:49, 06:19](1008 MB) +PASS -- TEST 'rap_2threads_intel' [07:33, 05:39](1096 MB) +PASS -- TEST 'rap_restart_intel' [05:20, 03:12](882 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:08](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:43, 06:22](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:26, 04:34](881 MB) +PASS -- TEST 'hrrr_control_intel' [05:22, 03:13](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:18](1000 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_control_2threads_intel' [, ]( MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:52, 01:46](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:56, 05:59](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:06, 07:22](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:03, 07:08](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [14:20, 10:14] ( 6 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:20, 05:51](695 MB) +PASS -- TEST 'control_ras_intel' [04:38, 02:54](659 MB) + +PASS -- COMPILE 'wam_intel' [13:14, 09:35] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:31, 01:56](383 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:15, 12:38] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:47, 02:24](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [06:08, 04:19](625 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:15, 08:32] ( 890 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:29](1595 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:26](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:45, 02:56](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:36](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:01](840 MB) +PASS -- TEST 'control_ras_debug_intel' [03:40, 02:42](811 MB) +PASS -- TEST 'control_diag_debug_intel' [05:47, 02:35](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [04:16, 02:36](1633 MB) +PASS -- TEST 'regional_debug_intel' [18:11, 15:56](662 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'rap_control_debug_intel' [, ]( MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:52, 04:31](1179 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:46, 04:39](1182 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:45, 04:38](1183 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:46, 04:36](1181 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:49, 04:52](1267 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:45, 04:45](1182 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:42, 04:57](1186 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:41, 04:55](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:41, 04:37](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:42, 04:31](1182 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 04:42](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:50, 07:36](1179 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:38, 04:33](1178 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:40, 05:37](1185 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:48, 04:41](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:26, 08:02](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:13, 05:18] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:35, 04:35](424 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 09:41] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:29, 03:46](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:20, 05:13](884 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:12, 02:46](882 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 04:46](948 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:28](943 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 02:55](884 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:22, 03:58](797 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:54, 01:34](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:21, 11:39] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:44, 01:54](1082 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:13, 01:03](1086 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:08, 01:12](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:14, 09:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:05, 03:38](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 05:47] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:34](1063 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:47, 04:31](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [16:20, 13:15](1135 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:14, 13:29](821 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 07:52](1135 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:22](1204 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:37] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:48, 04:47](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [17:20, 16:05] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:56, 04:38](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:59, 05:17](1072 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:04, 06:33](782 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:58, 10:57](804 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:52, 12:11](809 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 04:50](475 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 06:01](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:36](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:56, 06:38](462 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:21, 03:29](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 03:11](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:33, 04:11](590 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:36, 01:27](429 MB) +PASS -- TEST 'gnv1_nested_intel' [05:35, 03:32](787 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:12, 07:17] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 12:06](621 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:22, 19:58] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:39, 07:13](635 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:19, 07:24](695 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:20, 16:38] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:55, 05:25](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:16, 14:36] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:37](752 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:35, 05:48](740 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:19, 16:14](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:45] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:37](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 01:33](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:22](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:24](637 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:44, 02:31](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:46, 02:34](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:30](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:22](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:42, 05:53](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:18, 05:46](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:29](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:03, 03:59](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:53, 04:01](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:00] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:05](744 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 07:40] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:44, 02:29](748 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:41, 01:27](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:20](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:46, 00:46](451 MB) + +PASS -- COMPILE 'atml_intel' [14:21, 13:26] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:53, 07:38](1634 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:54, 07:32](1638 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:31](853 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:17, 08:04] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:16, 05:35](1668 MB) + +PASS -- COMPILE 'atmw_intel' [14:19, 13:04] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 01:35](1637 MB) + +PASS -- COMPILE 'atmaero_intel' [12:20, 11:21] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:03, 03:38](2949 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:20](2998 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:50, 04:21](3020 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:41] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:54, 22:09](4519 MB) SYNOPSIS: -Starting Date/Time: 20240512 06:19:01 -Ending Date/Time: 20240512 07:51:11 -Total Time: 01h:33m:10s -Compiles Completed: 37/38 -Tests Completed: 168/175 -Failed Compiles: -* COMPILE datm_cdeps_faster_intel: FAILED: UNABLE TO COMPILE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/compile_datm_cdeps_faster_intel.log +Starting Date/Time: 20240514 11:25:11 +Ending Date/Time: 20240514 13:04:32 +Total Time: 01h:40m:23s +Compiles Completed: 39/39 +Tests Completed: 179/182 Failed Tests: -* TEST cpld_control_gfsv17_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_cpld_control_gfsv17_intel.log -* TEST cpld_control_gfsv17_iau_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST hrrr_c3_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_hrrr_c3_debug_intel.log -* TEST rap_cires_ugwp_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_rap_cires_ugwp_debug_intel.log -* TEST control_wam_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_control_wam_debug_intel.log -* TEST datm_cdeps_control_cfsr_faster_intel: FAILED: UNABLE TO START RUN --- LOG: N/A +* TEST regional_decomp_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_regional_decomp_intel.log +* TEST hrrr_control_2threads_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_hrrr_control_2threads_intel.log +* TEST rap_control_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_rap_control_debug_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -330,18 +328,18 @@ Result: FAILURE ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -575b7c28583dac4700e80788b5d7c8e9a12ee4df +c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) + aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -350,7 +348,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -365,32 +363,27 @@ 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-20240503 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6102 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_14710 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_intel' [06:18, 05:28] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:23, 04:42](419 MB) -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:34] ( 890 warnings 9 remarks ) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 04:50](1183 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:39](1181 MB) +PASS -- COMPILE 'atm_dyn32_intel' [14:17, 13:23] ( 6 warnings 1 remarks ) +PASS -- TEST 'regional_decomp_intel' [07:06, 04:49](632 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:22, 20:43] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:01, 13:47](1684 MB) +PASS -- COMPILE 'rrfs_intel' [13:21, 11:55] ( 8 warnings 9 remarks ) +PASS -- TEST 'hrrr_control_2threads_intel' [05:12, 02:50](1092 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:01] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:29](747 MB) +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:21, 09:17] ( 890 warnings 9 remarks ) +PASS -- TEST 'rap_control_debug_intel' [06:31, 04:45](1182 MB) SYNOPSIS: -Starting Date/Time: 20240512 15:55:41 -Ending Date/Time: 20240512 16:35:33 -Total Time: 00h:40m:03s -Compiles Completed: 4/4 -Tests Completed: 5/5 +Starting Date/Time: 20240514 13:31:19 +Ending Date/Time: 20240514 14:28:08 +Total Time: 00h:57m:05s +Compiles Completed: 3/3 +Tests Completed: 3/3 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 272aea4007..31eec5fdb0 100755 --- 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: -6a75664fc408bfd7a64311ae178ffeb12ffe7b77 +c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) + aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,277 +36,280 @@ 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-20240503 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_169283 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_222558 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:13, 22:29] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:01, 07:52](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 23:06] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [31:42, 13:28](1695 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:09, 14:43](1808 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [24:32, 07:18](945 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:55, 15:47](1669 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:11, 12:29] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:57, 23:35](1707 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 17:56] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:01, 08:31](3098 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:15, 08:27](3097 MB) -PASS -- TEST 'cpld_restart_p8_intel' [24:07, 05:03](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:00, 08:35](3121 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [24:09, 05:06](3175 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:16, 07:03](3411 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:47, 08:25](3096 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:05, 07:33](3021 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:15, 08:34](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:10, 10:33](3263 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [20:05, 07:19](3601 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [41:06, 13:39](4037 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:22, 09:11](4342 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:53, 08:18](3065 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 16:22] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:45, 04:55](1686 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 05:16](1732 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:49] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:29, 10:25](3131 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:24] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:36, 05:54](1699 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:57] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:44, 05:13](1730 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 15:56] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:17, 06:54](2657 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:16, 02:02](2682 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:07, 01:05](2112 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:13, 22:28] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:22, 08:22](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 22:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:59, 15:00](1701 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:47, 07:41](998 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:09, 17:19](1680 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 12:53] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:40, 27:39](1714 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:50] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [19:05, 04:02](670 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [23:09, 03:28](1566 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:12, 03:30](1579 MB) -PASS -- TEST 'control_latlon_intel' [21:54, 03:15](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [22:03, 03:25](1567 MB) -PASS -- TEST 'control_c48_intel' [25:16, 06:43](1601 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [25:07, 05:39](721 MB) -PASS -- TEST 'control_c192_intel' [27:54, 10:01](1692 MB) -PASS -- TEST 'control_c384_intel' [36:00, 18:19](1986 MB) -PASS -- TEST 'control_c384gdas_intel' [33:58, 14:14](1180 MB) -PASS -- TEST 'control_stochy_intel' [17:01, 02:12](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:54, 01:00](430 MB) -PASS -- TEST 'control_lndp_intel' [17:01, 02:12](628 MB) -PASS -- TEST 'control_iovr4_intel' [18:20, 02:57](623 MB) -PASS -- TEST 'control_iovr5_intel' [18:20, 02:57](623 MB) -PASS -- TEST 'control_p8_intel' [24:19, 03:24](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [23:52, 03:50](1607 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [22:49, 03:41](1607 MB) -PASS -- TEST 'control_restart_p8_intel' [04:55, 02:03](789 MB) -PASS -- TEST 'control_noqr_p8_intel' [22:34, 03:31](1594 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:48, 02:10](792 MB) -PASS -- TEST 'control_decomp_p8_intel' [21:55, 03:19](1595 MB) -PASS -- TEST 'control_2threads_p8_intel' [20:38, 02:40](1687 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:54, 05:15](1605 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:23, 04:08](1656 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:21, 03:20](1613 MB) -PASS -- TEST 'merra2_thompson_intel' [07:20, 03:36](1610 MB) -PASS -- TEST 'regional_control_intel' [06:05, 04:46](617 MB) -PASS -- TEST 'regional_restart_intel' [04:20, 02:51](786 MB) -PASS -- TEST 'regional_decomp_intel' [06:10, 04:55](617 MB) -PASS -- TEST 'regional_2threads_intel' [05:11, 03:02](767 MB) -PASS -- TEST 'regional_noquilt_intel' [07:54, 04:39](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:47, 04:58](614 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:58, 04:43](617 MB) -PASS -- TEST 'regional_wofs_intel' [07:35, 06:04](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 13:38] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:00, 06:57](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 04:01](1186 MB) -PASS -- TEST 'rap_decomp_intel' [09:54, 07:06](1009 MB) -PASS -- TEST 'rap_2threads_intel' [09:23, 06:06](1100 MB) -PASS -- TEST 'rap_restart_intel' [16:09, 03:59](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:12, 06:55](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 07:24](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [20:25, 05:05](882 MB) -PASS -- TEST 'hrrr_control_intel' [06:27, 04:11](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:55, 03:54](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 03:15](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [15:46, 02:17](839 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:42, 06:54](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:46, 08:14](1968 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:38, 08:10](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [13:13, 12:55] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:52, 06:38](696 MB) -PASS -- TEST 'control_ras_intel' [18:48, 03:50](656 MB) - -PASS -- COMPILE 'wam_intel' [12:13, 12:02] -PASS -- TEST 'control_wam_intel' [18:57, 02:27](370 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [19:47, 03:45](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [06:14, 04:30](617 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:38] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [18:23, 02:59](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:20, 03:00](1587 MB) -PASS -- TEST 'control_stochy_debug_intel' [17:49, 03:13](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [17:48, 02:53](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [19:17, 04:16](825 MB) -PASS -- TEST 'control_ras_debug_intel' [16:43, 02:52](794 MB) -PASS -- TEST 'control_diag_debug_intel' [16:55, 03:03](1643 MB) -PASS -- TEST 'control_debug_p8_intel' [17:01, 03:31](1619 MB) -PASS -- TEST 'regional_debug_intel' [24:59, 16:14](635 MB) -PASS -- TEST 'rap_control_debug_intel' [16:39, 05:06](1169 MB) -PASS -- TEST 'hrrr_control_debug_intel' [16:40, 04:53](1167 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [16:42, 04:56](1173 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:42, 05:06](1173 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:14, 05:07](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [18:44, 05:18](1252 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:38, 05:10](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:32, 05:20](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:15](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:06](1169 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:35, 05:06](1168 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:42, 05:00](1167 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:30, 08:05](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:33, 05:11](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:34, 05:55](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:32, 05:05](1169 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:23](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 09:02] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:29, 05:08](398 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:19, 04:02](1048 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:07, 05:54](890 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:10, 03:51](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:01, 05:07](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 02:43](934 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:02, 03:34](885 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:03, 04:15](786 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 01:40](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:04, 02:20](1092 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:53, 01:03](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:42](975 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 13:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:04, 04:18](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 08:50] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 05:39](1050 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:32, 05:28](1049 MB) -PASS -- TEST 'conus13km_debug_intel' [16:00, 14:25](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:58, 14:01](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:11](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:11](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 08:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:36, 04:54](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [17:14, 16:42] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:17](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:42, 04:30](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:41, 07:36](744 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:20, 11:42](791 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:32, 12:52](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:28](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 06:45](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:21, 02:57](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:25, 08:05](434 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:04, 03:50](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:09, 03:36](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:12, 04:40](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:39, 01:51](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:34, 04:08](766 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:12, 10:34] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:44, 12:56](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:15, 19:08] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:20, 07:44](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:22, 07:50](788 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:15, 20:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:29, 06:03](787 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 17:00] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:28, 06:12](744 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:13](731 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:17, 20:05](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:15, 11:38] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:29, 02:38](759 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:30, 02:15](748 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:59, 02:28](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:29](638 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:27, 02:29](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:28, 02:37](762 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:36](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:24](637 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:09, 06:04](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:28](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:35](748 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:36](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:30, 04:35](2021 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 08:34] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:36, 05:23](731 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:15, 11:38] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:31, 02:36](759 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:50] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:57, 01:55](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:56, 01:35](457 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:01, 01:06](456 MB) - -PASS -- COMPILE 'atml_intel' [20:11, 19:56] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:51, 06:56](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:37, 06:53](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:02, 03:56](836 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:12, 12:57] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:42, 06:14](1651 MB) - -PASS -- COMPILE 'atmw_intel' [18:11, 17:49] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:26, 02:14](1649 MB) - -PASS -- COMPILE 'atmaero_intel' [20:12, 19:44] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:30, 06:17](2947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:32](3012 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:30, 06:25](3019 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [16:11, 15:44] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:49, 18:23](4449 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:46, 08:08](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:16, 24:37] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:33, 14:04](1696 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:09, 14:05](1808 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 06:48](945 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:28, 15:00](1670 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:14, 26:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:55, 14:14](1688 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:14, 14:41] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 23:57](1707 MB) + +PASS -- COMPILE 's2swa_intel' [21:15, 20:43] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:58, 08:58](3098 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:07, 08:49](3097 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:00, 05:50](3154 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:50, 09:11](3121 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:02, 05:32](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 07:47](3412 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:48, 08:45](3096 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:43, 08:05](3021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:07, 08:53](3098 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:03, 11:35](3266 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:52, 07:36](3605 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:36, 13:45](4037 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:49, 09:43](4344 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:36, 08:43](3065 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 18:53] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:05, 05:35](1686 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:16, 05:39](1732 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:14, 14:25] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:57, 10:40](3131 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:13, 13:33] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:16, 06:12](1697 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:15, 17:24] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:00, 05:35](1730 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 16:58] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:29, 06:59](2657 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 02:04](2681 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:44, 01:12](2112 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:14, 24:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:10, 08:21](3102 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 23:44] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:06, 15:38](1699 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:02, 07:25](998 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:59, 17:30](1680 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:14, 15:02] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:02, 26:14](1714 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:15, 16:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:05, 04:06](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:30, 03:05](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:27, 03:10](1579 MB) +PASS -- TEST 'control_latlon_intel' [07:17, 03:03](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:33, 03:42](1567 MB) +PASS -- TEST 'control_c48_intel' [12:12, 06:52](1604 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:57, 05:42](723 MB) +PASS -- TEST 'control_c192_intel' [14:10, 10:10](1684 MB) +PASS -- TEST 'control_c384_intel' [22:40, 18:28](1986 MB) +PASS -- TEST 'control_c384gdas_intel' [20:01, 14:24](1183 MB) +PASS -- TEST 'control_stochy_intel' [04:17, 02:03](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:38, 01:09](430 MB) +PASS -- TEST 'control_lndp_intel' [04:17, 01:58](628 MB) +PASS -- TEST 'control_iovr4_intel' [05:19, 02:45](623 MB) +PASS -- TEST 'control_iovr5_intel' [05:19, 02:39](623 MB) +PASS -- TEST 'control_p8_intel' [08:46, 03:57](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:06, 04:01](1607 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:55, 03:52](1607 MB) +PASS -- TEST 'control_restart_p8_intel' [03:38, 02:06](789 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:46, 03:50](1594 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:38, 02:03](792 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:41, 03:26](1595 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:44, 02:46](1684 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:19, 05:29](1605 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:46, 04:18](1656 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:12, 03:37](1613 MB) +PASS -- TEST 'merra2_thompson_intel' [05:40, 03:44](1610 MB) +PASS -- TEST 'regional_control_intel' [06:00, 04:46](617 MB) +PASS -- TEST 'regional_restart_intel' [03:44, 02:36](787 MB) +PASS -- TEST 'regional_decomp_intel' [05:50, 04:54](617 MB) +PASS -- TEST 'regional_2threads_intel' [04:24, 03:02](757 MB) +PASS -- TEST 'regional_noquilt_intel' [05:58, 04:37](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 04:39](614 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:58, 04:37](617 MB) +PASS -- TEST 'regional_wofs_intel' [08:03, 06:14](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [16:12, 15:22] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:22, 06:53](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:25, 04:06](1190 MB) +PASS -- TEST 'rap_decomp_intel' [09:27, 07:14](1009 MB) +PASS -- TEST 'rap_2threads_intel' [08:31, 06:11](1097 MB) +PASS -- TEST 'rap_restart_intel' [06:31, 03:56](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:27, 06:45](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:29, 07:21](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 04:56](882 MB) +PASS -- TEST 'hrrr_control_intel' [05:15, 03:55](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:26, 04:16](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:28, 03:09](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:52, 02:24](839 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:10, 06:52](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:44, 08:35](1968 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 08:02](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [15:15, 14:59] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:46, 06:36](696 MB) +PASS -- TEST 'control_ras_intel' [04:39, 03:36](656 MB) + +PASS -- COMPILE 'wam_intel' [16:13, 15:32] +PASS -- TEST 'control_wam_intel' [03:32, 02:22](370 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:15, 18:42] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:46, 03:49](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [05:48, 05:01](617 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:17, 13:39] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:20, 03:09](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 03:21](1588 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:33](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:40, 02:56](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:50, 04:33](827 MB) +PASS -- TEST 'control_ras_debug_intel' [05:06, 03:07](794 MB) +PASS -- TEST 'control_diag_debug_intel' [05:08, 03:16](1643 MB) +PASS -- TEST 'control_debug_p8_intel' [04:56, 03:25](1619 MB) +PASS -- TEST 'regional_debug_intel' [18:01, 16:43](635 MB) +PASS -- TEST 'rap_control_debug_intel' [06:43, 05:35](1169 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:39, 05:20](1167 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 05:35](1173 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:43, 05:26](1173 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:31, 05:48](1169 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:45, 05:51](1252 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:46, 05:46](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:36, 05:21](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:34, 05:53](1170 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:37](1169 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:44, 05:35](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 05:46](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:36, 08:27](1168 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 05:19](1165 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:43, 06:25](1171 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 05:15](1169 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:22, 08:33](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:11, 11:17] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:37, 04:59](398 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 13:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:17, 03:53](1050 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 06:10](891 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:07, 03:41](887 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:12, 05:21](948 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:26, 02:51](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:33](885 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:26, 04:27](785 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:50, 01:41](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:15, 16:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:19, 02:11](1092 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:12](1077 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:51, 01:33](975 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:15, 15:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:25](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:12, 11:48] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:40, 05:04](1050 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:03](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [16:44, 14:08](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:03, 13:48](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:01, 08:26](1110 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:00, 14:13](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 10:36] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 05:04](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [20:15, 19:52] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:30, 05:22](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:38, 04:39](1054 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:39, 07:48](740 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:19, 11:40](790 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:02, 13:04](800 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:28, 05:23](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:38, 07:11](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 03:03](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:06, 08:04](443 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:12, 03:42](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:22, 03:41](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:25, 04:48](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:49, 01:46](403 MB) +PASS -- TEST 'gnv1_nested_intel' [06:39, 04:09](771 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:13, 13:43] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:28, 12:49](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:12, 21:37] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:27, 07:53](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:02, 07:56](792 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:12, 20:03] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:36, 06:10](788 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:11, 18:25] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:26, 06:14](744 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:31, 06:32](733 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:25, 20:04](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:11, 14:28] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:42](759 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:40](748 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:37](637 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:31](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:27](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:35](747 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:35](746 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:34, 02:34](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:20, 06:21](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:37, 06:05](678 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:34, 02:35](759 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:36](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:04, 04:36](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 10:06] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:30](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 13:38] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:34](759 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:10, 05:37] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:11, 02:16](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:00, 01:53](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:00, 02:29](456 MB) + +PASS -- COMPILE 'atml_intel' [17:15, 16:52] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:26, 08:38](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:25, 08:35](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:15, 04:52](837 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:14, 13:02] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:14, 06:49](1651 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 14:59] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:49, 02:38](1650 MB) + +PASS -- COMPILE 'atmaero_intel' [14:14, 13:44] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:51, 07:06](2947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:55, 07:44](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:41, 07:19](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:15, 11:30] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:12, 19:08](4481 MB) SYNOPSIS: -Starting Date/Time: 20240510 13:48:51 -Ending Date/Time: 20240510 15:46:52 -Total Time: 01h:59m:09s -Compiles Completed: 38/38 -Tests Completed: 182/182 +Starting Date/Time: 20240514 13:04:47 +Ending Date/Time: 20240514 14:41:21 +Total Time: 01h:38m:16s +Compiles Completed: 39/39 +Tests Completed: 183/183 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index bf40591ff6..47aa4b7561 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,18 +1,18 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -6a75664fc408bfd7a64311ae178ffeb12ffe7b77 +c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) + b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -25,369 +25,372 @@ 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-20240503 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2863157 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_299275 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:14, 12:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:28, 05:44](3166 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 17:06] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 17:12](1738 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:31, 18:16](2009 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:25, 08:34](1102 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:23, 19:21](1626 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 04:35] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:21, 22:48](1659 MB) - -PASS -- COMPILE 's2swa_intel' [13:14, 13:02] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:30, 05:57](3195 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:43, 05:51](3192 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:25, 03:27](3229 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:30, 06:01](3221 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:30, 03:29](3253 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:27, 05:41](3527 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:30, 06:02](3194 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:27, 04:58](3051 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:42, 05:59](3185 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:24, 10:13](3323 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:48, 06:26](3594 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:43, 09:45](4103 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:31, 06:52](4340 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:27, 05:29](3157 MB) - -PASS -- COMPILE 's2sw_intel' [13:15, 12:37] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:19, 04:52](1721 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:26](1769 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:12, 04:31] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:22, 08:33](3200 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:25] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:12, 05:50](1708 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:15, 11:32] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:14, 04:27](1766 MB) - -PASS -- COMPILE 's2s_intel' [12:13, 11:38] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:50, 09:28](2820 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:53, 02:36](2811 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:46, 01:28](2285 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:15, 16:46] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:22, 05:27](3201 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 16:29] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:17, 17:29](1762 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:26, 08:24](1141 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:03](1661 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:27] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:14, 25:03](1694 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:15, 11:18] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:27, 03:24](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:54, 02:53](1580 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:56, 02:57](1588 MB) -PASS -- TEST 'control_latlon_intel' [03:49, 02:53](1578 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:57, 02:57](1573 MB) -PASS -- TEST 'control_c48_intel' [08:52, 07:36](1735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:26](855 MB) -PASS -- TEST 'control_c192_intel' [12:08, 10:43](1728 MB) -PASS -- TEST 'control_c384_intel' [13:05, 10:40](1999 MB) -PASS -- TEST 'control_c384gdas_intel' [20:19, 08:08](1384 MB) -PASS -- TEST 'control_stochy_intel' [02:24, 01:40](641 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:29, 01:01](481 MB) -PASS -- TEST 'control_lndp_intel' [02:23, 01:33](648 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:25](636 MB) -PASS -- TEST 'control_iovr5_intel' [03:25, 02:25](642 MB) -PASS -- TEST 'control_p8_intel' [04:02, 03:02](1611 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 02:56](1612 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:54, 02:49](1608 MB) -PASS -- TEST 'control_restart_p8_intel' [06:49, 01:42](876 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:01, 02:56](1593 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:04, 01:37](919 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:55, 03:04](1609 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:54, 02:47](1694 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:50, 05:17](1607 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:58, 04:03](1677 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:04, 03:05](1609 MB) -PASS -- TEST 'merra2_thompson_intel' [10:02, 03:20](1614 MB) -PASS -- TEST 'regional_control_intel' [10:42, 05:19](839 MB) -PASS -- TEST 'regional_restart_intel' [03:42, 02:45](998 MB) -PASS -- TEST 'regional_decomp_intel' [10:40, 05:39](826 MB) -PASS -- TEST 'regional_2threads_intel' [08:39, 03:23](824 MB) -PASS -- TEST 'regional_noquilt_intel' [09:47, 05:15](1343 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:47, 05:15](831 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:42, 05:17](830 MB) -PASS -- TEST 'regional_wofs_intel' [11:42, 06:53](1894 MB) - -PASS -- COMPILE 'rrfs_intel' [15:13, 10:38] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:59, 07:48](1091 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:11](1279 MB) -PASS -- TEST 'rap_decomp_intel' [09:48, 08:19](1022 MB) -PASS -- TEST 'rap_2threads_intel' [08:45, 07:24](1160 MB) -PASS -- TEST 'rap_restart_intel' [05:58, 04:34](1085 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:47, 08:09](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 08:39](1020 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 06:16](1111 MB) -PASS -- TEST 'hrrr_control_intel' [04:41, 04:01](1024 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 04:09](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:40](1095 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:22](992 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:52, 07:59](1079 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:28, 09:54](1978 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:38](2048 MB) - -PASS -- COMPILE 'csawmg_intel' [13:14, 10:26] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:43, 06:23](744 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:14](737 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:14, 03:42] -PASS -- TEST 'control_csawmg_gnu' [12:59, 08:27](534 MB) - -PASS -- COMPILE 'wam_intel' [12:13, 10:08] -PASS -- TEST 'control_wam_intel' [02:22, 02:04](635 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 10:53] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:00, 02:41](1604 MB) -PASS -- TEST 'regional_control_faster_intel' [06:43, 05:11](828 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:13, 04:46] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:50, 02:37](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:49, 02:37](1583 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:07](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:50](786 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:13](829 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 03:04](800 MB) -PASS -- TEST 'control_diag_debug_intel' [03:57, 02:56](1648 MB) -PASS -- TEST 'control_debug_p8_intel' [04:47, 03:03](1609 MB) -PASS -- TEST 'regional_debug_intel' [18:48, 17:52](811 MB) -PASS -- TEST 'rap_control_debug_intel' [06:27, 05:17](1171 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:11](1171 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 05:20](1148 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:08](1176 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:06](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:42, 09:14](1251 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 05:16](1169 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 05:15](1174 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:05](1173 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:29, 05:05](1171 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:33, 04:58](1172 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:28, 05:01](1170 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 08:09](1170 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:05](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:11](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:24, 05:01](1170 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:42, 09:10](1181 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:12, 02:44] -PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:22](510 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:12, 03:19] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:23, 05:06](463 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:13, 10:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:07, 04:26](1140 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 07:03](1036 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:49](973 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:26](1077 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 03:17](943 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:42](918 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:41, 04:57](1018 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:16](918 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:14, 12:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:07, 02:09](1179 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:57](1097 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:17](1092 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 10:20] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:17](969 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:29] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:47](1053 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:50](1052 MB) -PASS -- TEST 'conus13km_debug_intel' [16:49, 15:14](1177 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:34](885 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:20](1101 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 14:41](1244 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:33] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 05:00](1092 MB) - -PASS -- COMPILE 'hafsw_intel' [19:12, 12:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:15](729 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:23](1106 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 07:06](814 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:17, 13:41](843 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:46, 15:37](851 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:59, 05:39](483 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 06:57](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:43, 02:50](358 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:47, 07:21](463 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:46](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:34](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:10](569 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:13](382 MB) -PASS -- TEST 'gnv1_nested_intel' [05:46, 04:17](781 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:13, 04:03] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:52, 12:45](534 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:13, 12:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:47](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:14, 08:53](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:13, 12:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:09, 06:26](676 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:14, 11:56] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:22, 06:33](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:36](802 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 16:12](1230 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:13, 06:06] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:21, 02:42](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:39](1092 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:39](992 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:41](1025 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:19, 02:40](1007 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:39](1139 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:38](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:35](1006 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:55, 06:25](1046 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:37, 06:28](1028 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:47](1145 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:23, 03:56](2372 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:22, 03:52](2437 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 03:15] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 06:17](1052 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 06:08] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:37](1140 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:27] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:44](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:48](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:31](318 MB) - -PASS -- COMPILE 'atml_intel' [13:15, 12:22] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:26, 04:13](1603 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:14, 04:12](1595 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:56, 02:28](885 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 04:36] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:34](1581 MB) - -PASS -- COMPILE 'atmw_intel' [12:14, 11:33] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:46](1653 MB) - -PASS -- COMPILE 'atmaero_intel' [12:14, 11:32] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:05](3011 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 05:00](3064 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:02](3091 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:52] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:13, 24:46](4439 MB) - -PASS -- COMPILE 'atm_gnu' [04:11, 04:07] -PASS -- TEST 'control_c48_gnu' [12:45, 11:13](1532 MB) -PASS -- TEST 'control_stochy_gnu' [04:25, 03:27](491 MB) -PASS -- TEST 'control_ras_gnu' [06:24, 04:51](504 MB) -PASS -- TEST 'control_p8_gnu' [06:03, 04:47](1252 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:54, 04:43](1252 MB) -PASS -- TEST 'control_flake_gnu' [11:24, 10:44](534 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:26] -PASS -- TEST 'rap_control_gnu' [11:35, 11:06](845 MB) -PASS -- TEST 'rap_decomp_gnu' [11:35, 10:53](842 MB) -PASS -- TEST 'rap_2threads_gnu' [10:37, 09:58](925 MB) -PASS -- TEST 'rap_restart_gnu' [06:43, 05:36](574 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:40, 11:17](840 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:36, 11:20](847 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 08:09](577 MB) -PASS -- TEST 'hrrr_control_gnu' [06:39, 05:46](845 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:53](830 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 06:17](914 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:34, 05:52](844 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:52](560 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:53](655 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:49, 10:58](834 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:11, 04:14] -PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:39](1265 MB) -PASS -- TEST 'regional_debug_gnu' [11:44, 10:22](548 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:40](818 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:35](848 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:25, 02:42](856 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:40](853 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:34, 02:54](936 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 04:06](852 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 02:39](849 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:47](847 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:42](479 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:55](488 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:46, 01:58](1241 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:51](850 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:30, 02:51](858 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:37, 04:25](857 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:14] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:49] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:30](698 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:04](701 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 09:04](747 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:30, 05:32](745 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:30, 05:09](698 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:40, 07:01](545 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 02:37](537 MB) -PASS -- TEST 'conus13km_control_gnu' [04:51, 03:15](870 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:44, 05:57](876 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:45, 01:52](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:10, 05:48] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:41, 05:54](730 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 04:02] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:20, 02:30](696 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:33](709 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:50, 07:16](870 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 07:06](566 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:36](880 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:38, 06:55](942 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:10, 03:57] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:42](735 MB) - -PASS -- COMPILE 's2swa_gnu' [15:12, 14:36] - -PASS -- COMPILE 's2s_gnu' [15:12, 14:23] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 07:31](1342 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:41] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:13, 14:45] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:33, 32:41](1312 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:27] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 13:04](1307 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:13] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:20, 03:09](695 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:40, 05:30](3198 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 17:07](1743 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:20, 18:01](2033 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:17, 08:08](1118 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:01, 19:26](1653 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:44, 16:49](1753 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:29] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:01, 22:43](1698 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 12:59] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:32, 05:45](3206 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:48, 05:45](3218 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:33, 03:23](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:33, 05:53](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:32, 03:21](3284 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:25, 05:34](3566 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:29, 06:08](3229 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:25, 04:47](3062 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:47, 05:47](3218 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:19, 10:14](3358 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 06:09](3623 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:22, 09:36](4123 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:05, 06:06](4362 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:34, 05:25](3181 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 12:19] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:19, 05:00](1738 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:24, 04:21](1770 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:24] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:06, 08:20](3234 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:15] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:58, 05:45](1746 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:30] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:07, 04:24](1787 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 11:30] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:44, 09:23](2834 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:37](2828 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:25](2303 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:02] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:25](3207 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:09] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:08](1779 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:50, 08:01](1169 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:32, 19:43](1684 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:15] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:58, 24:39](1726 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:21](701 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:54](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:48, 02:58](1601 MB) +PASS -- TEST 'control_latlon_intel' [03:42, 02:53](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 02:54](1599 MB) +PASS -- TEST 'control_c48_intel' [08:47, 07:36](1762 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:22](866 MB) +PASS -- TEST 'control_c192_intel' [12:17, 10:27](1746 MB) +PASS -- TEST 'control_c384_intel' [13:28, 10:26](2009 MB) +PASS -- TEST 'control_c384gdas_intel' [10:48, 07:59](1412 MB) +PASS -- TEST 'control_stochy_intel' [02:25, 01:37](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:31, 00:57](504 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 01:32](661 MB) +PASS -- TEST 'control_iovr4_intel' [03:24, 02:25](656 MB) +PASS -- TEST 'control_iovr5_intel' [03:24, 02:26](659 MB) +PASS -- TEST 'control_p8_intel' [03:57, 02:58](1592 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 02:56](1630 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 02:49](1629 MB) +PASS -- TEST 'control_restart_p8_intel' [02:50, 01:36](896 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:58, 02:53](1615 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:52, 01:36](935 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:54, 03:02](1611 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:56, 02:43](1716 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:54, 05:11](1628 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:03, 03:53](1698 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:04, 02:56](1635 MB) +PASS -- TEST 'merra2_thompson_intel' [05:03, 03:13](1647 MB) +PASS -- TEST 'regional_control_intel' [05:45, 05:09](846 MB) +PASS -- TEST 'regional_restart_intel' [03:42, 02:41](1021 MB) +PASS -- TEST 'regional_decomp_intel' [06:40, 05:31](848 MB) +PASS -- TEST 'regional_2threads_intel' [04:40, 03:13](844 MB) +PASS -- TEST 'regional_noquilt_intel' [06:40, 05:10](1362 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:21](860 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:09](857 MB) +PASS -- TEST 'regional_wofs_intel' [07:43, 06:50](1912 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 10:43] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:44, 07:42](1109 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:15, 04:12](1301 MB) +PASS -- TEST 'rap_decomp_intel' [08:36, 08:08](1029 MB) +PASS -- TEST 'rap_2threads_intel' [08:35, 07:13](1183 MB) +PASS -- TEST 'rap_restart_intel' [06:43, 04:08](1106 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:47, 07:42](1110 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:08](1043 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:47, 05:48](1130 MB) +PASS -- TEST 'hrrr_control_intel' [05:08, 03:57](1048 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:00, 04:07](1030 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:38](1118 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:09](1004 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:50, 07:37](1103 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:18](1990 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 09:02](2063 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 10:24] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:41, 05:59](751 MB) +PASS -- TEST 'control_ras_intel' [04:26, 03:13](750 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 03:36] +PASS -- TEST 'control_csawmg_gnu' [09:39, 08:18](549 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 09:48] +PASS -- TEST 'control_wam_intel' [02:23, 02:04](656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 10:50] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:01, 02:38](1628 MB) +PASS -- TEST 'regional_control_faster_intel' [05:41, 04:43](853 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:48] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:57, 02:35](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:01, 02:39](1615 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:25, 02:59](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:39](824 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:52, 04:11](867 MB) +PASS -- TEST 'control_ras_debug_intel' [04:26, 02:38](833 MB) +PASS -- TEST 'control_diag_debug_intel' [06:59, 02:39](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [06:56, 02:51](1637 MB) +PASS -- TEST 'regional_debug_intel' [20:55, 16:55](859 MB) +PASS -- TEST 'rap_control_debug_intel' [07:28, 04:46](1212 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:28, 04:47](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:29, 04:51](1205 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:31, 04:51](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:30, 04:57](1210 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:44, 05:07](1292 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:25, 04:55](1210 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:00](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:24, 05:01](1211 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:46](1211 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:52](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:59](1209 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:41, 07:49](1206 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:31, 04:56](1206 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 05:55](1215 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:29, 04:52](1207 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:42, 08:17](1217 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:39] +PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:11](529 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:14] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:27, 04:56](522 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 10:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:09, 03:56](1165 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:45, 06:24](1051 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:39, 03:23](988 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:37, 06:04](1099 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:13](961 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:35](925 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 04:50](1038 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:50](934 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:55, 02:09](1200 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:41, 00:52](1121 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:43, 01:12](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 10:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:13](985 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:46](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:48](1090 MB) +PASS -- TEST 'conus13km_debug_intel' [15:56, 14:07](1235 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:40](918 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:08](1155 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 14:47](1313 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 03:29] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:48](1131 MB) + +PASS -- COMPILE 'hafsw_intel' [14:13, 11:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:17, 04:58](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:31, 05:49](1124 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:51](840 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:21, 13:20](861 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:31, 15:03](891 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:59, 05:30](504 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 06:39](519 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:41, 02:40](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:14, 07:09](483 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:48, 03:39](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:50, 03:30](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:57, 04:05](592 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:31, 01:14](407 MB) +PASS -- TEST 'gnv1_nested_intel' [09:50, 04:06](807 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:58] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:53, 12:36](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:03, 08:43](642 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:11, 08:45](747 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 11:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:12, 06:23](709 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:21] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:26, 06:24](832 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:22, 06:32](821 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:04, 15:54](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:11] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:42](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1103 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:39](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:37](1030 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:35](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:39](1145 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:40](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:30](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:23, 06:07](1061 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:20, 06:19](1058 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:40](1149 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 03:48](2497 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:52](2425 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:17](1094 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:07] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:37](1156 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:06] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:45](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:47](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:30](320 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 11:46] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:05, 04:08](1623 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:01, 04:10](1619 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:16](901 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:12, 04:21] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:29](1607 MB) + +PASS -- COMPILE 'atmw_intel' [11:12, 11:01] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:59, 01:43](1682 MB) + +PASS -- COMPILE 'atmaero_intel' [11:12, 10:27] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:03](3043 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:07, 04:48](3101 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 04:53](3118 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:40] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [43:25, 39:50](4440 MB) + +PASS -- COMPILE 'atm_gnu' [04:11, 03:40] +PASS -- TEST 'control_c48_gnu' [12:46, 11:10](1544 MB) +PASS -- TEST 'control_stochy_gnu' [04:23, 03:22](506 MB) +PASS -- TEST 'control_ras_gnu' [05:22, 04:41](514 MB) +PASS -- TEST 'control_p8_gnu' [06:00, 04:38](1271 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:27](1269 MB) +PASS -- TEST 'control_flake_gnu' [11:24, 10:38](553 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:11, 03:43] +PASS -- TEST 'rap_control_gnu' [11:40, 10:42](858 MB) +PASS -- TEST 'rap_decomp_gnu' [12:38, 10:53](858 MB) +PASS -- TEST 'rap_2threads_gnu' [11:34, 09:47](944 MB) +PASS -- TEST 'rap_restart_gnu' [06:45, 05:34](585 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:41, 10:55](857 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:35, 11:03](857 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:43, 07:51](587 MB) +PASS -- TEST 'hrrr_control_gnu' [06:33, 05:34](857 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:34, 05:32](842 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:37, 05:00](934 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:30](856 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:31, 02:51](570 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:48](668 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:46, 10:39](855 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:36] +PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:36](1286 MB) +PASS -- TEST 'regional_debug_gnu' [12:42, 10:53](562 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:34](871 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:37](869 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:22, 02:36](877 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:32](876 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:35, 02:45](962 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 04:02](870 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:34](871 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:38](867 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:35](506 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:44](498 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:44, 01:35](1255 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:25, 02:35](871 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:46](875 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:13](877 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:11, 01:49] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:37] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:36, 09:25](714 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:39, 04:52](713 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:40, 08:33](759 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:31, 04:33](756 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:02](716 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:44, 06:58](557 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:28](549 MB) +PASS -- TEST 'conus13km_control_gnu' [04:56, 03:09](886 MB) +PASS -- TEST 'conus13km_2threads_gnu' [05:44, 05:05](889 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:47](559 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:25] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:50](740 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:38] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:30](721 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:27](720 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:00, 06:47](898 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:53, 06:52](593 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:51, 07:32](899 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:50, 07:06](964 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:12, 03:39] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:25, 02:34](743 MB) + +PASS -- COMPILE 's2swa_gnu' [15:13, 14:32] + +PASS -- COMPILE 's2s_gnu' [15:12, 14:27] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:16, 06:34](1357 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:30] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:14] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:06, 23:58](1321 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:22] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:57, 16:21](1335 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:16] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:03](697 MB) SYNOPSIS: -Starting Date/Time: 20240510 17:42:13 -Ending Date/Time: 20240510 20:09:13 -Total Time: 02h:27m:16s -Compiles Completed: 54/54 -Tests Completed: 242/242 +Starting Date/Time: 20240514 17:03:26 +Ending Date/Time: 20240514 18:48:41 +Total Time: 01h:45m:33s +Compiles Completed: 55/55 +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 83ccef861e..2bc231638e 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: -57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa +c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d3) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) + aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,364 +36,367 @@ 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-20240503 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1888579 +COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1854380 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:10, 13:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 07:21](1897 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:19, 13:22](1774 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:58, 14:02](2177 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:27, 06:33](1179 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:34, 15:11](1699 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:55] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:21, 20:25](1727 MB) - -PASS -- COMPILE 's2swa_intel' [13:10, 13:03] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:14, 07:28](2089 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:21, 07:31](2051 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:36, 04:17](1964 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:14, 07:37](1969 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:36, 04:20](1729 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:15, 09:08](2497 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:09, 07:41](2065 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:14, 06:23](1899 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:14, 07:39](2075 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:00, 15:38](2803 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:39, 05:44](2919 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:35, 08:35](3631 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:17, 05:29](3616 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:07, 04:53](2032 MB) - -PASS -- COMPILE 's2sw_intel' [12:10, 11:55] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:57, 07:05](1772 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:15, 03:54](1814 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:55] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:15, 06:46](2056 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 06:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:49, 04:45](1788 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:47] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:55, 03:57](1831 MB) - -PASS -- COMPILE 's2s_intel' [11:10, 10:23] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:42, 07:10](2834 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:42, 02:01](2821 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:50, 01:02](2304 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:10, 14:40] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:19, 07:25](2053 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 16:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:02, 13:50](1798 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:12, 06:47](1304 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:08, 15:17](1746 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:23] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:36](1777 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:21, 02:52](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:29](1610 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:48, 02:31](1621 MB) -PASS -- TEST 'control_latlon_intel' [03:42, 02:30](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:53, 02:29](1614 MB) -PASS -- TEST 'control_c48_intel' [07:46, 07:01](1752 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:31, 05:44](860 MB) -PASS -- TEST 'control_c192_intel' [09:53, 09:00](1764 MB) -PASS -- TEST 'control_c384_intel' [11:44, 09:17](2052 MB) -PASS -- TEST 'control_c384gdas_intel' [10:17, 07:16](1530 MB) -PASS -- TEST 'control_stochy_intel' [02:21, 01:25](669 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:39, 00:52](548 MB) -PASS -- TEST 'control_lndp_intel' [02:21, 01:19](664 MB) -PASS -- TEST 'control_iovr4_intel' [02:22, 02:03](668 MB) -PASS -- TEST 'control_iovr5_intel' [02:21, 02:05](663 MB) -PASS -- TEST 'control_p8_intel' [04:08, 02:31](1643 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:06, 02:29](1646 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:03, 02:25](1639 MB) -PASS -- TEST 'control_restart_p8_intel' [03:00, 01:27](910 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:01, 02:24](1622 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:11, 01:21](981 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:55, 02:31](1626 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:01, 02:17](1731 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:44, 04:25](1636 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:06, 03:24](1718 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:02, 02:33](1648 MB) -PASS -- TEST 'merra2_thompson_intel' [04:07, 02:45](1650 MB) -PASS -- TEST 'regional_control_intel' [05:32, 04:32](961 MB) -PASS -- TEST 'regional_restart_intel' [03:32, 02:26](1099 MB) -PASS -- TEST 'regional_decomp_intel' [05:38, 04:41](946 MB) -PASS -- TEST 'regional_2threads_intel' [03:38, 02:48](921 MB) -PASS -- TEST 'regional_noquilt_intel' [05:38, 04:22](1488 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:46, 04:28](958 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 04:31](957 MB) -PASS -- TEST 'regional_wofs_intel' [06:35, 05:33](2101 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 07:25] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:54, 06:34](1193 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:55, 03:24](1414 MB) -PASS -- TEST 'rap_decomp_intel' [07:52, 06:51](1160 MB) -PASS -- TEST 'rap_2threads_intel' [06:55, 06:07](1374 MB) -PASS -- TEST 'rap_restart_intel' [05:10, 03:23](1136 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:52, 06:31](1201 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:53, 07:02](1151 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:06, 04:56](1199 MB) -PASS -- TEST 'hrrr_control_intel' [04:55, 03:22](1066 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:57, 03:26](1042 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:58, 03:04](1122 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:38, 01:51](1029 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:57, 06:19](1193 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:37](2008 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:21](2175 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 07:05] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:35, 05:15](822 MB) -PASS -- TEST 'control_ras_intel' [03:18, 02:48](814 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 04:06] -PASS -- TEST 'control_csawmg_gnu' [07:40, 06:25](811 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 06:40] -PASS -- TEST 'control_wam_intel' [02:25, 01:48](787 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:30] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:04, 02:13](1638 MB) -PASS -- TEST 'regional_control_faster_intel' [04:34, 04:04](963 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 03:48] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:41, 02:11](1629 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:42, 02:06](1635 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:19, 02:28](832 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:14](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:33, 03:22](876 MB) -PASS -- TEST 'control_ras_debug_intel' [03:18, 02:16](841 MB) -PASS -- TEST 'control_diag_debug_intel' [03:40, 02:10](1692 MB) -PASS -- TEST 'control_debug_p8_intel' [03:41, 02:19](1667 MB) -PASS -- TEST 'regional_debug_intel' [14:38, 14:01](903 MB) -PASS -- TEST 'rap_control_debug_intel' [04:22, 03:58](1221 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:22, 03:51](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 03:57](1219 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:22, 03:59](1230 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:27, 04:01](1219 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:45, 04:14](1297 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 04:08](1215 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:10](1228 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:02](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 04:00](1232 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:59](1221 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 03:57](1229 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:34](1223 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:54](1212 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:49](1229 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:16, 03:58](1221 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:51, 06:46](1221 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:11] -PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 01:51](790 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:10, 02:38] ( 855 warnings ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 06:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:56, 03:14](1271 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:45, 05:24](1154 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:00, 02:53](1020 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:40, 05:15](1249 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:04, 02:38](1033 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:04, 03:01](981 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:57, 04:05](1102 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:46, 01:33](959 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 08:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:47, 01:44](1312 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:42, 00:44](1201 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:40, 01:02](1152 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:37, 03:42](1098 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 04:27] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:21, 03:58](1095 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:22, 03:53](1104 MB) -PASS -- TEST 'conus13km_debug_intel' [12:42, 11:46](1343 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:42, 11:51](988 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:41, 06:35](1240 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:36, 11:37](1397 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 04:27] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:24, 04:01](1158 MB) - -PASS -- COMPILE 'hafsw_intel' [10:10, 09:28] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:05, 05:24](884 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:25, 05:11](1280 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:19, 06:27](944 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 13:58](984 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 15:53](1008 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:53, 05:21](606 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:55](619 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:41](439 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:13, 07:48](545 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:52](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 03:46](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:47](680 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 01:19](449 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [03:10, 03:03] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:50, 11:23](626 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:10, 10:24] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:53, 17:23](748 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:08, 16:49](845 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:09, 10:46](832 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:11, 09:34] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:10, 05:19](951 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:11, 05:22](938 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:20](1344 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:11, 05:56] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:10](1141 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:18](1093 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:15, 02:06](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:08](1016 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:10](1009 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:12](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:15, 02:09](1133 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:04](1012 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:53, 04:57](1160 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:48, 04:56](1143 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:08](1137 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:02](2436 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2391 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:56] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:15](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 06:05] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:08](1144 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:54] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:50](336 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:47](558 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:31](559 MB) - -PASS -- COMPILE 'atml_intel' [08:11, 08:04] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:11, 05:21](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:10, 05:17](1646 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:45](938 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:11, 03:21] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:04, 04:43](1654 MB) - -PASS -- COMPILE 'atmw_intel' [10:10, 09:41] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 01:30](1684 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 07:32] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:57, 03:30](1796 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 04:13](1797 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:49, 04:17](1817 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:55] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [17:35, 16:00](4573 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 04:57] -PASS -- TEST 'control_c48_gnu' [10:45, 09:26](1578 MB) -PASS -- TEST 'control_stochy_gnu' [03:23, 02:17](729 MB) -PASS -- TEST 'control_ras_gnu' [04:25, 03:42](736 MB) -PASS -- TEST 'control_p8_gnu' [05:02, 03:31](1512 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:52, 03:24](1516 MB) -PASS -- TEST 'control_flake_gnu' [05:21, 04:22](803 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 04:47] -PASS -- TEST 'rap_control_gnu' [09:05, 07:34](1083 MB) -PASS -- TEST 'rap_decomp_gnu' [08:58, 07:44](1084 MB) -PASS -- TEST 'rap_2threads_gnu' [09:09, 07:12](1147 MB) -PASS -- TEST 'rap_restart_gnu' [05:14, 03:55](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:00, 07:34](1088 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:54, 07:42](1086 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:03, 05:38](884 MB) -PASS -- TEST 'hrrr_control_gnu' [05:02, 03:59](1072 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:54, 03:58](1140 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:57, 03:39](1031 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:58, 04:00](1074 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:36, 02:05](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:37, 01:59](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:56, 07:31](1084 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 08:13] -PASS -- TEST 'control_diag_debug_gnu' [02:40, 01:14](1625 MB) -PASS -- TEST 'regional_debug_gnu' [07:33, 06:16](927 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:18, 01:59](1100 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:21, 01:52](1090 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:20, 01:54](1097 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:19, 01:57](1094 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:01](1270 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:19, 03:03](1097 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 01:58](1101 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 01:53](1095 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:12](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:14](722 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:14](1502 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:58](1100 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:10](1104 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:00, 03:14](1100 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:35] -PASS -- TEST 'control_wam_debug_gnu' [02:27, 01:56](499 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 06:27] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:44, 07:14](961 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:05, 03:46](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:54, 06:40](968 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:51, 03:26](875 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:43, 03:45](948 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:03, 05:28](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:41, 01:58](857 MB) -PASS -- TEST 'conus13km_control_gnu' [03:45, 02:28](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:36, 01:01](1174 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:35, 01:24](920 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 14:00] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:32, 04:16](993 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:10, 12:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 01:53](979 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:19, 01:51](974 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:37, 05:28](1278 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:41, 05:30](951 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:36, 03:15](1189 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:36, 05:25](1356 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:10, 12:43] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:22, 01:57](1002 MB) - -PASS -- COMPILE 's2swa_gnu' [19:10, 18:35] - -PASS -- COMPILE 's2s_gnu' [17:10, 17:06] - -PASS -- COMPILE 's2swa_debug_gnu' [13:10, 12:53] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:10, 17:48] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:11, 12:03] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 15:56] +PASS -- COMPILE 's2swa_32bit_intel' [15:10, 15:08] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:05, 07:40](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 22:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:10, 13:47](1762 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:20, 14:27](2177 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:22, 06:45](1188 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:10, 15:33](1689 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:14, 28:19] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:38, 13:20](1766 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:43] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:18, 20:19](1727 MB) + +PASS -- COMPILE 's2swa_intel' [13:10, 12:53] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:50, 07:45](2149 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:06, 07:37](2051 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:06, 04:15](1949 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:51, 07:38](1985 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 04:19](1734 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:49, 08:55](2497 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:29](2076 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:56, 06:25](1902 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:04, 07:36](2093 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:42, 15:36](2787 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:25, 05:45](2928 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:39, 08:29](3634 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:26, 05:26](3620 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:57, 04:56](2034 MB) + +PASS -- COMPILE 's2sw_intel' [13:10, 12:35] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:52, 07:05](1777 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:01, 03:59](1835 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:05] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [08:11, 06:56](2061 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:22] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:54, 04:43](1802 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:19] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:53, 04:00](1827 MB) + +PASS -- COMPILE 's2s_intel' [10:10, 09:34] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:42, 07:13](2825 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:42, 02:04](2829 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:37, 01:10](2298 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 07:14](2063 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 17:17] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:55, 14:18](1811 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:01, 06:50](1285 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:50, 15:27](1732 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:13] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:48, 21:35](1775 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 08:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:19, 02:51](718 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:38, 02:27](1610 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:42, 02:32](1617 MB) +PASS -- TEST 'control_latlon_intel' [03:36, 02:27](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:41, 02:26](1612 MB) +PASS -- TEST 'control_c48_intel' [07:41, 06:59](1733 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 05:50](862 MB) +PASS -- TEST 'control_c192_intel' [09:44, 08:56](1752 MB) +PASS -- TEST 'control_c384_intel' [10:23, 09:06](2045 MB) +PASS -- TEST 'control_c384gdas_intel' [08:49, 07:02](1538 MB) +PASS -- TEST 'control_stochy_intel' [02:19, 01:26](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:23, 00:53](538 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:29](673 MB) +PASS -- TEST 'control_iovr4_intel' [02:20, 02:04](671 MB) +PASS -- TEST 'control_iovr5_intel' [02:20, 02:04](657 MB) +PASS -- TEST 'control_p8_intel' [03:57, 02:33](1643 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:51, 02:32](1644 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:52, 02:26](1636 MB) +PASS -- TEST 'control_restart_p8_intel' [02:47, 01:26](913 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:43, 02:28](1632 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:27](991 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:43, 02:31](1621 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:43, 02:24](1731 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:24](1646 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:53, 03:29](1714 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:48, 02:29](1659 MB) +PASS -- TEST 'merra2_thompson_intel' [03:54, 02:46](1665 MB) +PASS -- TEST 'regional_control_intel' [05:30, 04:27](960 MB) +PASS -- TEST 'regional_restart_intel' [03:31, 02:29](1102 MB) +PASS -- TEST 'regional_decomp_intel' [05:27, 04:43](948 MB) +PASS -- TEST 'regional_2threads_intel' [03:28, 02:51](914 MB) +PASS -- TEST 'regional_noquilt_intel' [05:31, 04:20](1488 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 04:32](957 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:32](954 MB) +PASS -- TEST 'regional_wofs_intel' [06:26, 05:38](2067 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 07:36] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:40, 06:32](1219 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:25](1447 MB) +PASS -- TEST 'rap_decomp_intel' [07:33, 06:50](1142 MB) +PASS -- TEST 'rap_2threads_intel' [06:48, 06:07](1370 MB) +PASS -- TEST 'rap_restart_intel' [04:51, 03:25](1137 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:43, 06:41](1203 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:33, 06:52](1166 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:00, 04:54](1186 MB) +PASS -- TEST 'hrrr_control_intel' [04:35, 03:20](1070 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:33, 03:31](1043 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:52, 03:05](1127 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:20, 01:50](1023 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:50, 06:19](1206 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:19, 07:38](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:42](2186 MB) + +PASS -- COMPILE 'csawmg_intel' [08:10, 07:12] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:32, 05:17](805 MB) +PASS -- TEST 'control_ras_intel' [03:16, 02:51](811 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:10] +PASS -- TEST 'control_csawmg_gnu' [07:32, 06:27](808 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 07:01] +PASS -- TEST 'control_wam_intel' [02:23, 01:53](788 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:45] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:50, 02:22](1643 MB) +PASS -- TEST 'regional_control_faster_intel' [04:25, 04:06](955 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 04:01] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:30, 02:11](1632 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:32, 02:09](1632 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:27](832 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:13](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:33, 03:24](883 MB) +PASS -- TEST 'control_ras_debug_intel' [03:17, 02:17](837 MB) +PASS -- TEST 'control_diag_debug_intel' [03:34, 02:20](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [03:31, 02:23](1663 MB) +PASS -- TEST 'regional_debug_intel' [14:41, 14:08](892 MB) +PASS -- TEST 'rap_control_debug_intel' [04:20, 03:55](1229 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:19, 03:50](1216 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:16, 03:58](1231 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 03:57](1216 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 03:57](1225 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:11](1316 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:16, 04:05](1223 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:15, 04:05](1218 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:19, 04:04](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:57](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1224 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:56](1216 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 06:23](1211 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:18, 03:52](1223 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:46](1224 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:17, 03:56](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:50, 06:48](1214 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:38] +PASS -- TEST 'control_csawmg_debug_gnu' [02:27, 01:44](792 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:42] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 07:13] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:45, 03:19](1277 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:35, 05:18](1149 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 02:50](1018 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:52, 05:04](1284 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 02:38](1039 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:39, 03:04](1010 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:52, 04:11](1107 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:34](961 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:35, 01:44](1288 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:34, 00:50](1196 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:34, 01:04](1162 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:32, 03:45](1095 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:56] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:19, 03:54](1102 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:57](1093 MB) +PASS -- TEST 'conus13km_debug_intel' [12:32, 11:44](1346 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:33, 11:48](993 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:27, 06:39](1243 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 11:45](1412 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:42] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 03:59](1154 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 10:06] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:02, 05:24](882 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:23, 05:01](1280 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 06:26](955 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:05, 14:14](979 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:17, 15:06](1001 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:48, 05:37](606 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:13, 06:53](620 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:43](439 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:01, 07:54](541 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:43, 03:50](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:46, 03:41](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:53](683 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:17](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 04:24] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:37, 11:29](635 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:12] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:46, 16:26](769 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:48, 16:34](850 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:10] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:47, 10:01](824 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:10, 10:14] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:26](957 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:00, 05:30](926 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:20](1341 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:15, 06:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:13](1140 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:22](1088 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:14, 02:06](1011 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:05](1010 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:14, 02:07](1013 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:09](1143 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:12](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:17, 02:03](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 05:00](1156 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:44, 04:54](1147 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:09](1152 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:04](2434 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:03](2388 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:50] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:10](1075 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 10:30] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:10](1144 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:01] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:52](338 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:20, 00:52](561 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:33](565 MB) + +PASS -- COMPILE 'atml_intel' [09:10, 08:47] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:07, 05:23](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 05:15](1649 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 02:46](951 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:52] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:54, 04:37](1654 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:25] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:30](1701 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 07:21] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:54, 03:28](1804 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:20](1797 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:24](1822 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:54] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:25, 16:13](4564 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:39] +PASS -- TEST 'control_c48_gnu' [10:37, 09:31](1576 MB) +PASS -- TEST 'control_stochy_gnu' [03:21, 02:19](736 MB) +PASS -- TEST 'control_ras_gnu' [04:20, 03:35](736 MB) +PASS -- TEST 'control_p8_gnu' [04:51, 03:35](1512 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:31](1518 MB) +PASS -- TEST 'control_flake_gnu' [05:16, 04:25](815 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 05:17] +PASS -- TEST 'rap_control_gnu' [08:32, 07:38](1089 MB) +PASS -- TEST 'rap_decomp_gnu' [08:34, 07:52](1083 MB) +PASS -- TEST 'rap_2threads_gnu' [07:43, 07:08](1124 MB) +PASS -- TEST 'rap_restart_gnu' [04:59, 04:00](891 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:44, 07:45](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:33, 07:55](1083 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:54, 05:38](886 MB) +PASS -- TEST 'hrrr_control_gnu' [04:46, 04:00](1071 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:32, 04:16](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:45](1040 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:36, 03:59](1071 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:04](880 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:18, 02:02](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:57, 07:40](1091 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 06:06] +PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:15](1625 MB) +PASS -- TEST 'regional_debug_gnu' [07:28, 06:29](925 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:16, 02:04](1100 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:17, 01:53](1091 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 01:59](1095 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:19, 01:59](1097 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:24, 02:05](1271 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:02](1099 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:58](1103 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 02:03](1095 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:15, 01:11](737 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:15, 01:16](721 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:37, 01:14](1511 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:18, 01:56](1101 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:16, 02:13](1103 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:50, 03:21](1099 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:22] +PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:52](499 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 05:50] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:46, 07:08](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:54, 03:43](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:31, 06:39](996 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:34, 03:27](891 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:34, 03:48](957 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:50, 05:32](858 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:20, 02:01](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:35, 02:26](1265 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:34, 01:09](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:33, 01:26](934 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:10] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:19](999 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 07:17] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:52](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:16, 01:57](966 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:31](1278 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:27, 05:33](962 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:32, 03:08](1187 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:25, 05:25](1346 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:10, 04:37] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:17, 01:54](1001 MB) + +PASS -- COMPILE 's2swa_gnu' [24:11, 23:27] + +PASS -- COMPILE 's2s_gnu' [16:10, 15:53] + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:12] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 15:01] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 04:18] + +PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:58] SYNOPSIS: -Starting Date/Time: 20240512 07:18:29 -Ending Date/Time: 20240512 08:31:43 -Total Time: 01h:13m:36s -Compiles Completed: 54/54 -Tests Completed: 237/237 +Starting Date/Time: 20240514 12:24:37 +Ending Date/Time: 20240514 13:37:18 +Total Time: 01h:13m:08s +Compiles Completed: 55/55 +Tests Completed: 238/238 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 0a73641041..d70b602ea3 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: -6a75664fc408bfd7a64311ae178ffeb12ffe7b77 +07a3943227ebdf1db521865cebc527e018f85290 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) + aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,246 +36,249 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3749061 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_982280 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [39:13, 38:49] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:45, 07:07](1789 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:15, 53:21] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:01, 20:46](1662 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:17, 22:34](1883 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:18, 10:25](990 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:34, 23:56](1626 MB) - -PASS -- COMPILE 's2swa_intel' [39:14, 39:03] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:22, 07:46](1829 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:46, 07:47](1825 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:54, 04:24](1716 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:22, 07:49](1866 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:53, 04:39](1730 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:17, 07:29](2265 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:17, 07:47](1812 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:45, 06:37](1785 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:45, 07:44](1829 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:36, 07:20](1792 MB) - -PASS -- COMPILE 's2sw_intel' [37:13, 36:56] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:37, 05:55](1667 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:47, 05:47](1706 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:29] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:57, 11:34](1845 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:15] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:25, 07:17](1681 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:21] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:52, 05:47](1722 MB) - -PASS -- COMPILE 's2s_intel' [33:13, 32:20] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:42](2801 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:12, 03:34](2794 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:03, 02:00](2273 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:37] ( 1608 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:55, 07:35](1811 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:14, 46:31] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:41, 20:51](1684 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 10:27](1031 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:34, 24:08](1654 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:59] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:41, 32:11](1691 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:35] ( 1 warnings 1151 remarks ) -PASS -- TEST 'control_flake_intel' [05:33, 04:38](644 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [12:19, 04:08](1532 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:33, 04:05](1552 MB) -PASS -- TEST 'control_latlon_intel' [12:15, 04:04](1510 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:24, 04:09](1546 MB) -PASS -- TEST 'control_c48_intel' [14:31, 11:56](1729 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:43, 10:06](846 MB) -PASS -- TEST 'control_c192_intel' [19:42, 14:12](1689 MB) -PASS -- TEST 'control_c384_intel' [27:44, 18:16](1809 MB) -PASS -- TEST 'control_c384gdas_intel' [27:02, 13:35](1018 MB) -PASS -- TEST 'control_stochy_intel' [03:31, 02:20](601 MB) -PASS -- TEST 'control_stochy_restart_intel' [08:32, 01:22](441 MB) -PASS -- TEST 'control_lndp_intel' [03:32, 02:11](600 MB) -PASS -- TEST 'control_iovr4_intel' [04:36, 03:26](600 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 03:27](591 MB) -PASS -- TEST 'control_p8_intel' [12:38, 03:57](1575 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [15:06, 04:00](1580 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:56, 04:01](1544 MB) -PASS -- TEST 'control_restart_p8_intel' [04:19, 02:12](813 MB) -PASS -- TEST 'control_noqr_p8_intel' [12:44, 04:01](1525 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:11, 02:12](837 MB) -PASS -- TEST 'control_decomp_p8_intel' [12:39, 04:12](1528 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:57, 03:41](1660 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:26, 07:15](1548 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:08, 05:03](1636 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:57, 04:05](1555 MB) -PASS -- TEST 'merra2_thompson_intel' [14:19, 04:29](1548 MB) -PASS -- TEST 'regional_control_intel' [17:12, 07:14](767 MB) -PASS -- TEST 'regional_restart_intel' [04:45, 03:50](940 MB) -PASS -- TEST 'regional_decomp_intel' [10:12, 07:33](763 MB) -PASS -- TEST 'regional_2threads_intel' [08:14, 04:23](755 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [17:19, 07:17](760 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [14:44, 07:12](763 MB) - -PASS -- COMPILE 'rrfs_intel' [33:13, 33:04] ( 3 warnings 1119 remarks ) -PASS -- TEST 'rap_control_intel' [18:28, 10:16](986 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:13, 05:45](1221 MB) -PASS -- TEST 'rap_decomp_intel' [17:58, 10:48](987 MB) -PASS -- TEST 'rap_2threads_intel' [14:57, 09:43](1086 MB) -PASS -- TEST 'rap_restart_intel' [07:20, 05:18](995 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:24, 10:10](995 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:03, 10:49](975 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 07:35](998 MB) -PASS -- TEST 'hrrr_control_intel' [08:03, 05:15](993 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:06, 05:26](983 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:31, 04:47](1059 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:53](921 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:26, 10:04](987 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 12:28](1946 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:28, 12:15](1938 MB) - -PASS -- COMPILE 'csawmg_intel' [32:14, 31:16] ( 1 warnings 1096 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:43, 08:08](688 MB) -PASS -- TEST 'control_ras_intel' [05:24, 04:30](663 MB) - -PASS -- COMPILE 'wam_intel' [30:14, 29:45] ( 982 remarks ) -PASS -- TEST 'control_wam_intel' [03:26, 02:44](501 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [32:13, 31:53] ( 1295 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:29, 03:38](1570 MB) -PASS -- TEST 'regional_control_faster_intel' [07:44, 06:38](770 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 05:40] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 03:25](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:55, 03:29](1556 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:26, 03:50](766 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:25, 03:31](765 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:45, 05:23](812 MB) -PASS -- TEST 'control_ras_debug_intel' [05:25, 03:32](779 MB) -PASS -- TEST 'control_diag_debug_intel' [06:03, 03:23](1628 MB) -PASS -- TEST 'control_debug_p8_intel' [06:02, 03:40](1587 MB) -PASS -- TEST 'regional_debug_intel' [24:43, 21:59](776 MB) -PASS -- TEST 'rap_control_debug_intel' [07:28, 06:09](1150 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:27, 05:56](1150 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 06:09](1147 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:04](1154 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:03](1149 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:44, 06:24](1236 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:28, 06:16](1152 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:28, 06:11](1152 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:28, 06:08](1153 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 06:08](1149 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:58](1148 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:06](1150 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 09:57](1148 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 05:59](1145 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:23](1150 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:24, 06:06](1151 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:27, 10:31](1157 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:55] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:24, 06:10](444 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:12, 30:25] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:38, 05:19](1080 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:03, 08:34](904 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:02, 04:26](871 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:03, 08:14](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 04:05](904 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 04:40](859 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:20, 06:18](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:35](842 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:13, 43:10] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:05, 02:58](1105 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:49, 01:25](1050 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:37](1026 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:48] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:59, 05:33](913 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:14] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 06:03](1030 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 05:59](1024 MB) -PASS -- TEST 'conus13km_debug_intel' [19:56, 18:29](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:56, 18:35](850 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:44](1088 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:51, 18:22](1202 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:10] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:13](1073 MB) - -PASS -- COMPILE 'hafsw_intel' [35:13, 35:05] ( 1 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:29, 07:01](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:29](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:48, 09:22](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:33, 16:24](803 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:55, 18:17](823 MB) -PASS -- TEST 'gnv1_nested_intel' [07:35, 05:48](779 MB) - -PASS -- COMPILE 'hafs_all_intel' [32:13, 32:07] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:22, 08:51](769 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:25, 08:43](755 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:49] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 03:38](1057 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:14](1029 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:33](920 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 03:38](926 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 03:36](935 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:38](1062 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:38](1064 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:30](921 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 07:58](886 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 07:57](839 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1067 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:25, 05:06](2395 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:24, 05:05](2347 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:03](1014 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 08:04] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 03:38](1051 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:57] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:38](234 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:24](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:53](256 MB) - -PASS -- COMPILE 'atml_intel' [34:13, 33:54] ( 8 warnings 1189 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:50, 08:05](1601 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:47, 08:12](1597 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:55](864 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:20] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:58, 07:23](1627 MB) - -PASS -- COMPILE 'atmw_intel' [33:13, 32:35] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:28, 02:19](1595 MB) - -PASS -- COMPILE 'atmaero_intel' [31:13, 30:57] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:31, 05:21](1702 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:22](1729 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:21, 06:33](1729 MB) +PASS -- COMPILE 's2swa_32bit_intel' [40:14, 39:29] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:21, 09:11](1793 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:16, 54:33] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:27, 23:36](1661 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:18, 23:44](1881 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:14, 11:27](996 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:52, 26:47](1632 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:16, 50:33] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [27:56, 23:34](1645 MB) + +PASS -- COMPILE 's2swa_intel' [40:14, 39:29] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [25:00, 11:01](1810 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:42, 10:27](1828 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:32, 06:48](1712 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [24:08, 10:30](1838 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:23, 07:34](1731 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:47, 08:10](2263 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [21:54, 09:26](1825 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:15, 09:25](1780 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:57, 08:43](1806 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [26:33, 10:07](1784 MB) + +PASS -- COMPILE 's2sw_intel' [38:14, 37:36] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:40, 07:29](1665 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:53, 07:04](1706 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:14, 06:01] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:23, 11:39](1849 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:10] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:41, 08:34](1677 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [36:16, 33:11] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:56, 08:02](1713 MB) + +PASS -- COMPILE 's2s_intel' [36:17, 33:55] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:37, 12:47](2800 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 03:39](2796 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:17, 02:01](2265 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:28, 33:54] ( 1608 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:58, 08:02](1818 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [50:16, 48:55] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:27, 24:10](1688 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:24, 11:12](1038 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:06, 25:15](1657 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:59] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:51, 32:42](1693 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [36:20, 35:40] ( 1 warnings 1151 remarks ) +PASS -- TEST 'control_flake_intel' [13:39, 07:39](646 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [19:46, 05:10](1542 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [24:56, 04:41](1557 MB) +PASS -- TEST 'control_latlon_intel' [20:37, 04:49](1547 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:41, 06:48](1546 MB) +PASS -- TEST 'control_c48_intel' [19:59, 12:06](1730 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:19, 10:29](843 MB) +PASS -- TEST 'control_c192_intel' [23:00, 18:45](1681 MB) +PASS -- TEST 'control_c384_intel' [47:37, 24:42](1816 MB) +PASS -- TEST 'control_c384gdas_intel' [43:07, 19:08](1020 MB) +PASS -- TEST 'control_stochy_intel' [13:37, 04:40](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [11:59, 01:38](435 MB) +PASS -- TEST 'control_lndp_intel' [09:37, 03:06](599 MB) +PASS -- TEST 'control_iovr4_intel' [15:45, 06:03](595 MB) +PASS -- TEST 'control_iovr5_intel' [11:39, 05:01](596 MB) +PASS -- TEST 'control_p8_intel' [23:17, 04:34](1577 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [20:33, 05:20](1582 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [17:38, 06:14](1577 MB) +PASS -- TEST 'control_restart_p8_intel' [07:58, 03:10](816 MB) +PASS -- TEST 'control_noqr_p8_intel' [19:31, 05:15](1565 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:32, 02:18](846 MB) +PASS -- TEST 'control_decomp_p8_intel' [23:06, 04:31](1567 MB) +PASS -- TEST 'control_2threads_p8_intel' [21:04, 04:45](1660 MB) +PASS -- TEST 'control_p8_lndp_intel' [22:42, 08:46](1569 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [23:35, 06:10](1642 MB) +PASS -- TEST 'control_p8_mynn_intel' [17:45, 06:20](1578 MB) +PASS -- TEST 'merra2_thompson_intel' [21:45, 05:41](1591 MB) +PASS -- TEST 'regional_control_intel' [29:43, 11:55](764 MB) +PASS -- TEST 'regional_restart_intel' [11:15, 05:53](937 MB) +PASS -- TEST 'regional_decomp_intel' [26:39, 12:38](763 MB) +PASS -- TEST 'regional_2threads_intel' [09:33, 06:56](755 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [21:42, 11:46](760 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [28:41, 09:06](759 MB) + +PASS -- COMPILE 'rrfs_intel' [34:15, 33:47] ( 3 warnings 1119 remarks ) +PASS -- TEST 'rap_control_intel' [22:26, 12:23](996 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:38, 06:22](1212 MB) +PASS -- TEST 'rap_decomp_intel' [23:15, 13:21](982 MB) +PASS -- TEST 'rap_2threads_intel' [22:26, 11:52](1087 MB) +PASS -- TEST 'rap_restart_intel' [09:45, 06:47](989 MB) +PASS -- TEST 'rap_sfcdiff_intel' [23:56, 13:48](992 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:08, 14:10](984 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:01, 08:49](1003 MB) +PASS -- TEST 'hrrr_control_intel' [14:06, 06:45](991 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:05, 06:53](984 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:58, 06:10](1062 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:53, 04:26](920 MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:59, 12:57](989 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [20:35, 16:29](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:31, 15:43](1926 MB) + +PASS -- COMPILE 'csawmg_intel' [32:16, 31:52] ( 1 warnings 1096 remarks ) +PASS -- TEST 'control_csawmg_intel' [17:48, 11:39](690 MB) +PASS -- TEST 'control_ras_intel' [12:30, 06:11](666 MB) + +PASS -- COMPILE 'wam_intel' [30:14, 29:59] ( 982 remarks ) +PASS -- TEST 'control_wam_intel' [06:20, 03:56](505 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [49:16, 33:07] ( 1295 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:04, 03:41](1577 MB) +PASS -- TEST 'regional_control_faster_intel' [12:01, 07:01](769 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:13, 06:39] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:37, 04:01](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:41, 03:35](1570 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:37, 03:48](767 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:38, 03:25](761 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:29, 05:43](808 MB) +PASS -- TEST 'control_ras_debug_intel' [04:38, 03:28](775 MB) +PASS -- TEST 'control_diag_debug_intel' [05:39, 03:54](1618 MB) +PASS -- TEST 'control_debug_p8_intel' [07:56, 03:51](1586 MB) +PASS -- TEST 'regional_debug_intel' [24:40, 22:34](780 MB) +PASS -- TEST 'rap_control_debug_intel' [07:38, 06:11](1150 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:39, 06:14](1140 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:23](1150 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:29, 06:17](1149 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 06:15](1147 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:46, 06:39](1236 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 06:50](1153 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 06:41](1151 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:51, 06:17](1152 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:54, 06:18](1152 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:34, 06:10](1146 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:51, 06:09](1151 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:37, 10:11](1151 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:35, 06:21](1145 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:45](1155 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:04, 06:20](1154 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:54, 10:29](1157 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:13, 04:54] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [08:28, 06:38](452 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:23] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:25, 05:35](1087 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:06, 09:56](903 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:11, 04:46](865 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:47, 09:00](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:51, 04:25](912 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:08, 04:55](855 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:32](893 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 03:11](843 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:19, 43:28] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:32, 02:59](1108 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:52, 01:44](1041 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:57, 01:49](1025 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:15, 31:09] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:11, 06:04](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:21] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:33, 06:11](1031 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:32, 06:02](1031 MB) +PASS -- TEST 'conus13km_debug_intel' [23:10, 19:02](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:10, 19:16](855 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:02, 10:41](1079 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:04, 18:53](1204 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:06] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:26, 06:15](1069 MB) + +PASS -- COMPILE 'hafsw_intel' [36:15, 35:28] ( 1 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:37, 08:29](714 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:42, 10:10](1082 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:55, 13:00](764 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [24:43, 20:08](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:54, 20:35](825 MB) +PASS -- TEST 'gnv1_nested_intel' [14:18, 09:28](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:15, 33:05] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:38, 09:57](767 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:36, 11:49](748 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:17, 08:12] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:56](1059 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 02:17](1017 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 04:13](923 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:51](922 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 03:49](916 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:48](1064 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:49](1061 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:48](926 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:49, 08:06](882 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:50, 08:03](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 03:48](1065 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 05:18](2403 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:32](2384 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:41] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:26, 08:02](1013 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:59] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:44](1061 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:47] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:39, 02:17](231 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 02:01](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:31, 01:10](251 MB) + +PASS -- COMPILE 'atml_intel' [35:14, 34:30] ( 8 warnings 1189 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:06, 14:07](1610 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [20:08, 13:46](1609 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:20, 06:19](865 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:41] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:29, 07:50](1614 MB) + +PASS -- COMPILE 'atmw_intel' [33:25, 32:55] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:55, 02:35](1601 MB) + +PASS -- COMPILE 'atmaero_intel' [31:14, 31:03] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:51, 05:35](1702 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:43, 09:56](1720 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:21, 09:49](1737 MB) SYNOPSIS: -Starting Date/Time: 20240510 17:44:38 -Ending Date/Time: 20240510 21:07:06 -Total Time: 03h:23m:06s -Compiles Completed: 33/33 -Tests Completed: 161/161 +Starting Date/Time: 20240515 03:36:54 +Ending Date/Time: 20240515 07:32:42 +Total Time: 03h:56m:31s +Compiles Completed: 34/34 +Tests Completed: 162/162 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 7e0f13836d..0e09bf3788 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: -57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa +c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488) + b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) + aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,277 +36,280 @@ 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-20240503 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_114590 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4366 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 14:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:11, 05:26](3177 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 20:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 17:11](1747 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:00, 18:20](2023 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 08:21](1109 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 19:22](1655 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 05:26] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:44, 23:16](1685 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 13:52] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:49, 05:41](3206 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:13, 05:44](3216 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:00, 03:26](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:49, 05:52](3232 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:00, 03:27](3273 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:08, 06:09](3559 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:49, 05:47](3202 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:05, 04:49](3070 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:12, 05:44](3209 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:27, 10:25](3342 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:40, 06:30](3625 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:38, 11:12](4119 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:01, 06:49](4370 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:59, 05:27](3176 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 13:39] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:44, 04:40](1736 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:05, 04:27](1783 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 04:58] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:29, 08:32](3248 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 04:48] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:13, 05:55](1753 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 13:07] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:22, 04:25](1781 MB) - -PASS -- COMPILE 's2s_intel' [17:12, 13:14] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:57, 08:10](2836 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:56, 02:22](2833 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:02, 01:27](2294 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:11, 18:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:47, 05:26](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:23, 17:25](1764 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:20](1169 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:12, 19:27](1673 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:03] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 24:32](1715 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:27, 03:29](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:57, 02:54](1595 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:02](1596 MB) -PASS -- TEST 'control_latlon_intel' [05:52, 02:52](1594 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:01, 03:01](1598 MB) -PASS -- TEST 'control_c48_intel' [09:52, 07:07](1770 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:33, 06:01](872 MB) -PASS -- TEST 'control_c192_intel' [13:09, 10:29](1741 MB) -PASS -- TEST 'control_c384_intel' [15:15, 11:30](2006 MB) -PASS -- TEST 'control_c384gdas_intel' [12:58, 08:56](1354 MB) -PASS -- TEST 'control_stochy_intel' [04:25, 01:40](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [08:24, 00:59](502 MB) -PASS -- TEST 'control_lndp_intel' [04:25, 01:36](658 MB) -PASS -- TEST 'control_iovr4_intel' [05:28, 02:29](648 MB) -PASS -- TEST 'control_iovr5_intel' [05:27, 02:28](654 MB) -PASS -- TEST 'control_p8_intel' [09:28, 03:00](1630 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:24, 02:57](1634 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:41, 02:51](1640 MB) -PASS -- TEST 'control_restart_p8_intel' [07:17, 01:41](890 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:23, 02:54](1626 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:08, 01:36](930 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:24, 03:02](1615 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:23, 03:05](1712 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:53, 05:15](1637 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:34, 03:56](1693 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:34, 02:59](1640 MB) -PASS -- TEST 'merra2_thompson_intel' [10:43, 03:22](1645 MB) -PASS -- TEST 'regional_control_intel' [10:45, 05:08](860 MB) -PASS -- TEST 'regional_restart_intel' [05:41, 02:46](1023 MB) -PASS -- TEST 'regional_decomp_intel' [10:41, 05:30](851 MB) -PASS -- TEST 'regional_2threads_intel' [08:39, 03:40](848 MB) -PASS -- TEST 'regional_noquilt_intel' [10:42, 05:05](1364 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:44, 05:04](859 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:44, 05:05](856 MB) -PASS -- TEST 'regional_wofs_intel' [12:39, 06:44](1921 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:26] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [14:32, 07:44](1106 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:11, 04:40](1301 MB) -PASS -- TEST 'rap_decomp_intel' [11:07, 08:07](1025 MB) -PASS -- TEST 'rap_2threads_intel' [11:00, 07:54](1177 MB) -PASS -- TEST 'rap_restart_intel' [05:02, 04:06](1098 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:20, 07:44](1099 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:04, 08:11](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:27, 05:50](1124 MB) -PASS -- TEST 'hrrr_control_intel' [10:11, 04:06](1037 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:05, 04:10](1022 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:00, 03:26](1114 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:25, 02:11](993 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:25, 07:36](1102 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:24, 09:10](1997 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:25, 08:57](2074 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:59] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:41, 06:03](746 MB) -PASS -- TEST 'control_ras_intel' [06:25, 03:20](740 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 10:44] -PASS -- TEST 'control_wam_intel' [05:20, 02:05](658 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 11:33] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:31, 02:40](1633 MB) -PASS -- TEST 'regional_control_faster_intel' [07:38, 04:49](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:37] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:47, 02:43](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:47, 02:41](1616 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:22, 03:09](822 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:21, 02:47](821 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:10](866 MB) -PASS -- TEST 'control_ras_debug_intel' [05:21, 02:53](828 MB) -PASS -- TEST 'control_diag_debug_intel' [04:49, 02:51](1672 MB) -PASS -- TEST 'control_debug_p8_intel' [03:46, 02:44](1648 MB) -PASS -- TEST 'regional_debug_intel' [18:43, 17:18](839 MB) -PASS -- TEST 'rap_control_debug_intel' [05:26, 04:54](1204 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:24, 04:51](1200 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:52](1207 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:54](1200 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 04:56](1204 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:21](1286 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 04:52](1199 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:59](1198 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:05](1197 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:39](1211 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:49](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:53](1196 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:50](1206 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:47](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 06:02](1200 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:53](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:25](1216 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:45] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:21, 05:17](506 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:26](1176 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:20, 06:27](1054 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:29, 03:24](981 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:00, 06:45](1098 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:12, 02:58](960 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:36](919 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:20, 04:58](1043 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:56](923 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:01, 02:05](1205 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:48, 01:03](1124 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:16](1106 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 10:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:16](992 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:54](1076 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:55](1078 MB) -PASS -- TEST 'conus13km_debug_intel' [15:52, 14:26](1229 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:39](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:55](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 14:46](1294 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:21] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:28, 04:41](1124 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 12:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:26](742 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:51](1120 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:20, 06:58](831 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:20](864 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:59](884 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 06:11](499 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:29](517 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 03:10](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:19, 08:00](518 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 04:12](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:50, 04:03](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 05:17](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:25, 01:23](408 MB) -PASS -- TEST 'gnv1_nested_intel' [09:57, 04:36](803 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:10, 04:34] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:51, 13:08](567 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:11, 12:40] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:01, 09:48](671 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:01, 09:55](740 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 12:14] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:05, 07:01](665 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:11, 12:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:23](827 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:13, 06:31](816 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:00, 16:03](1210 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:16] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:39](1137 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:39](1089 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:31](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:38](1022 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:36](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:34](1135 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:37](1129 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:36](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:14, 05:55](1060 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:12, 06:00](1040 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:45](1125 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:35](2495 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:31](2436 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:56] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:18](1062 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:15, 06:37] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:38](1129 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:12] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:49](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:51](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:35](323 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 12:14] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:39, 04:15](1614 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:41, 04:21](1607 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:28](905 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 04:03] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:31, 05:41](1619 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:05] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:50](1674 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 10:40] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:19, 03:58](3024 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:21, 04:51](3095 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 04:57](3096 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 03:13] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:44, 20:52](4577 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 15:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:00, 05:31](3174 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 19:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:10, 17:11](1738 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:18, 18:18](2024 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:19, 08:37](1108 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:07, 19:27](1644 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 18:56] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:50, 16:59](1744 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 05:05] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:16, 22:54](1696 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 15:46] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:51, 05:45](3209 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:14, 05:45](3213 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:08, 03:27](3253 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:51, 05:48](3238 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:07, 03:32](3279 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:27, 06:17](3555 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:51, 05:51](3133 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:48, 04:57](3065 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:07, 05:45](3210 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:16, 10:27](3342 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:09, 06:43](3625 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:39, 10:54](4116 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:23, 07:05](4285 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:51, 05:32](3173 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 14:00] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:08, 04:48](1735 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:31](1780 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 05:07] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:36, 08:39](3249 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 04:56] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:16, 06:01](1747 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 13:24] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:32, 04:22](1784 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 12:24] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:01, 08:08](2832 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:04, 02:21](2831 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:08, 01:22](2305 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:11, 20:00] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:54, 05:28](3211 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 18:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:18, 17:20](1772 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:31, 08:34](1173 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:23, 19:29](1686 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 04:16] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 25:22](1712 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:10, 13:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:22, 03:33](699 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 03:00](1593 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 03:03](1604 MB) +PASS -- TEST 'control_latlon_intel' [04:40, 03:01](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:59, 02:58](1594 MB) +PASS -- TEST 'control_c48_intel' [07:52, 07:08](1760 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:33, 06:00](874 MB) +PASS -- TEST 'control_c192_intel' [12:00, 10:37](1750 MB) +PASS -- TEST 'control_c384_intel' [15:11, 12:37](2013 MB) +PASS -- TEST 'control_c384gdas_intel' [12:15, 09:01](1356 MB) +PASS -- TEST 'control_stochy_intel' [02:29, 01:45](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:27, 01:06](504 MB) +PASS -- TEST 'control_lndp_intel' [02:23, 01:41](654 MB) +PASS -- TEST 'control_iovr4_intel' [03:25, 02:28](656 MB) +PASS -- TEST 'control_iovr5_intel' [03:29, 02:31](652 MB) +PASS -- TEST 'control_p8_intel' [04:21, 02:59](1637 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:17, 02:58](1632 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:47, 02:54](1641 MB) +PASS -- TEST 'control_restart_p8_intel' [05:15, 01:46](880 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:29, 02:57](1622 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:26, 01:41](933 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:22, 03:09](1618 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:20, 03:04](1721 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:03, 05:23](1634 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:44, 03:54](1700 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:32, 03:05](1635 MB) +PASS -- TEST 'merra2_thompson_intel' [07:50, 03:21](1640 MB) +PASS -- TEST 'regional_control_intel' [08:44, 05:07](859 MB) +PASS -- TEST 'regional_restart_intel' [09:47, 02:50](1027 MB) +PASS -- TEST 'regional_decomp_intel' [09:46, 05:34](846 MB) +PASS -- TEST 'regional_2threads_intel' [04:39, 03:42](845 MB) +PASS -- TEST 'regional_noquilt_intel' [08:42, 05:13](1365 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:44, 05:16](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:43, 05:15](858 MB) +PASS -- TEST 'regional_wofs_intel' [07:43, 06:46](1921 MB) + +PASS -- COMPILE 'rrfs_intel' [12:10, 12:07] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:31, 07:53](1103 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:04, 04:41](1302 MB) +PASS -- TEST 'rap_decomp_intel' [10:07, 08:08](1026 MB) +PASS -- TEST 'rap_2threads_intel' [10:07, 07:54](1177 MB) +PASS -- TEST 'rap_restart_intel' [07:30, 04:07](1105 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:33, 07:50](1103 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:04, 08:11](1036 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:28, 05:59](1128 MB) +PASS -- TEST 'hrrr_control_intel' [06:02, 04:06](1032 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:59, 04:17](1033 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 03:28](1110 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:25, 02:12](955 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:25, 07:48](1100 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:20](1935 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 08:59](2078 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:56] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:46, 06:05](747 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:25](738 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 10:24] +PASS -- TEST 'control_wam_intel' [03:21, 02:09](651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 11:15] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:35, 02:46](1620 MB) +PASS -- TEST 'regional_control_faster_intel' [11:42, 04:41](854 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:20] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:59, 02:42](1617 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:04, 02:43](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:27, 03:12](817 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:26, 02:48](816 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:01, 04:16](858 MB) +PASS -- TEST 'control_ras_debug_intel' [07:26, 02:52](827 MB) +PASS -- TEST 'control_diag_debug_intel' [08:02, 02:51](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [08:01, 02:59](1650 MB) +PASS -- TEST 'regional_debug_intel' [22:58, 17:25](845 MB) +PASS -- TEST 'rap_control_debug_intel' [10:28, 05:07](1205 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:30, 04:55](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [12:25, 04:58](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [11:28, 05:01](1205 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:26, 04:59](1203 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:36, 05:12](1288 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:26, 05:02](1214 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:24, 05:02](1200 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:27, 05:00](1203 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:25, 05:27](1159 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:26, 04:50](1158 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [11:28, 05:05](1207 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:26, 08:06](1199 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:28, 04:52](1199 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:26, 05:38](1198 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:23, 04:54](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:32, 08:24](1212 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:09] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:23, 04:59](506 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 04:29](1164 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:01, 06:32](1046 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:50, 03:27](989 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:13, 06:44](1095 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:53, 02:58](974 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 03:45](919 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:27, 04:59](1041 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:56](903 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:11, 13:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:02, 02:13](1203 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:53, 01:01](1126 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:18](1109 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:51, 04:23](989 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:12] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:53](1084 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:51](1082 MB) +PASS -- TEST 'conus13km_debug_intel' [15:52, 14:19](1227 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:56](926 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:30](1155 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 13:46](1289 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:23] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:59](1116 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 12:43] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:44](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:23](1116 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:06](838 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:19, 13:22](858 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:33, 15:26](891 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:02, 06:21](499 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 07:46](519 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 03:23](321 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:39, 08:13](481 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:51, 04:16](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:59, 03:59](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 05:23](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:29, 01:25](400 MB) +PASS -- TEST 'gnv1_nested_intel' [10:03, 04:38](801 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 03:55] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:00, 13:13](572 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:26] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:08, 09:55](601 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:10, 09:51](742 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:44] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:10, 07:16](757 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 12:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:16, 06:31](824 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 06:36](818 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:59, 16:02](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:08] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 02:39](1123 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:47](1070 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:35](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:38](1010 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:42](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:39](1134 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:38](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:34](1012 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:21, 06:01](1057 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 06:00](1031 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:52](1121 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:41](2488 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:22, 03:44](2485 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:45] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:18](1048 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:12] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:42](1136 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:01] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:47](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:53](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:36](320 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 13:46] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:42, 04:17](1601 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:41, 04:16](1602 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:51, 02:21](902 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 04:28] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:32, 05:41](1622 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 12:04] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 01:52](1674 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 12:07] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:25, 03:59](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 04:52](3092 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:11, 05:00](3031 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:32] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:52, 20:58](4573 MB) SYNOPSIS: -Starting Date/Time: 20240512 07:31:45 -Ending Date/Time: 20240512 09:04:54 -Total Time: 01h:33m:38s -Compiles Completed: 38/38 -Tests Completed: 182/182 +Starting Date/Time: 20240514 13:54:30 +Ending Date/Time: 20240514 15:33:04 +Total Time: 01h:39m:28s +Compiles Completed: 39/39 +Tests Completed: 183/183 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 93b9c16d21..d7ba8f67e0 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,27 +1,27 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -bd6721bc051892b41f039008a028aaef572d7c78 +c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (7147dac) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (9711488) + b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) + aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (201912_public_release-390-gaabfdcc) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4229-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) @@ -36,323 +36,241 @@ 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-20240503 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_123747 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_221962 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:26, 11:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:18, 01:24](2974 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:34, 16:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:43, 01:59](1596 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [04:36, 01:43](1712 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [04:19, 02:16](847 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:44, 01:35](1567 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:52] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [47:27, 01:57](1600 MB) - -PASS -- COMPILE 's2swa_intel' [24:40, 24:02] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [28:04, 01:06](3002 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:04, 01:37](3004 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:39, 02:02](3061 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [28:04, 01:08](3025 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [19:47, 01:56](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [28:03, 01:09](3314 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [28:03, 01:14](3004 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [28:04, 01:33](2930 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:04, 01:29](3005 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:12, 04:11](3948 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:21, 04:19](4247 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [28:04, 01:44](2975 MB) - -PASS -- COMPILE 's2sw_intel' [11:24, 10:28] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [41:19, 00:50](1585 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:38, 01:48](1640 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [20:33, 20:19] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:10, 01:59](1632 MB) - -PASS -- COMPILE 's2s_intel' [21:36, 21:17] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [31:07, 00:43](2645 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [31:07, 01:27](2665 MB) -PASS -- TEST 'cpld_restart_c48_intel' [27:03, 01:10](2105 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:40, 20:11] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [02:27, 01:47](3004 MB) - -FAILED: UNABLE TO COMPILE -- COMPILE 's2sw_pdlib_intel' [, ] -FAILED: UNABLE TO START RUN -- TEST 'cpld_control_pdlib_p8_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:24, 09:17] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:21, 01:43](1613 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [27:42, 26:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [19:43, 00:24](576 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [19:43, 00:27](1468 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:43, 00:28](1475 MB) -PASS -- TEST 'control_latlon_intel' [19:43, 00:23](1474 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:43, 00:33](1474 MB) -PASS -- TEST 'control_c48_intel' [19:42, 00:56](1597 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [19:42, 00:50](713 MB) -PASS -- TEST 'control_c192_intel' [19:43, 00:40](1583 MB) -PASS -- TEST 'control_c384_intel' [19:47, 01:50](1904 MB) -PASS -- TEST 'control_c384gdas_intel' [19:47, 02:36](1086 MB) -PASS -- TEST 'control_stochy_intel' [19:43, 00:26](532 MB) -PASS -- TEST 'control_stochy_restart_intel' [17:17, 01:04](332 MB) -PASS -- TEST 'control_lndp_intel' [19:43, 00:31](525 MB) -PASS -- TEST 'control_iovr4_intel' [19:43, 00:45](523 MB) -PASS -- TEST 'control_iovr5_intel' [19:43, 00:43](525 MB) -PASS -- TEST 'control_p8_intel' [19:43, 01:38](1499 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [19:43, 01:57](1500 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [19:43, 02:01](1503 MB) -PASS -- TEST 'control_restart_p8_intel' [14:28, 01:04](693 MB) -PASS -- TEST 'control_noqr_p8_intel' [19:43, 01:39](1492 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [14:27, 01:03](698 MB) -PASS -- TEST 'control_decomp_p8_intel' [19:38, 01:31](1499 MB) -PASS -- TEST 'control_2threads_p8_intel' [19:28, 01:14](1595 MB) -PASS -- TEST 'control_p8_lndp_intel' [19:28, 01:11](1503 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:30, 01:54](1554 MB) -PASS -- TEST 'control_p8_mynn_intel' [17:17, 01:50](1514 MB) -PASS -- TEST 'merra2_thompson_intel' [16:14, 01:59](1509 MB) -PASS -- TEST 'regional_control_intel' [16:12, 00:18](606 MB) -PASS -- TEST 'regional_restart_intel' [10:30, 00:22](777 MB) -PASS -- TEST 'regional_decomp_intel' [15:58, 00:55](609 MB) -PASS -- TEST 'regional_2threads_intel' [15:55, 00:59](668 MB) -PASS -- TEST 'regional_noquilt_intel' [15:49, 00:20](1147 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:46, 00:21](606 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:42, 00:13](608 MB) -PASS -- TEST 'regional_wofs_intel' [15:14, 00:26](1579 MB) - -PASS -- COMPILE 'rrfs_intel' [24:41, 23:37] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [14:56, 01:30](918 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:51, 01:07](1101 MB) -PASS -- TEST 'rap_decomp_intel' [14:38, 01:49](919 MB) -PASS -- TEST 'rap_2threads_intel' [14:29, 01:39](1001 MB) -PASS -- TEST 'rap_restart_intel' [06:08, 01:18](787 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:14, 01:04](915 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:08, 01:36](916 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:53, 01:48](788 MB) -PASS -- TEST 'hrrr_control_intel' [14:08, 01:21](910 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [13:00, 01:07](910 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:58, 01:35](989 MB) -PASS -- TEST 'hrrr_control_restart_intel' [08:46, 01:03](742 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:29, 01:15](912 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:54, 00:56](1875 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:38, 01:14](1861 MB) - -PASS -- COMPILE 'csawmg_intel' [17:33, 16:25] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [23:45, 00:30](603 MB) -PASS -- TEST 'control_ras_intel' [23:45, 00:51](559 MB) - -PASS -- COMPILE 'wam_intel' [32:52, 31:41] -PASS -- TEST 'control_wam_intel' [07:25, 01:07](272 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 11:50] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:11, 02:00](1510 MB) -PASS -- TEST 'regional_control_faster_intel' [11:01, 00:30](611 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:29, 13:19] ( 870 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:16, 01:19](1487 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:27, 00:28](1491 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:06, 00:53](692 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:02, 01:11](692 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:59, 00:38](730 MB) -PASS -- TEST 'control_ras_debug_intel' [09:18, 01:09](701 MB) -PASS -- TEST 'control_diag_debug_intel' [08:42, 01:22](1555 MB) -PASS -- TEST 'control_debug_p8_intel' [08:27, 01:07](1524 MB) -PASS -- TEST 'regional_debug_intel' [08:07, 00:47](630 MB) -PASS -- TEST 'rap_control_debug_intel' [07:53, 00:56](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:50, 01:02](1070 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:50, 00:57](1073 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:53, 00:55](1071 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:48, 00:52](1074 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 00:50](1156 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:08, 00:55](1074 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:43, 00:47](1077 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:40, 00:50](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 00:55](1075 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:37, 00:58](1075 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 00:56](1071 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [05:10, 00:50](1075 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:09, 00:59](1067 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [04:57, 01:07](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:49, 00:46](1077 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB) - -PASS -- COMPILE 'wam_debug_intel' [07:21, 06:55] ( 842 warnings ) -PASS -- TEST 'control_wam_debug_intel' [20:42, 00:58](297 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:38, 17:53] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [53:39, 01:28](954 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [53:38, 01:05](790 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [53:38, 02:33](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:38, 01:34](852 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [, ]( MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:20, 02:09](787 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [46:26, 01:29](685 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:36, 00:20](671 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:33, 17:43] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:43, 01:03](1002 MB) -PASS -- TEST 'conus13km_2threads_intel' [59:52, 00:54](1007 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [59:30, 00:42](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:32, 16:53] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [02:21, 01:23](806 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [21:37, 20:54] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [58:05, 01:06](959 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:05, 01:14](951 MB) -PASS -- TEST 'conus13km_debug_intel' [58:05, 00:30](1038 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [58:05, 01:15](707 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [57:24, 00:30](1040 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:12, 00:25](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:25, 10:56] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [03:40, 00:54](981 MB) - -PASS -- COMPILE 'hafsw_intel' [15:31, 14:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [02:11, 02:12](622 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [02:05, 00:30](965 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:21, 01:48](659 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [01:19, 01:29](702 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [01:20, 01:33](715 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:44, 01:10](392 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [00:24, 02:13](402 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [00:24, 01:29](282 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:01, 02:35](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:17, 01:37](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:14, 00:56](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:14, 00:53](495 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:12, 00:22](320 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:28, 12:01] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [03:36, 00:41](506 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:26, 10:24] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:08, 01:36](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:54, 01:38](707 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:38, 14:23] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:13, 00:50](710 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:27, 12:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [53:58, 01:19](668 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:58, 01:16](651 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:56, 00:27](882 MB) - -PASS -- COMPILE 'atml_intel' [19:35, 18:36] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [44:34, 01:29](1544 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [44:34, 02:23](1541 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [36:40, 00:23](744 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:18, 03:44] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [50:18, 01:42](1565 MB) - -PASS -- COMPILE 'atmaero_intel' [13:27, 13:04] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [49:52, 01:26](2851 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [49:52, 01:52](2913 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:52, 01:52](2923 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:18, 04:28] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [56:40, 01:28](4439 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:29, 10:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:27, 01:19](2978 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:31, 11:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [48:26, 02:03](1598 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:22, 01:25](1713 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [30:22, 02:01](849 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:27, 01:24](1572 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:31, 11:33] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [48:26, 01:04](1591 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [21:39, 20:28] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [39:18, 01:48](1606 MB) + +PASS -- COMPILE 's2swa_intel' [23:42, 22:48] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [37:14, 01:18](3007 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:14, 01:35](3003 MB) +PASS -- TEST 'cpld_restart_p8_intel' [28:52, 01:54](3060 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [37:14, 01:14](3031 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [28:52, 01:46](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [37:14, 01:14](3313 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [37:14, 01:14](2998 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [37:15, 01:38](2927 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:14, 01:35](3007 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [37:23, 04:27](3948 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:47, 04:12](4251 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [37:14, 01:51](2971 MB) + +PASS -- COMPILE 's2sw_intel' [21:41, 21:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [39:15, 01:47](1592 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [39:15, 01:55](1633 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:28, 09:47] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [50:28, 02:07](1639 MB) + +PASS -- COMPILE 's2s_intel' [32:53, 32:35] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [28:02, 00:39](2652 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [28:02, 01:32](2668 MB) +PASS -- TEST 'cpld_restart_c48_intel' [23:46, 01:03](2103 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:34, 16:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [44:22, 01:41](3004 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [40:01, 39:32] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:55, 01:03](1611 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:12, 01:08](903 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [02:57, 01:18](1580 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [31:57, 30:52] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:03, 00:51](1621 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [34:01, 33:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [15:23, 00:25](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [15:23, 00:26](1475 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:23, 00:26](1480 MB) +PASS -- TEST 'control_latlon_intel' [15:15, 00:20](1472 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:41, 00:31](1468 MB) +PASS -- TEST 'control_c48_intel' [14:22, 00:53](1591 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:09, 00:52](714 MB) +PASS -- TEST 'control_c192_intel' [13:09, 00:28](1591 MB) +PASS -- TEST 'control_c384_intel' [12:16, 01:48](1899 MB) +PASS -- TEST 'control_c384gdas_intel' [12:01, 02:40](1093 MB) +PASS -- TEST 'control_stochy_intel' [11:52, 00:23](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [09:23, 00:59](333 MB) +PASS -- TEST 'control_lndp_intel' [11:36, 00:35](528 MB) +PASS -- TEST 'control_iovr4_intel' [11:32, 00:44](522 MB) +PASS -- TEST 'control_iovr5_intel' [11:30, 00:43](522 MB) +PASS -- TEST 'control_p8_intel' [11:29, 01:31](1506 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:29, 01:58](1509 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:01, 01:56](1501 MB) +PASS -- TEST 'control_restart_p8_intel' [06:20, 00:57](694 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:01, 01:30](1494 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:53, 00:43](698 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:54, 01:21](1498 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:54, 01:07](1596 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:53, 01:06](1510 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:53, 02:01](1566 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:47, 01:48](1514 MB) +PASS -- TEST 'merra2_thompson_intel' [09:20, 01:38](1509 MB) +PASS -- TEST 'regional_control_intel' [03:33, 00:19](610 MB) +PASS -- TEST 'regional_restart_intel' [57:35, 01:01](777 MB) +PASS -- TEST 'regional_decomp_intel' [09:18, 00:56](606 MB) +PASS -- TEST 'regional_2threads_intel' [09:12, 00:56](666 MB) +PASS -- TEST 'regional_noquilt_intel' [09:08, 00:21](1147 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:05, 00:21](606 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:05, 00:15](606 MB) +PASS -- TEST 'regional_wofs_intel' [09:03, 00:49](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [27:52, 27:37] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [20:33, 01:40](919 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:34, 01:10](1099 MB) +PASS -- TEST 'rap_decomp_intel' [20:33, 01:21](921 MB) +PASS -- TEST 'rap_2threads_intel' [20:33, 01:53](1005 MB) +PASS -- TEST 'rap_restart_intel' [09:01, 01:03](792 MB) +PASS -- TEST 'rap_sfcdiff_intel' [20:33, 02:08](916 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:33, 01:51](916 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:04, 01:42](786 MB) +PASS -- TEST 'hrrr_control_intel' [20:33, 01:04](911 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [20:33, 00:59](910 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [20:34, 01:26](996 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:00, 01:03](742 MB) +PASS -- TEST 'rrfs_v1beta_intel' [20:33, 01:19](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [20:33, 00:52](1878 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:33, 01:12](1862 MB) + +PASS -- COMPILE 'csawmg_intel' [42:10, 41:04] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [05:58, 00:32](599 MB) +PASS -- TEST 'control_ras_intel' [05:49, 00:52](561 MB) + +PASS -- COMPILE 'wam_intel' [16:37, 15:33] +PASS -- TEST 'control_wam_intel' [27:44, 00:53](274 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:42, 16:54] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [21:34, 02:04](1505 MB) +PASS -- TEST 'regional_control_faster_intel' [21:33, 00:23](610 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:42, 17:58] ( 870 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [20:33, 01:18](1487 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [20:33, 01:26](1490 MB) +PASS -- TEST 'control_stochy_debug_intel' [20:33, 00:48](692 MB) +PASS -- TEST 'control_lndp_debug_intel' [20:33, 01:09](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [20:33, 00:37](729 MB) +PASS -- TEST 'control_ras_debug_intel' [20:33, 01:04](705 MB) +PASS -- TEST 'control_diag_debug_intel' [20:33, 01:16](1555 MB) +PASS -- TEST 'control_debug_p8_intel' [20:33, 01:02](1520 MB) +PASS -- TEST 'regional_debug_intel' [20:32, 00:36](630 MB) +PASS -- TEST 'rap_control_debug_intel' [19:48, 00:33](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [18:45, 01:01](1067 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [16:02, 00:54](1072 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [16:01, 00:52](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:53, 00:53](1075 MB) +PASS -- TEST 'rap_diag_debug_intel' [15:48, 00:49](1159 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:43, 00:47](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:37, 00:49](1072 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:36, 00:50](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:32, 00:50](1074 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:50, 00:59](1073 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 00:54](1075 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:25, 00:42](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 00:56](1070 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:29, 01:00](1077 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:18, 00:51](1075 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [04:25, 02:10](1077 MB) + +PASS -- COMPILE 'wam_debug_intel' [15:32, 14:58] ( 842 warnings ) +PASS -- TEST 'control_wam_debug_intel' [21:42, 00:52](301 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:39, 20:41] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:25, 01:18](953 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:24, 01:14](795 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:01, 02:02](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:44, 01:19](857 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:44, 01:58](847 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:22, 01:23](785 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [57:02, 01:58](686 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:28, 00:42](665 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:30, 15:27] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:22, 01:10](1005 MB) +PASS -- TEST 'conus13km_2threads_intel' [59:16, 00:41](1005 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [59:15, 00:50](881 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:25, 10:22] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [03:16, 01:25](810 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:23, 09:38] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [02:47, 00:36](958 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [02:29, 00:49](951 MB) +PASS -- TEST 'conus13km_debug_intel' [01:55, 00:27](1037 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [01:29, 01:14](710 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [01:20, 00:32](1040 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:18, 00:25](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:26, 07:04] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [00:44, 00:57](981 MB) + +PASS -- COMPILE 'hafsw_intel' [22:40, 21:47] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [57:55, 01:56](618 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:55, 00:23](967 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:53, 01:22](660 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [57:53, 01:23](694 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [57:54, 01:56](715 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [57:24, 00:57](390 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [56:55, 02:08](404 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [56:46, 01:32](288 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:20, 02:51](372 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:00, 00:54](415 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [55:22, 01:40](423 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [55:21, 01:35](493 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [54:56, 00:33](314 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [25:41, 25:03] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [54:14, 01:36](507 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:30, 09:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [38:12, 01:30](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [38:12, 01:03](709 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:28, 13:04] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [00:38, 00:49](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:30, 15:13] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [57:59, 02:11](664 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [57:59, 01:35](648 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [57:57, 01:02](882 MB) + +PASS -- COMPILE 'atml_intel' [10:27, 10:11] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [00:17, 01:40](1545 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [59:59, 01:38](1546 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [52:18, 00:39](744 MB) + +PASS -- COMPILE 'atml_debug_intel' [15:31, 15:10] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [52:53, 02:07](1564 MB) + +PASS -- COMPILE 'atmaero_intel' [14:36, 13:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [52:48, 00:56](2849 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [52:33, 01:23](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [52:17, 01:19](2926 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:24, 10:32] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [51:59, 00:57](4430 MB) SYNOPSIS: -Starting Date/Time: 20240513 12:06:51 -Ending Date/Time: 20240513 13:29:43 -Total Time: 01h:23m:30s -Compiles Completed: 30/31 -Tests Completed: 153/158 -Failed Compiles: -* COMPILE s2sw_pdlib_intel: FAILED: UNABLE TO COMPILE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/compile_s2sw_pdlib_intel.log -Failed Tests: -* TEST cpld_control_pdlib_p8_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST gnv1_c96_no_nest_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_gnv1_c96_no_nest_debug_intel.log -* TEST hrrr_control_2threads_dyn32_phy32_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_hrrr_control_2threads_dyn32_phy32_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: -bd6721bc051892b41f039008a028aaef572d7c78 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (7147dac) - 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (9711488) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -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-20240503 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_18671 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 11:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [01:36, 01:12](1604 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:04, 01:24](903 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:05, 01:32](1584 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:19, 04:13] ( 870 warnings 92 remarks ) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:44, 02:17](1087 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 08:10] ( 3 warnings 91 remarks ) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 01:32](842 MB) - -SYNOPSIS: -Starting Date/Time: 20240513 13:45:47 -Ending Date/Time: 20240513 14:37:26 -Total Time: 00h:51m:58s -Compiles Completed: 3/3 -Tests Completed: 5/5 +Starting Date/Time: 20240514 18:58:32 +Ending Date/Time: 20240514 20:37:35 +Total Time: 01h:39m:46s +Compiles Completed: 32/32 +Tests Completed: 159/159 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/diag_table/diag_table_cpld_sfs.IN b/tests/parm/diag_table/diag_table_cpld_sfs.IN new file mode 100644 index 0000000000..9d82b7f0e7 --- /dev/null +++ b/tests/parm/diag_table/diag_table_cpld_sfs.IN @@ -0,0 +1,311 @@ +@[SYEAR]@[SMONTH]@[SDAY].@[SHOUR]Z.@[ATMRES].64bit.non-mono +@[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0 + +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" +###################### +"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +############################################## +# static fields + "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + +# ocean output TSUV and others + "ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tob", "tob", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# save daily SST + "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .true., "none", 2 + +# Z-Space Fields Provided for CMIP6 (CMOR Names): +#=============================================== + "ocean_model_z","uo","uo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 + +# chemical tracers advected by FV3 +"gfs_dyn", "so2", "so2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "so4", "so4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dms", "dms", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "msa", "msa", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "bc1", "bc1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "bc2", "bc2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "oc1", "oc1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "oc2", "oc2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust1", "dust1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust2", "dust2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust3", "dust3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust4", "dust4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust5", "dust5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas1", "seas1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas2", "seas2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas3", "seas3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas4", "seas4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas5", "seas5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh3", "nh3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh4a", "nh4a", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an1", "no3an1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an2", "no3an2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an3", "no3an3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm25", "pm25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm10", "pm10", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cldfra", "cldfra", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "AOD_550", "aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DU_AOD_550", "du_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SU_AOD_550", "su_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "BC_AOD_550", "bc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "OC_AOD_550", "oc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SS_AOD_550", "ss_aod550", "fv3_history2d", "all", .false., "none", 2 +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index c2e5ec8e43..6158aa1657 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -42,11 +42,11 @@ rf_cutoff = 10. d2_bg_k1 = @[D2_BG_K1] d2_bg_k2 = @[D2_BG_K2] - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. + kord_tm = @[KORD_TM] + kord_mt = @[KORD_XX] + kord_wz = @[KORD_XX] + kord_tr = @[KORD_XX] + hydrostatic = @[HYDROSTATIC] phys_hydrostatic = .false. use_hydro_pressure = .false. beta = 0. @@ -66,19 +66,19 @@ vtdm4 = 0.02 delt_max = 0.002 ke_bg = 0. - do_vort_damp = .true. + do_vort_damp = @[DO_VORT_DAMP] external_ic = @[EXTERNAL_IC] external_eta = .true. gfs_phil = .false. nggps_ic = @[NGGPS_IC] mountain = @[MOUNTAIN] ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 + d_con = @[D_CON] + hord_mt = @[HORD_XX] + hord_vt = @[HORD_XX] + hord_tm = @[HORD_XX] + hord_dp = @[HORD_DP] + hord_tr = @[HORD_TR] adjust_dry_mass = .false. dry_mass = 98320.0 consv_te = 1. diff --git a/tests/rt.conf b/tests/rt.conf index 2fa9bfd999..eda2ad0f6f 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -31,6 +31,10 @@ RUN | cpld_control_gfsv17_iau | - noaacloud RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 RUN | cpld_mpi_gfsv17 | - noaacloud | | +#SFS +COMPILE | s2swa_32bit_pdlib_sfs | intel | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | +RUN | cpld_control_sfs | - noaacloud | baseline | + COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | @@ -40,7 +44,7 @@ RUN | cpld_control_p8.v2.sfc | - noaacloud RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 RUN | cpld_control_qr_p8 | - noaacloud | | RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 -RUN | cpld_2threads_p8 | - derecho noaacloud | | +RUN | cpld_2threads_p8 | - noaacloud | | RUN | cpld_decomp_p8 | - noaacloud | | RUN | cpld_mpi_p8 | - noaacloud | | RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | @@ -107,7 +111,7 @@ RUN | control_restart_p8 | - noaacloud RUN | control_noqr_p8 | - noaacloud | | RUN | control_restart_noqr_p8 | - noaacloud | | control_noqr_p8 RUN | control_decomp_p8 | - noaacloud | | -RUN | control_2threads_p8 | - derecho noaacloud | | +RUN | control_2threads_p8 | - noaacloud | | RUN | control_p8_lndp | | baseline | RUN | control_p8_rrtmgp | - noaacloud | baseline | RUN | control_p8_mynn | - noaacloud | baseline | @@ -130,7 +134,7 @@ COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRR RUN | rap_control | | baseline | RUN | regional_spp_sppt_shum_skeb | | baseline | RUN | rap_decomp | - noaacloud | | -RUN | rap_2threads | - derecho noaacloud | | +RUN | rap_2threads | - noaacloud | | RUN | rap_restart | - noaacloud | | rap_control RUN | rap_sfcdiff | - noaacloud | baseline | RUN | rap_sfcdiff_decomp | - noaacloud | | @@ -198,8 +202,8 @@ COMPILE | rrfs_dyn32_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | - noaacloud | baseline | RUN | rap_control_dyn32_phy32 | - noaacloud | baseline | RUN | hrrr_control_dyn32_phy32 | - noaacloud | baseline | -RUN | rap_2threads_dyn32_phy32 | - derecho noaacloud | | -RUN | hrrr_control_2threads_dyn32_phy32 | - derecho noaacloud | | +RUN | rap_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_2threads_dyn32_phy32 | - noaacloud | | RUN | hrrr_control_decomp_dyn32_phy32 | - noaacloud | | RUN | rap_restart_dyn32_phy32 | - noaacloud | | rap_control_dyn32_phy32 RUN | hrrr_control_restart_dyn32_phy32 | - noaacloud | | hrrr_control_dyn32_phy32 @@ -221,7 +225,7 @@ RUN | rap_control_debug_dyn32_phy32 | - noaacloud RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | RUN | conus13km_debug | - noaacloud | baseline | RUN | conus13km_debug_qr | - noaacloud | | -RUN | conus13km_debug_2threads | - derecho noaacloud | | +RUN | conus13km_debug_2threads | - noaacloud | | RUN | conus13km_radar_tten_debug | - noaacloud | baseline | # Expected to fail: diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 1d72ada3fe..cc375c189c 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -230,15 +230,15 @@ submit_and_wait() { #fail/completed cases #pbs: E #slurm: F/FAILED TO/TIMEOUT CA/CANCELLED - E|F|TO|CA|FAILED|TIMEOUT|CANCELLED) + F|TO|CA|FAILED|TIMEOUT|CANCELLED) echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!!" job_running=false #Trip the loop to end with these status flags interrupt_job exit 1 ;; #completed - #pbs only: C - C) + #pbs only: C-Complete E-Exiting + C|E) status_label='Completed' ;; *) diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..52067a1431 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1 @@ +cpld_control_sfs intel diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs new file mode 100644 index 0000000000..eedbe81193 --- /dev/null +++ b/tests/tests/cpld_control_sfs @@ -0,0 +1,89 @@ +# +# cpld_control GFSv17 with UGWPv1 test, i.e., GSL orographic drag + +# version 1 non-stationary GWD, hydrostatic +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system hydrostatic version - C96MX100 - unst WW3" + +export CNTL_DIR=cpld_control_sfs + +export LIST_FILES="sfcf021.nc \ + sfcf024.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24" + +export_fv3 +export_cpl + +export CPLCHM=.false. +export DNATS=0 +export MAKE_NH=.false. +export DDDMP=0 +export DO_VORT_DAMP=.false. +export HYDROSTATIC=.true. +export HORD_XX=10 +export HORD_DP=10 +export KORD_XX=12 +export KORD_TM=-12 +export D_CON=0 + +export RESTART_N=3 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' +export OUTPUT_GRID="'gaussian_grid'" +export WRITE_DOPOST=.true. + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +# UGWP1 +export GWD_OPT=2 +export CDMBWD=20.0,2.5,1.0,1.0 +export DO_UGWP_V1=.true. +export KNOB_UGWP_VERSION=1 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. +export KNOB_UGWP_DOKDIS=2 +export KNOB_UGWP_NDX4LH=4 + +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} + +export FV3_RUN=cpld_control_run.IN +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 +export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma +export DIAG_TABLE=diag_table_cpld_sfs.IN +export INPUT_NML=global_control.nml.IN + +export UFS_CONFIGURE=ufs.configure.s2sw.IN + +#GFSv17 settings +export PROGSIGMA=.true. +export IOPT_DIAG=1 + +if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then + WLCLK=40 +fi From d55f1b89342c65d72a118ba02aa892d6bbf6d098 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Mon, 20 May 2024 11:43:27 -0400 Subject: [PATCH 11/16] Combination CCPP-related PR for ozone diagnostics, metadata intent bugfixes, sfcsub.F landmask bugfix, and canopy resistance output (#2264) * UFSWM, CMEPS, FV3/ccpp_physics - CCPP Physics bugfixes for metadata intents and sfcsub.f landmask and output changes for ozone diagnostics and canopy resistance --- CMEPS-interface/CMEPS | 2 +- FV3 | 2 +- NOAHMP-interface/noahmp | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 593 +++++++------- tests/logs/RegressionTests_derecho.log | 617 +++++++-------- tests/logs/RegressionTests_gaea.log | 542 ++++++------- tests/logs/RegressionTests_hera.log | 722 +++++++++--------- tests/logs/RegressionTests_hercules.log | 714 ++++++++--------- tests/logs/RegressionTests_jet.log | 480 ++++++------ tests/logs/RegressionTests_orion.log | 631 ++++++++------- tests/logs/RegressionTests_wcoss2.log | 556 ++++++++------ tests/test_changes.list | 5 +- 16 files changed, 2500 insertions(+), 2470 deletions(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 4e19850cb0..2d837b16af 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 4e19850cb083bc474b7cde5dc2f8506ec74cc442 +Subproject commit 2d837b16af326b09ff4018daab4de84f4deff7ec diff --git a/FV3 b/FV3 index 9534e14d3c..10271c97aa 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9534e14d3c740c8aa9c915ad03f36dc7b75d8ab8 +Subproject commit 10271c97aa884f64d0c2003c3202eb229cc1d65b diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index 1e259014c1..ec38ea3d90 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit 1e259014c1eba9070cec7027d8b4b479ae54275a +Subproject commit ec38ea3d902644cd4519d5fe060316859ccdc108 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 26b75780f3..1e9296108e 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240503 +export BL_DATE=20240516 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 3476a24c88..89afac6ba2 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon May 13 18:14:19 UTC 2024 +Thu May 16 20:24:57 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/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 = 270.538118 - 0: The maximum resident set size (KB) = 1254096 + 0: The total amount of wall time = 278.785657 + 0: The maximum resident set size (KB) = 1253096 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/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 = 975.476688 - 0: The maximum resident set size (KB) = 1230856 + 0: The total amount of wall time = 945.032567 + 0: The maximum resident set size (KB) = 1233484 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/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 = 237.920448 - 0: The maximum resident set size (KB) = 1231760 + 0: The total amount of wall time = 244.990573 + 0: The maximum resident set size (KB) = 1232508 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/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 = 238.597717 - 0: The maximum resident set size (KB) = 1233284 + 0: The total amount of wall time = 241.154280 + 0: The maximum resident set size (KB) = 1233296 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/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 = 237.803525 - 0: The maximum resident set size (KB) = 1234508 + 0: The total amount of wall time = 242.646838 + 0: The maximum resident set size (KB) = 1233060 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/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 = 241.082583 - 0: The maximum resident set size (KB) = 1232320 + 0: The total amount of wall time = 263.767716 + 0: The maximum resident set size (KB) = 1233204 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 246.042458 - 0: The maximum resident set size (KB) = 1232080 + 0: The total amount of wall time = 246.202485 + 0: The maximum resident set size (KB) = 1231200 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon May 13 19:16:46 UTC 2024 -Elapsed time: 01h:02m:28s. Have a nice day! +Thu May 16 21:50:50 UTC 2024 +Elapsed time: 01h:27m:39s. 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 5a5ebcd930..aad139e461 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 @@ -Tue May 14 03:58:00 UTC 2024 +Fri May 17 15:45:56 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1600376/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1357.491643 - 0: The maximum resident set size (KB) = 1368672 + 0: The total amount of wall time = 1313.057110 + 0: The maximum resident set size (KB) = 1342956 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1600376/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 = 388.602017 - 0: The maximum resident set size (KB) = 1356348 + 0: The total amount of wall time = 518.573154 + 0: The maximum resident set size (KB) = 1341724 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1600376/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 = 392.294030 - 0: The maximum resident set size (KB) = 1358828 + 0: The total amount of wall time = 393.159431 + 0: The maximum resident set size (KB) = 1342660 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue May 14 04:56:24 UTC 2024 -Elapsed time: 00h:58m:24s. Have a nice day! +Fri May 17 16:50:15 UTC 2024 +Elapsed time: 01h:04m:19s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 78733d81a4..0a3673a0f2 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Tue May 14 12:09:43 UTC 2024 +Fri May 17 13:09:07 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/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 = 1347.763107 - 0: The maximum resident set size (KB) = 583388 + 0: The total amount of wall time = 1380.751535 + 0: The maximum resident set size (KB) = 575872 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/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 = 2795.464199 - 0: The maximum resident set size (KB) = 541676 + 0: The total amount of wall time = 2250.847202 + 0: The maximum resident set size (KB) = 545220 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/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 = 2362.646234 - 0: The maximum resident set size (KB) = 541132 + 0: The total amount of wall time = 2153.300954 + 0: The maximum resident set size (KB) = 541236 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/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 = 2378.042584 - 0: The maximum resident set size (KB) = 541716 + 0: The total amount of wall time = 2143.988793 + 0: The maximum resident set size (KB) = 542088 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue May 14 14:52:00 UTC 2024 -Elapsed time: 02h:42m:17s. Have a nice day! +Fri May 17 15:35:34 UTC 2024 +Elapsed time: 02h:26m:28s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index b6a7a66536..f664480f0c 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb +53ca93c48b032207b4d90354b56c0dbc6c8c4316 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) - aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) + 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) + cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,339 +35,270 @@ 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-20240503 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_188435 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117947 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:25, 10:15] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:36, 01:15](3046 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:14] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [44:31, 01:59](1652 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:42, 02:01](1777 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [26:23, 01:25](908 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:32, 01:37](1633 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 15:46] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [28:39, 00:49](1648 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:16, 03:46] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [56:45, 01:53](1684 MB) - -PASS -- COMPILE 's2swa_intel' [10:24, 10:06] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [38:36, 00:50](3074 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:35, 01:04](3074 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:03, 01:02](3131 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [37:16, 00:50](3098 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:54, 01:31](3150 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [36:33, 01:22](3387 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [36:33, 01:46](3073 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [35:26, 01:02](2998 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [31:44, 01:13](3075 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [30:46, 01:18](3039 MB) - -PASS -- COMPILE 's2sw_intel' [10:23, 09:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [50:37, 00:51](1650 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [50:37, 00:56](1699 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:25, 10:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [49:36, 00:57](1698 MB) - -PASS -- COMPILE 's2s_intel' [09:23, 09:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [51:37, 00:44](2679 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_warmstart_c48_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_c48_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:30, 14:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [45:31, 01:37](3075 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:30, 01:12](1670 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:12, 00:44](971 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:04, 01:32](1646 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:30] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:28, 01:29](1697 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:14] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [42:04, 01:04](637 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [42:04, 00:47](1537 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:04, 00:27](1542 MB) -PASS -- TEST 'control_latlon_intel' [42:04, 00:52](1536 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [42:04, 00:34](1533 MB) -PASS -- TEST 'control_c48_intel' [42:03, 00:48](1615 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [42:03, 00:48](740 MB) -PASS -- TEST 'control_c192_intel' [42:04, 01:19](1650 MB) -PASS -- TEST 'control_c384_intel' [42:08, 01:29](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [42:08, 02:06](1149 MB) -PASS -- TEST 'control_stochy_intel' [42:04, 00:16](593 MB) -PASS -- TEST 'control_stochy_restart_intel' [25:19, 00:51](395 MB) -PASS -- TEST 'control_lndp_intel' [42:04, 01:04](592 MB) -PASS -- TEST 'control_iovr4_intel' [42:04, 00:24](587 MB) -PASS -- TEST 'control_iovr5_intel' [42:04, 00:24](587 MB) -PASS -- TEST 'control_p8_intel' [42:04, 01:01](1569 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:47, 01:11](1573 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [42:04, 01:14](1562 MB) -PASS -- TEST 'control_restart_p8_intel' [24:08, 01:08](751 MB) -PASS -- TEST 'control_noqr_p8_intel' [42:04, 01:15](1556 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [21:17, 00:45](759 MB) -PASS -- TEST 'control_decomp_p8_intel' [42:04, 01:36](1562 MB) -PASS -- TEST 'control_2threads_p8_intel' [42:04, 01:34](1656 MB) -PASS -- TEST 'control_p8_lndp_intel' [25:18, 00:25](1573 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [25:09, 01:17](1620 MB) -PASS -- TEST 'control_p8_mynn_intel' [24:35, 01:27](1577 MB) -PASS -- TEST 'merra2_thompson_intel' [23:19, 01:22](1570 MB) -PASS -- TEST 'regional_control_intel' [22:44, 00:54](632 MB) -PASS -- TEST 'regional_restart_intel' [06:48, 01:00](800 MB) -PASS -- TEST 'regional_decomp_intel' [22:40, 01:00](631 MB) -PASS -- TEST 'regional_2threads_intel' [22:32, 00:38](733 MB) -PASS -- TEST 'regional_noquilt_intel' [22:03, 00:30](1167 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [21:37, 00:20](634 MB) -PASS -- TEST 'regional_wofs_intel' [21:24, 00:13](1603 MB) - -PASS -- COMPILE 'ifi_intel' [08:21, 08:01] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [43:15, 00:50](635 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [43:15, 00:37](629 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [43:16, 00:48](727 MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 08:45] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [21:17, 01:18](975 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:18, 00:39](1152 MB) -PASS -- TEST 'rap_decomp_intel' [20:03, 01:31](974 MB) -PASS -- TEST 'rap_2threads_intel' [19:49, 01:07](1060 MB) -PASS -- TEST 'rap_restart_intel' [07:54, 01:52](841 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:03, 02:06](972 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:59, 01:49](970 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [04:36, 01:37](841 MB) -PASS -- TEST 'hrrr_control_intel' [15:56, 01:05](969 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:29, 00:51](973 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [15:27, 01:57](1048 MB) -PASS -- TEST 'hrrr_control_restart_intel' [08:42, 00:53](803 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:15, 01:08](968 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:03, 00:51](1936 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:54, 01:10](1919 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:21] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [13:44, 00:59](661 MB) - -PASS -- COMPILE 'wam_intel' [08:22, 08:06] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [13:11, 00:19](333 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 08:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [12:44, 00:56](1564 MB) -PASS -- TEST 'regional_control_faster_intel' [12:32, 00:12](629 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:17, 04:02] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:23, 00:33](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:18, 00:29](1562 MB) -PASS -- TEST 'control_stochy_debug_intel' [12:16, 00:54](764 MB) -PASS -- TEST 'control_lndp_debug_intel' [12:13, 01:09](764 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:50, 00:33](803 MB) -PASS -- TEST 'control_ras_debug_intel' [11:39, 00:22](772 MB) -PASS -- TEST 'control_diag_debug_intel' [08:36, 01:06](1624 MB) -PASS -- TEST 'control_debug_p8_intel' [08:32, 00:34](1599 MB) -PASS -- TEST 'regional_debug_intel' [07:38, 00:20](672 MB) -PASS -- TEST 'rap_control_debug_intel' [06:51, 00:23](1147 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:44, 00:28](1136 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:43, 01:10](1142 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:41, 01:00](1143 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:54, 00:39](1147 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:26, 00:34](1226 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:00, 00:44](1145 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:48, 00:36](1145 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:46, 00:38](1148 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:36, 00:43](1145 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:33, 00:24](1142 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:25, 00:29](1142 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [04:14, 00:17](1143 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:11, 00:36](1135 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [03:42, 00:51](1143 MB) -PASS -- TEST 'rap_flake_debug_intel' [03:31, 00:38](1142 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [03:22, 01:54](1151 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:16, 02:59] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [54:24, 00:51](375 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 08:07] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:49, 00:41](1016 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [02:08, 01:30](853 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:59, 01:30](849 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:13, 01:24](911 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:26, 02:10](904 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:16, 01:11](850 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [51:54, 01:00](751 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:24, 00:58](732 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 10:14] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [59:39, 01:14](1060 MB) -PASS -- TEST 'conus13km_2threads_intel' [54:52, 00:59](1040 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [54:42, 00:37](939 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [46:59, 08:17] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [45:07, 00:38](873 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 02:57] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:27, 00:31](1020 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [59:13, 00:36](1024 MB) -PASS -- TEST 'conus13km_debug_intel' [59:11, 01:16](1113 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [58:51, 01:08](789 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [58:35, 01:01](1090 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:25, 00:18](1181 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:20, 02:55] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:23, 00:48](1047 MB) - -PASS -- COMPILE 'hafsw_intel' [14:29, 09:11] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [58:23, 02:02](677 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [58:13, 01:05](1027 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [58:07, 01:54](708 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [56:59, 01:47](764 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:21, 02:01](772 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [55:52, 00:57](437 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [54:16, 02:10](465 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [54:04, 01:10](339 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [54:07, 02:23](405 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [53:45, 01:29](476 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:38, 01:28](476 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:15, 00:43](542 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:03, 00:54](370 MB) -PASS -- TEST 'gnv1_nested_intel' [51:59, 00:54](731 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:21, 03:14] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [49:01, 00:47](576 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:35] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [48:37, 00:46](584 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [47:52, 01:09](753 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:29, 09:21] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [47:43, 00:51](755 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:24, 08:53] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [44:41, 01:39](715 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [44:13, 02:06](699 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [41:57, 01:08](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:23, 07:32] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [41:19, 00:42](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [37:58, 00:46](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [39:35, 00:42](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [36:52, 00:49](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [36:33, 00:29](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [36:31, 00:47](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [36:26, 00:50](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [36:15, 00:11](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [34:55, 01:06](647 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:50, 00:37](632 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [34:37, 00:51](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [33:32, 00:13](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [31:53, 00:41](2016 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 08:38] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [31:36, 00:44](762 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [39:54, 00:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [30:38, 01:04](276 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [30:29, 00:59](410 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [27:02, 00:44](410 MB) - -PASS -- COMPILE 'atml_intel' [50:05, 09:44] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [29:42, 01:23](1610 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [29:07, 01:51](1605 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [21:44, 00:27](806 MB) - -PASS -- COMPILE 'atml_debug_intel' [40:58, 03:36] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [28:36, 01:32](1635 MB) - -PASS -- COMPILE 'atmw_intel' [46:00, 08:45] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [28:26, 00:59](1609 MB) - -PASS -- COMPILE 'atmaero_intel' [47:05, 08:30] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [28:09, 00:48](2922 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [27:04, 01:15](2975 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:02, 01:36](2987 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [40:58, 03:01] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:35, 00:44](4512 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:18] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:08, 01:29](3046 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:31, 16:21] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:01, 01:37](1656 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:01, 01:35](1779 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [53:43, 01:50](912 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:02, 02:07](1635 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:28, 16:09] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:03, 01:15](1648 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:17, 03:53] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:15, 01:44](1677 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 11:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [26:07, 01:41](3077 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:07, 01:02](3073 MB) +PASS -- TEST 'cpld_restart_p8_intel' [17:25, 01:23](3130 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [26:07, 01:00](3099 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:23, 01:29](3152 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [26:07, 01:16](3387 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [26:07, 01:39](3070 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [26:08, 00:40](3000 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [26:07, 01:19](3078 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [26:07, 01:51](3039 MB) + +PASS -- COMPILE 's2sw_intel' [10:22, 09:37] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [27:09, 00:51](1655 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [27:09, 00:55](1701 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [27:08, 00:57](1699 MB) + +PASS -- COMPILE 's2s_intel' [11:25, 10:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [26:06, 00:44](2679 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [26:06, 00:29](2701 MB) +PASS -- TEST 'cpld_restart_c48_intel' [22:57, 01:18](2131 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:29, 14:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [22:03, 01:14](3075 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:29, 14:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:03, 01:24](1669 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [00:44, 00:43](973 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [00:30, 01:37](1652 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:38] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:58, 01:32](1689 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:22, 09:18] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [18:34, 00:50](638 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:34, 00:56](1537 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:34, 01:17](1543 MB) +PASS -- TEST 'control_latlon_intel' [18:34, 01:07](1536 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:34, 01:18](1535 MB) +PASS -- TEST 'control_c48_intel' [18:33, 01:19](1617 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [18:33, 00:39](740 MB) +PASS -- TEST 'control_c192_intel' [18:34, 01:19](1650 MB) +PASS -- TEST 'control_c384_intel' [18:38, 00:58](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [17:53, 01:34](1149 MB) +PASS -- TEST 'control_stochy_intel' [17:34, 00:53](594 MB) +PASS -- TEST 'control_stochy_restart_intel' [00:54, 00:42](395 MB) +PASS -- TEST 'control_lndp_intel' [16:45, 01:10](592 MB) +PASS -- TEST 'control_iovr4_intel' [14:38, 00:17](589 MB) +PASS -- TEST 'control_iovr5_intel' [14:24, 00:32](587 MB) +PASS -- TEST 'control_p8_intel' [13:38, 01:41](1566 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [13:25, 01:17](1569 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:59, 01:23](1564 MB) +PASS -- TEST 'control_restart_p8_intel' [58:09, 00:55](753 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:21, 01:24](1552 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [57:11, 01:06](763 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:59, 01:29](1564 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:51, 00:39](1653 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:37, 01:02](1564 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:18, 01:18](1617 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:57, 01:27](1579 MB) +PASS -- TEST 'merra2_thompson_intel' [04:51, 02:01](1575 MB) +PASS -- TEST 'regional_control_intel' [03:45, 01:01](633 MB) +PASS -- TEST 'regional_restart_intel' [55:02, 00:55](803 MB) +PASS -- TEST 'regional_decomp_intel' [02:25, 00:11](631 MB) +PASS -- TEST 'regional_2threads_intel' [01:39, 00:19](722 MB) +PASS -- TEST 'regional_noquilt_intel' [01:36, 01:13](1168 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [01:26, 00:28](631 MB) +PASS -- TEST 'regional_wofs_intel' [00:16, 00:15](1604 MB) + +PASS -- COMPILE 'ifi_intel' [08:21, 08:06] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [18:46, 01:08](632 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [18:46, 00:31](631 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [18:47, 00:32](725 MB) + +PASS -- COMPILE 'rrfs_intel' [09:22, 08:57] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [00:07, 01:21](976 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [00:02, 01:28](1155 MB) +PASS -- TEST 'rap_decomp_intel' [59:47, 00:51](976 MB) +PASS -- TEST 'rap_2threads_intel' [59:07, 01:37](1059 MB) +PASS -- TEST 'rap_restart_intel' [48:49, 00:44](841 MB) +PASS -- TEST 'rap_sfcdiff_intel' [58:04, 01:09](970 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [57:55, 01:37](971 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [47:50, 01:21](845 MB) +PASS -- TEST 'hrrr_control_intel' [57:47, 01:04](970 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [57:40, 01:29](966 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [57:33, 01:32](1048 MB) +PASS -- TEST 'hrrr_control_restart_intel' [50:33, 01:01](798 MB) +PASS -- TEST 'rrfs_v1beta_intel' [56:51, 01:50](967 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [56:27, 01:02](1934 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [55:57, 01:17](1920 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:25] ( 2 warnings ) +PASS -- TEST 'control_csawmg_intel' [55:39, 00:54](665 MB) + +PASS -- COMPILE 'wam_intel' [08:22, 08:05] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [54:56, 00:20](334 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:41] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [54:54, 00:59](1560 MB) +PASS -- TEST 'regional_control_faster_intel' [54:43, 01:05](630 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [38:53, 04:07] ( 886 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [43:10, 00:51](1560 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [43:10, 00:30](1562 MB) +PASS -- TEST 'control_stochy_debug_intel' [43:10, 00:58](765 MB) +PASS -- TEST 'control_lndp_debug_intel' [43:10, 00:14](766 MB) +PASS -- TEST 'control_csawmg_debug_intel' [43:10, 00:08](806 MB) +PASS -- TEST 'control_ras_debug_intel' [43:10, 00:13](778 MB) +PASS -- TEST 'control_diag_debug_intel' [43:10, 00:30](1629 MB) +PASS -- TEST 'control_debug_p8_intel' [43:10, 00:37](1591 MB) +PASS -- TEST 'regional_debug_intel' [43:09, 00:58](674 MB) +PASS -- TEST 'rap_control_debug_intel' [43:10, 01:03](1148 MB) +PASS -- TEST 'hrrr_control_debug_intel' [43:10, 00:45](1140 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [43:10, 00:32](1145 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [43:10, 00:17](1150 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [43:10, 00:41](1149 MB) +PASS -- TEST 'rap_diag_debug_intel' [43:10, 00:34](1227 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [43:10, 00:44](1148 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:10, 00:47](1148 MB) +PASS -- TEST 'rap_lndp_debug_intel' [43:10, 00:42](1147 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:10, 00:53](1149 MB) +PASS -- TEST 'rap_noah_debug_intel' [43:10, 00:54](1146 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [43:10, 00:56](1143 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:58, 01:01](1140 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [42:44, 00:58](1142 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [40:56, 00:45](1148 MB) +PASS -- TEST 'rap_flake_debug_intel' [40:32, 00:44](1149 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:22, 01:46](1157 MB) + +PASS -- COMPILE 'wam_debug_intel' [36:51, 02:54] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [45:12, 00:54](375 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [41:55, 08:10] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [38:46, 00:48](1019 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [38:36, 01:06](854 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:56, 02:02](848 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [36:33, 00:57](917 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [36:26, 01:54](904 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [35:31, 01:07](850 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [44:58, 01:48](737 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [46:43, 00:38](729 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [42:56, 10:16] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [34:30, 00:43](1062 MB) +PASS -- TEST 'conus13km_2threads_intel' [46:02, 00:12](1043 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [45:35, 00:34](938 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [40:56, 08:11] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [34:30, 00:32](873 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [35:49, 03:00] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [39:39, 00:19](1017 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [39:38, 00:31](1022 MB) +PASS -- TEST 'conus13km_debug_intel' [39:11, 00:30](1117 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [33:28, 00:54](786 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [33:28, 00:43](1083 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [33:26, 00:27](1182 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:51, 03:02] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [33:26, 00:33](1046 MB) + +PASS -- COMPILE 'hafsw_intel' [41:57, 09:22] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [33:28, 01:23](674 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:00, 01:06](1025 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [31:26, 01:36](707 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [29:21, 01:43](753 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:55, 01:28](773 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [20:35, 00:51](436 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [20:22, 01:30](465 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:57, 01:30](336 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:34, 02:35](403 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:06, 00:39](478 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:27, 01:23](474 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:45, 01:08](535 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:44, 00:31](369 MB) +PASS -- TEST 'gnv1_nested_intel' [05:16, 00:48](735 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [34:48, 03:20] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:09, 00:55](574 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [40:57, 09:39] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:55, 01:10](579 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:44, 01:29](759 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:23, 09:29] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:07, 01:29](754 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:23, 09:07] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [00:30, 01:16](717 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [59:23, 01:04](697 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [59:18, 00:52](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:27, 08:33] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [58:23, 00:54](749 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [43:51, 00:22](737 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [58:15, 00:09](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [55:23, 00:17](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [53:23, 00:09](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [51:59, 00:28](762 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [51:59, 00:32](762 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [51:44, 00:55](649 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [50:52, 01:10](647 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [50:26, 00:33](631 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [50:16, 00:11](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [50:08, 00:35](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [47:59, 00:24](2020 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:27, 08:31] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [47:24, 00:54](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [07:21, 00:50] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [47:23, 00:33](273 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [47:17, 00:24](410 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [44:51, 00:34](411 MB) + +PASS -- COMPILE 'atml_intel' [14:28, 09:43] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [47:15, 01:50](1608 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [46:44, 01:08](1609 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [39:19, 00:28](805 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:18, 03:32] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [46:37, 01:28](1634 MB) + +PASS -- COMPILE 'atmw_intel' [11:24, 08:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [46:04, 00:49](1609 MB) + +PASS -- COMPILE 'atmaero_intel' [10:23, 08:30] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [44:51, 01:01](2916 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [44:45, 01:31](2977 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [43:46, 00:56](2987 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:17, 03:16] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [43:23, 00:57](4491 MB) SYNOPSIS: -Starting Date/Time: 20240514 18:58:41 -Ending Date/Time: 20240514 20:59:35 -Total Time: 02h:01m:11s +Starting Date/Time: 20240516 20:22:09 +Ending Date/Time: 20240516 22:42:53 +Total Time: 02h:21m:02s Compiles Completed: 37/37 -Tests Completed: 175/177 -Failed Tests: -* TEST cpld_warmstart_c48_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/XiaqiongZhou-NOAA/ufs-weather-model/tests/logs/log_acorn/run_cpld_warmstart_c48_intel.log -* TEST cpld_restart_c48_intel: FAILED: UNABLE TO START RUN --- LOG: N/A - -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: -c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) - aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -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-20240503 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_195507 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2s_intel' [09:22, 09:02] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_warmstart_c48_intel' [10:31, 01:25](1487 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:35, 01:10](2132 MB) - -SYNOPSIS: -Starting Date/Time: 20240515 15:39:57 -Ending Date/Time: 20240515 15:56:26 -Total Time: 00h:16m:39s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 177/177 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 f5ed43ee9f..b2a6cf9050 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb +53ca93c48b032207b4d90354b56c0dbc6c8c4316 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) - aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) + 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) + cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,355 +35,280 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_19059 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_113730 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:22, 20:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:35, 04:55](3074 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:24, 22:12] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:36, 13:42](1696 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 15:08](1829 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:45, 07:18](961 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:29, 15:44](1660 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:24, 21:21] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:07, 13:36](1692 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:21, 10:35] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:13, 21:20](1693 MB) - -PASS -- COMPILE 's2swa_intel' [21:23, 20:49] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:20, 05:41](3093 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:42, 05:38](3092 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:18, 03:23](3149 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:41, 05:37](3123 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:41, 03:21](3179 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:16, 05:15](3679 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:16, 05:33](3089 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 04:36](3395 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:44, 05:35](3101 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:33, 08:51](3636 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:32, 06:03](3618 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [32:06, 09:55](4343 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:55, 07:49](4649 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:09, 05:16](3063 MB) - -PASS -- COMPILE 's2sw_intel' [21:23, 20:13] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:57, 04:11](1683 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:06, 04:13](1736 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:20, 10:37] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:27, 07:37](3154 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:20, 10:07] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:55, 05:13](1710 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:21, 15:45] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:37, 04:16](1729 MB) - -PASS -- COMPILE 's2s_intel' [17:23, 16:14] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:12, 06:34](2666 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:14, 01:59](2689 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:08, 01:09](2127 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:22, 23:09] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:45, 05:29](3101 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:21, 19:31] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:54, 14:06](1699 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:41, 07:26](1017 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 16:06](1667 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:18, 08:43] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:00, 23:10](1716 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:30] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:44, 03:24](672 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:25](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:29](1570 MB) -PASS -- TEST 'control_latlon_intel' [04:16, 02:24](1574 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:26](1565 MB) -PASS -- TEST 'control_c48_intel' [08:12, 06:15](1616 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:17](738 MB) -PASS -- TEST 'control_c192_intel' [11:11, 08:43](1690 MB) -PASS -- TEST 'control_c384_intel' [16:39, 09:07](2006 MB) -PASS -- TEST 'control_c384gdas_intel' [18:49, 07:24](1198 MB) -PASS -- TEST 'control_stochy_intel' [02:49, 01:26](630 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:00](440 MB) -PASS -- TEST 'control_lndp_intel' [02:49, 01:22](625 MB) -PASS -- TEST 'control_iovr4_intel' [04:47, 02:11](624 MB) -PASS -- TEST 'control_iovr5_intel' [03:38, 02:06](626 MB) -PASS -- TEST 'control_p8_intel' [04:52, 02:30](1606 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:55, 02:29](1598 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:45, 02:30](1601 MB) -PASS -- TEST 'control_restart_p8_intel' [03:40, 01:27](804 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:46, 02:28](1587 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:22](806 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:32, 02:34](1590 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:02, 02:19](1686 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:03, 04:22](1604 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:09, 03:20](1662 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:04, 02:32](1604 MB) -PASS -- TEST 'merra2_thompson_intel' [06:02, 02:50](1607 MB) -PASS -- TEST 'regional_control_intel' [06:29, 04:32](633 MB) -PASS -- TEST 'regional_restart_intel' [04:22, 02:33](799 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'regional_decomp_intel' [, ]( MB) -PASS -- TEST 'regional_noquilt_intel' [06:25, 04:24](1157 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:22, 04:31](630 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:15, 04:31](628 MB) -PASS -- TEST 'regional_wofs_intel' [07:14, 05:41](1604 MB) - -PASS -- COMPILE 'rrfs_intel' [12:14, 11:14] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:49, 06:09](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 03:45](1207 MB) -PASS -- TEST 'rap_decomp_intel' [08:49, 06:19](1008 MB) -PASS -- TEST 'rap_2threads_intel' [07:33, 05:39](1096 MB) -PASS -- TEST 'rap_restart_intel' [05:20, 03:12](882 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:08](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:43, 06:22](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:26, 04:34](881 MB) -PASS -- TEST 'hrrr_control_intel' [05:22, 03:13](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:18](1000 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_control_2threads_intel' [, ]( MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:52, 01:46](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:56, 05:59](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:06, 07:22](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:03, 07:08](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [14:20, 10:14] ( 6 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:20, 05:51](695 MB) -PASS -- TEST 'control_ras_intel' [04:38, 02:54](659 MB) - -PASS -- COMPILE 'wam_intel' [13:14, 09:35] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:31, 01:56](383 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:15, 12:38] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:47, 02:24](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [06:08, 04:19](625 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:15, 08:32] ( 890 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:29](1595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:26](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:45, 02:56](800 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:36](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:01](840 MB) -PASS -- TEST 'control_ras_debug_intel' [03:40, 02:42](811 MB) -PASS -- TEST 'control_diag_debug_intel' [05:47, 02:35](1667 MB) -PASS -- TEST 'control_debug_p8_intel' [04:16, 02:36](1633 MB) -PASS -- TEST 'regional_debug_intel' [18:11, 15:56](662 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'rap_control_debug_intel' [, ]( MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:52, 04:31](1179 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:46, 04:39](1182 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:45, 04:38](1183 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:46, 04:36](1181 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:49, 04:52](1267 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:45, 04:45](1182 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:42, 04:57](1186 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:41, 04:55](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:41, 04:37](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:42, 04:31](1182 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 04:42](1182 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:50, 07:36](1179 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:38, 04:33](1178 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:40, 05:37](1185 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:48, 04:41](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:26, 08:02](1187 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:13, 05:18] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:35, 04:35](424 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 09:41] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:29, 03:46](1055 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:20, 05:13](884 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:12, 02:46](882 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 04:46](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:28](943 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 02:55](884 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:22, 03:58](797 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:54, 01:34](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:21, 11:39] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:44, 01:54](1082 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:13, 01:03](1086 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:08, 01:12](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:14, 09:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:05, 03:38](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 05:47] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:34](1063 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:47, 04:31](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [16:20, 13:15](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:14, 13:29](821 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 07:52](1135 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:22](1204 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:37] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:48, 04:47](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [17:20, 16:05] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:56, 04:38](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:59, 05:17](1072 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:04, 06:33](782 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:58, 10:57](804 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:52, 12:11](809 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 04:50](475 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 06:01](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:36](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:56, 06:38](462 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:21, 03:29](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 03:11](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:33, 04:11](590 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:36, 01:27](429 MB) -PASS -- TEST 'gnv1_nested_intel' [05:35, 03:32](787 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:12, 07:17] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 12:06](621 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:22, 19:58] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:39, 07:13](635 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:19, 07:24](695 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:20, 16:38] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:55, 05:25](677 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:16, 14:36] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:37](752 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:35, 05:48](740 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:19, 16:14](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:45] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:37](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 01:33](749 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:22](638 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:24](637 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:44, 02:31](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:46, 02:34](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:30](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:22](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:42, 05:53](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:18, 05:46](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:29](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:03, 03:59](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:53, 04:01](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:00] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:05](744 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 07:40] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:44, 02:29](748 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:41, 01:27](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:20](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:46, 00:46](451 MB) - -PASS -- COMPILE 'atml_intel' [14:21, 13:26] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:53, 07:38](1634 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:54, 07:32](1638 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:31](853 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:17, 08:04] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:16, 05:35](1668 MB) - -PASS -- COMPILE 'atmw_intel' [14:19, 13:04] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 01:35](1637 MB) - -PASS -- COMPILE 'atmaero_intel' [12:20, 11:21] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:03, 03:38](2949 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:20](2998 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:50, 04:21](3020 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:41] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:54, 22:09](4519 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:24, 19:13] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:51, 04:59](3076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:24, 20:38] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:01, 13:45](1691 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:13, 15:29](1829 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:09, 07:36](957 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:44, 15:43](1666 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:24, 20:37] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:04, 13:39](1684 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:21, 09:05] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:23, 21:17](1705 MB) + +PASS -- COMPILE 's2swa_intel' [20:23, 19:15] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:51, 05:39](3093 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:55, 05:39](3092 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:54, 03:25](3154 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 05:38](3121 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:54, 03:32](3178 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:26, 05:15](3678 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:26, 05:33](3091 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 04:37](3399 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:10, 05:38](3101 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:07, 08:53](3633 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [19:43, 06:17](3611 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [41:39, 10:05](4343 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [44:13, 08:21](4645 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:23, 05:17](3067 MB) + +PASS -- COMPILE 's2sw_intel' [19:23, 18:36] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:54, 04:12](1681 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:09, 04:15](1732 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:22, 09:09] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:29, 07:44](3153 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:21, 08:35] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:47, 05:18](1706 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:23, 14:08] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:39, 04:17](1729 MB) + +PASS -- COMPILE 's2s_intel' [15:22, 14:07] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:15, 06:42](2665 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 02:01](2687 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:29, 01:10](2120 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:21, 22:54] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:12, 05:35](3102 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:20, 19:42] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:10, 14:04](1705 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:05, 07:46](1018 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:29, 16:09](1677 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:22] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:16, 22:59](1720 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:15] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:45, 03:31](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:29](1564 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:03, 02:32](1575 MB) +PASS -- TEST 'control_latlon_intel' [04:32, 02:26](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:31](1573 MB) +PASS -- TEST 'control_c48_intel' [08:27, 06:16](1618 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:54, 05:20](735 MB) +PASS -- TEST 'control_c192_intel' [12:41, 08:47](1690 MB) +PASS -- TEST 'control_c384_intel' [19:14, 09:21](2004 MB) +PASS -- TEST 'control_c384gdas_intel' [24:54, 07:41](1197 MB) +PASS -- TEST 'control_stochy_intel' [02:48, 01:27](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:57, 00:54](442 MB) +PASS -- TEST 'control_lndp_intel' [02:54, 01:30](624 MB) +PASS -- TEST 'control_iovr4_intel' [04:13, 02:07](621 MB) +PASS -- TEST 'control_iovr5_intel' [04:16, 02:07](623 MB) +PASS -- TEST 'control_p8_intel' [05:07, 02:31](1598 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 02:30](1599 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 02:32](1599 MB) +PASS -- TEST 'control_restart_p8_intel' [03:48, 01:29](802 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:05, 02:34](1586 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 01:27](805 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:45, 02:38](1596 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:45, 02:23](1691 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:48, 04:25](1601 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 03:22](1654 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:04, 02:35](1607 MB) +PASS -- TEST 'merra2_thompson_intel' [06:56, 02:53](1612 MB) +PASS -- TEST 'regional_control_intel' [08:00, 04:38](628 MB) +PASS -- TEST 'regional_restart_intel' [04:12, 02:35](800 MB) +PASS -- TEST 'regional_decomp_intel' [07:00, 04:50](632 MB) +PASS -- TEST 'regional_noquilt_intel' [06:46, 04:29](1159 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:24, 04:32](628 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:34](630 MB) +PASS -- TEST 'regional_wofs_intel' [07:18, 05:40](1603 MB) + +PASS -- COMPILE 'rrfs_intel' [12:18, 10:56] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:05, 06:21](1011 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:09, 03:54](1204 MB) +PASS -- TEST 'rap_decomp_intel' [09:06, 06:25](1009 MB) +PASS -- TEST 'rap_2threads_intel' [09:05, 05:51](1092 MB) +PASS -- TEST 'rap_restart_intel' [05:44, 03:17](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:08, 06:09](1008 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:06, 06:32](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:39, 04:39](880 MB) +PASS -- TEST 'hrrr_control_intel' [05:19, 03:25](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:29](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:19, 02:52](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:56, 01:48](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:16, 06:02](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:27](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:23, 07:08](1953 MB) + +PASS -- COMPILE 'csawmg_intel' [11:18, 10:07] ( 6 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:35, 05:54](694 MB) +PASS -- TEST 'control_ras_intel' [04:51, 02:55](659 MB) + +PASS -- COMPILE 'wam_intel' [10:18, 09:21] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:34, 01:55](384 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:20, 12:33] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:55, 02:33](1594 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 04:24](629 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:21] ( 890 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:31, 02:36](1595 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:26, 02:29](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:50, 02:52](802 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:54, 02:43](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:21, 03:57](839 MB) +PASS -- TEST 'control_ras_debug_intel' [03:53, 02:41](810 MB) +PASS -- TEST 'control_diag_debug_intel' [06:07, 02:38](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [04:16, 02:42](1629 MB) +PASS -- TEST 'regional_debug_intel' [18:15, 16:15](661 MB) +PASS -- TEST 'rap_control_debug_intel' [06:41, 04:53](1183 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:45, 04:48](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:53, 04:50](1181 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:51, 04:41](1182 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:49, 04:46](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:35, 05:01](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:47, 05:03](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:50, 04:46](1187 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:41, 04:40](1185 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:54, 04:46](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:53, 04:45](1182 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:51, 04:40](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:45, 07:32](1182 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:49, 04:35](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:48, 05:52](1184 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:45, 04:42](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:00](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 05:08] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:41, 04:40](421 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:20, 09:35] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:05, 03:53](1058 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 05:11](883 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 02:51](882 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:38, 04:49](948 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 02:31](942 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 02:57](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:26, 03:56](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:03, 01:35](781 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 12:05] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:13, 02:00](1087 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:12](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:21, 01:15](978 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:20, 10:12] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:38, 03:40](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:19, 06:11] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:47, 04:42](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 04:30](1052 MB) +PASS -- TEST 'conus13km_debug_intel' [17:09, 13:21](1134 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:57, 13:42](817 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:49, 07:55](1134 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 13:27](1205 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:51] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:53, 04:35](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [17:22, 16:22] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:12, 04:49](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:12, 05:24](1073 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:45, 06:45](780 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:36, 11:15](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:24, 12:24](814 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:33, 04:51](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:15, 05:59](492 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:30, 02:33](394 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:34, 06:47](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:28, 03:31](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:27, 03:14](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:22, 04:07](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:26](428 MB) +PASS -- TEST 'gnv1_nested_intel' [07:00, 03:46](787 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:21, 07:27] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:38, 12:19](615 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:23, 20:03] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:07, 07:20](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:26, 07:39](690 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:20, 17:12] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:46, 05:34](679 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:20, 14:46] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:28, 06:06](751 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:14, 06:09](740 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:39, 16:19](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:18, 08:19] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:01, 02:38](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:01, 01:40](748 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:55, 02:26](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:57, 02:29](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:56, 02:27](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:51, 02:33](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:53, 02:36](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:54, 02:24](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:51, 05:56](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:44, 05:55](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:31](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:13, 04:03](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [10:48, 04:05](1957 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:23] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:54, 05:06](732 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:17] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [13:48, 02:32](749 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:31] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:46, 01:31](305 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:39, 01:23](453 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:36, 00:52](450 MB) + +PASS -- COMPILE 'atml_intel' [14:19, 13:18] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:26, 08:09](1633 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:24, 07:43](1633 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:48, 03:47](854 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:19, 08:02] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:16, 06:06](1662 MB) + +PASS -- COMPILE 'atmw_intel' [14:21, 13:10] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:06, 01:40](1636 MB) + +PASS -- COMPILE 'atmaero_intel' [12:20, 11:40] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:43, 03:49](2948 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:48, 04:21](3003 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:06, 04:24](3012 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:17, 06:58] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [32:06, 22:34](4529 MB) SYNOPSIS: -Starting Date/Time: 20240514 11:25:11 -Ending Date/Time: 20240514 13:04:32 -Total Time: 01h:40m:23s +Starting Date/Time: 20240517 07:10:29 +Ending Date/Time: 20240517 08:58:48 +Total Time: 01h:49m:15s Compiles Completed: 39/39 -Tests Completed: 179/182 -Failed Tests: -* TEST regional_decomp_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_regional_decomp_intel.log -* TEST hrrr_control_2threads_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_hrrr_control_2threads_intel.log -* TEST rap_control_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_rap_control_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 DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) - aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_14710 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 'atm_dyn32_intel' [14:17, 13:23] ( 6 warnings 1 remarks ) -PASS -- TEST 'regional_decomp_intel' [07:06, 04:49](632 MB) - -PASS -- COMPILE 'rrfs_intel' [13:21, 11:55] ( 8 warnings 9 remarks ) -PASS -- TEST 'hrrr_control_2threads_intel' [05:12, 02:50](1092 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:21, 09:17] ( 890 warnings 9 remarks ) -PASS -- TEST 'rap_control_debug_intel' [06:31, 04:45](1182 MB) - -SYNOPSIS: -Starting Date/Time: 20240514 13:31:19 -Ending Date/Time: 20240514 14:28:08 -Total Time: 00h:57m:05s -Compiles Completed: 3/3 -Tests Completed: 3/3 +Tests Completed: 182/182 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 31eec5fdb0..f2bc960cc7 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb +53ca93c48b032207b4d90354b56c0dbc6c8c4316 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) - aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) + 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) + cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,279 +35,279 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_222558 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_245093 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:46, 08:08](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:16, 24:37] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:33, 14:04](1696 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:09, 14:05](1808 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 06:48](945 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:28, 15:00](1670 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:14, 26:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:55, 14:14](1688 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:14, 14:41] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 23:57](1707 MB) - -PASS -- COMPILE 's2swa_intel' [21:15, 20:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:58, 08:58](3098 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:07, 08:49](3097 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:00, 05:50](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:50, 09:11](3121 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:02, 05:32](3175 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 07:47](3412 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:48, 08:45](3096 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:43, 08:05](3021 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:07, 08:53](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:03, 11:35](3266 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:52, 07:36](3605 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:36, 13:45](4037 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:49, 09:43](4344 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:36, 08:43](3065 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 18:53] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:05, 05:35](1686 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:16, 05:39](1732 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:14, 14:25] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:57, 10:40](3131 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:13, 13:33] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:16, 06:12](1697 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:15, 17:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:00, 05:35](1730 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 16:58] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:29, 06:59](2657 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 02:04](2681 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:44, 01:12](2112 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:14, 24:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:10, 08:21](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 23:44] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:06, 15:38](1699 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:02, 07:25](998 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:59, 17:30](1680 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:14, 15:02] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:02, 26:14](1714 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:15, 16:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:05, 04:06](670 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:30, 03:05](1566 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:27, 03:10](1579 MB) -PASS -- TEST 'control_latlon_intel' [07:17, 03:03](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:33, 03:42](1567 MB) -PASS -- TEST 'control_c48_intel' [12:12, 06:52](1604 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:57, 05:42](723 MB) -PASS -- TEST 'control_c192_intel' [14:10, 10:10](1684 MB) -PASS -- TEST 'control_c384_intel' [22:40, 18:28](1986 MB) -PASS -- TEST 'control_c384gdas_intel' [20:01, 14:24](1183 MB) -PASS -- TEST 'control_stochy_intel' [04:17, 02:03](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:38, 01:09](430 MB) -PASS -- TEST 'control_lndp_intel' [04:17, 01:58](628 MB) -PASS -- TEST 'control_iovr4_intel' [05:19, 02:45](623 MB) -PASS -- TEST 'control_iovr5_intel' [05:19, 02:39](623 MB) -PASS -- TEST 'control_p8_intel' [08:46, 03:57](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:06, 04:01](1607 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:55, 03:52](1607 MB) -PASS -- TEST 'control_restart_p8_intel' [03:38, 02:06](789 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:46, 03:50](1594 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:38, 02:03](792 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:41, 03:26](1595 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:44, 02:46](1684 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:19, 05:29](1605 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:46, 04:18](1656 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:12, 03:37](1613 MB) -PASS -- TEST 'merra2_thompson_intel' [05:40, 03:44](1610 MB) -PASS -- TEST 'regional_control_intel' [06:00, 04:46](617 MB) -PASS -- TEST 'regional_restart_intel' [03:44, 02:36](787 MB) -PASS -- TEST 'regional_decomp_intel' [05:50, 04:54](617 MB) -PASS -- TEST 'regional_2threads_intel' [04:24, 03:02](757 MB) -PASS -- TEST 'regional_noquilt_intel' [05:58, 04:37](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 04:39](614 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:58, 04:37](617 MB) -PASS -- TEST 'regional_wofs_intel' [08:03, 06:14](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [16:12, 15:22] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:22, 06:53](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:25, 04:06](1190 MB) -PASS -- TEST 'rap_decomp_intel' [09:27, 07:14](1009 MB) -PASS -- TEST 'rap_2threads_intel' [08:31, 06:11](1097 MB) -PASS -- TEST 'rap_restart_intel' [06:31, 03:56](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:27, 06:45](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:29, 07:21](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 04:56](882 MB) -PASS -- TEST 'hrrr_control_intel' [05:15, 03:55](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:26, 04:16](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:28, 03:09](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:52, 02:24](839 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:10, 06:52](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:44, 08:35](1968 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 08:02](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [15:15, 14:59] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:46, 06:36](696 MB) -PASS -- TEST 'control_ras_intel' [04:39, 03:36](656 MB) - -PASS -- COMPILE 'wam_intel' [16:13, 15:32] -PASS -- TEST 'control_wam_intel' [03:32, 02:22](370 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:15, 18:42] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:46, 03:49](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [05:48, 05:01](617 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:17, 13:39] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:20, 03:09](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 03:21](1588 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:33](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:40, 02:56](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:50, 04:33](827 MB) -PASS -- TEST 'control_ras_debug_intel' [05:06, 03:07](794 MB) -PASS -- TEST 'control_diag_debug_intel' [05:08, 03:16](1643 MB) -PASS -- TEST 'control_debug_p8_intel' [04:56, 03:25](1619 MB) -PASS -- TEST 'regional_debug_intel' [18:01, 16:43](635 MB) -PASS -- TEST 'rap_control_debug_intel' [06:43, 05:35](1169 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:39, 05:20](1167 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 05:35](1173 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:43, 05:26](1173 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:31, 05:48](1169 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:45, 05:51](1252 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:46, 05:46](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:36, 05:21](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:34, 05:53](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:37](1169 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:44, 05:35](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 05:46](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:36, 08:27](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 05:19](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:43, 06:25](1171 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 05:15](1169 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:22, 08:33](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:11, 11:17] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:37, 04:59](398 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 13:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:17, 03:53](1050 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 06:10](891 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:07, 03:41](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:12, 05:21](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:26, 02:51](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:33](885 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:26, 04:27](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:50, 01:41](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:15, 16:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:19, 02:11](1092 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:12](1077 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:51, 01:33](975 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:15, 15:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:25](905 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:12, 11:48] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:40, 05:04](1050 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:03](1049 MB) -PASS -- TEST 'conus13km_debug_intel' [16:44, 14:08](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:03, 13:48](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:01, 08:26](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:00, 14:13](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 10:36] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 05:04](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [20:15, 19:52] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:30, 05:22](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:38, 04:39](1054 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:39, 07:48](740 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:19, 11:40](790 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:02, 13:04](800 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:28, 05:23](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:38, 07:11](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 03:03](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:06, 08:04](443 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:12, 03:42](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:22, 03:41](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:25, 04:48](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:49, 01:46](403 MB) -PASS -- TEST 'gnv1_nested_intel' [06:39, 04:09](771 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:13, 13:43] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:28, 12:49](584 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:12, 21:37] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:27, 07:53](613 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:02, 07:56](792 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:12, 20:03] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:36, 06:10](788 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:11, 18:25] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:26, 06:14](744 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:31, 06:32](733 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:25, 20:04](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:11, 14:28] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:42](759 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:40](748 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:37](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:31](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:27](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:35](747 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:35](746 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:34, 02:34](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:20, 06:21](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:37, 06:05](678 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:34, 02:35](759 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:36](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:04, 04:36](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 10:06] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:30](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 13:38] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:34](759 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:10, 05:37] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:11, 02:16](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:00, 01:53](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:00, 02:29](456 MB) - -PASS -- COMPILE 'atml_intel' [17:15, 16:52] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:26, 08:38](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:25, 08:35](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:15, 04:52](837 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:14, 13:02] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:14, 06:49](1651 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 14:59] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:49, 02:38](1650 MB) - -PASS -- COMPILE 'atmaero_intel' [14:14, 13:44] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:51, 07:06](2947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:55, 07:44](3013 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:41, 07:19](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:15, 11:30] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:12, 19:08](4481 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:37] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:55, 07:26](3071 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 23:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:02, 14:14](1696 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:12, 14:26](1808 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:00, 07:58](944 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:56, 15:22](1669 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 23:19] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:59, 13:40](1688 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:15, 13:45] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:45, 23:53](1707 MB) + +PASS -- COMPILE 's2swa_intel' [21:15, 20:26] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:06, 08:10](3098 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:17, 08:07](3097 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:13, 05:47](3155 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:06, 08:15](3121 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:13, 05:51](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:46, 07:00](3410 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:59, 08:36](3096 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:48, 07:30](3021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:58, 08:20](3098 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:04, 10:34](3373 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:09, 08:10](3598 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:25, 13:17](4039 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:20, 09:21](4344 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 08:02](3065 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 18:43] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:11, 05:27](1686 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:11, 05:51](1731 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:15, 13:34] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:07, 10:18](3130 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:15, 12:49] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [22:49, 20:41](1699 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:11, 17:24] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:20, 05:38](1730 MB) + +PASS -- COMPILE 's2s_intel' [17:15, 16:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:36, 06:55](2657 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:28, 01:58](2681 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:41, 01:06](2113 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:11, 22:53] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:38, 09:13](3102 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 24:15] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:04, 15:01](1701 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:26, 07:16](998 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:20, 17:12](1680 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 14:22] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:47, 25:45](1715 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:51] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:59, 04:14](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:32, 03:27](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:26, 03:29](1579 MB) +PASS -- TEST 'control_latlon_intel' [11:13, 03:20](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:12, 03:23](1567 MB) +PASS -- TEST 'control_c48_intel' [13:22, 06:38](1601 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:13, 05:43](723 MB) +PASS -- TEST 'control_c192_intel' [15:02, 10:07](1683 MB) +PASS -- TEST 'control_c384_intel' [22:23, 18:33](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [18:31, 14:46](1183 MB) +PASS -- TEST 'control_stochy_intel' [03:45, 02:14](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:08, 01:21](429 MB) +PASS -- TEST 'control_lndp_intel' [03:40, 02:12](628 MB) +PASS -- TEST 'control_iovr4_intel' [03:44, 03:05](623 MB) +PASS -- TEST 'control_iovr5_intel' [04:54, 03:09](623 MB) +PASS -- TEST 'control_p8_intel' [06:49, 04:15](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:12, 04:27](1606 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:32](1608 MB) +PASS -- TEST 'control_restart_p8_intel' [04:37, 02:06](789 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:56](1594 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 02:12](792 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:02, 03:55](1596 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:26, 03:26](1689 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:07, 05:35](1605 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:35, 04:39](1656 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:47, 03:57](1613 MB) +PASS -- TEST 'merra2_thompson_intel' [05:43, 03:50](1610 MB) +PASS -- TEST 'regional_control_intel' [07:00, 05:03](617 MB) +PASS -- TEST 'regional_restart_intel' [08:45, 02:53](786 MB) +PASS -- TEST 'regional_decomp_intel' [06:50, 05:24](617 MB) +PASS -- TEST 'regional_2threads_intel' [04:52, 03:08](759 MB) +PASS -- TEST 'regional_noquilt_intel' [05:59, 04:58](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:14, 05:22](614 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:03, 05:49](617 MB) +PASS -- TEST 'regional_wofs_intel' [07:54, 06:16](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 13:18] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:00, 07:05](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:35, 04:22](1188 MB) +PASS -- TEST 'rap_decomp_intel' [13:58, 07:32](1009 MB) +PASS -- TEST 'rap_2threads_intel' [11:51, 06:11](1100 MB) +PASS -- TEST 'rap_restart_intel' [06:20, 04:27](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:00, 07:23](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:00, 07:16](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:03, 05:19](881 MB) +PASS -- TEST 'hrrr_control_intel' [11:51, 04:24](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:57, 03:53](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [11:51, 03:04](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:12, 02:23](839 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:00, 06:58](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:17, 08:13](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:03, 08:14](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 13:19] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:49, 06:52](695 MB) +PASS -- TEST 'control_ras_intel' [05:44, 03:51](656 MB) + +PASS -- COMPILE 'wam_intel' [13:15, 13:01] +PASS -- TEST 'control_wam_intel' [04:35, 02:23](370 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:25] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:39, 03:45](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [07:02, 04:51](616 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:43] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:18, 03:02](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:09, 03:14](1587 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:31, 03:26](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:38, 03:03](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:50, 04:30](825 MB) +PASS -- TEST 'control_ras_debug_intel' [08:30, 03:07](795 MB) +PASS -- TEST 'control_diag_debug_intel' [08:50, 03:02](1643 MB) +PASS -- TEST 'control_debug_p8_intel' [09:42, 03:30](1619 MB) +PASS -- TEST 'regional_debug_intel' [22:45, 16:06](635 MB) +PASS -- TEST 'rap_control_debug_intel' [10:33, 04:57](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:35, 05:05](1167 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:31, 05:06](1173 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:34, 05:06](1173 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:38, 05:03](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:54, 05:21](1252 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:44, 05:16](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 05:09](1168 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:39, 05:03](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:35, 05:05](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:32, 04:59](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:31, 05:12](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:38, 07:49](1168 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:35, 04:58](1165 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:34, 05:55](1171 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:39, 05:03](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:20](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:11, 08:53] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:32, 05:02](398 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 14:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:11, 03:50](1044 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:28, 06:18](891 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:04, 03:37](887 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:22, 05:12](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:07, 02:46](935 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:38](885 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 04:10](785 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:42, 02:45](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:04, 02:08](1092 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:44, 02:13](1075 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:27, 02:26](975 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 14:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 04:26](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:10, 11:28] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:01, 04:59](1050 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:00, 04:56](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [16:12, 14:23](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:07, 14:38](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:02, 08:34](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:01, 14:24](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 10:41] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:43, 05:04](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [20:12, 19:13] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:35, 05:33](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:52, 04:47](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:42, 07:46](741 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:29, 11:46](786 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:54, 13:00](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:32, 05:32](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:51, 07:00](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:45, 03:43](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:40, 08:27](433 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:11, 04:27](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:24, 04:02](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:18, 04:50](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:57, 01:52](401 MB) +PASS -- TEST 'gnv1_nested_intel' [06:45, 04:13](767 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:11, 14:51] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:25, 13:06](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:11, 20:36] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:00, 07:42](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:59, 07:53](787 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:15, 20:28] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:59, 06:16](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:18, 18:13] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:10, 06:26](745 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:03, 06:21](737 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:26, 20:10](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:13, 12:53] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:33, 02:34](759 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:36, 01:35](746 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:31, 02:28](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:30, 02:28](637 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:33](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:37](759 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:34](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:27](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:01, 06:23](690 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 05:59](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:42](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:39](2020 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:50, 04:39](2020 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 09:07] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:41, 05:25](745 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 12:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:51, 02:44](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:14, 05:14] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:04, 03:36](319 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:05, 02:53](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:58, 01:12](456 MB) + +PASS -- COMPILE 'atml_intel' [17:11, 16:17] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:19, 08:46](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:16, 08:43](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:34, 04:06](837 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:15, 11:18] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:02, 07:15](1653 MB) + +PASS -- COMPILE 'atmw_intel' [17:15, 15:49] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:28, 02:51](1649 MB) + +PASS -- COMPILE 'atmaero_intel' [14:15, 13:08] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:33, 07:01](2943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:40, 07:35](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:23, 07:37](3021 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:11, 10:04] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:51, 18:59](4487 MB) SYNOPSIS: -Starting Date/Time: 20240514 13:04:47 -Ending Date/Time: 20240514 14:41:21 -Total Time: 01h:38m:16s +Starting Date/Time: 20240516 16:59:51 +Ending Date/Time: 20240516 19:09:07 +Total Time: 02h:10m:32s Compiles Completed: 39/39 Tests Completed: 183/183 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 47aa4b7561..7e86ac795a 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,19 +1,19 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb +53ca93c48b032207b4d90354b56c0dbc6c8c4316 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) + 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -24,371 +24,371 @@ 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-20240503 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_299275 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2895930 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:40, 05:30](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 17:07](1743 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:20, 18:01](2033 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:17, 08:08](1118 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:01, 19:26](1653 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:44, 16:49](1753 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:29] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:01, 22:43](1698 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 12:59] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:32, 05:45](3206 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:48, 05:45](3218 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:33, 03:23](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:33, 05:53](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:32, 03:21](3284 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:25, 05:34](3566 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:29, 06:08](3229 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:25, 04:47](3062 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:47, 05:47](3218 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:19, 10:14](3358 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 06:09](3623 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:22, 09:36](4123 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:05, 06:06](4362 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:34, 05:25](3181 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 12:19] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:19, 05:00](1738 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:24, 04:21](1770 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:24] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:06, 08:20](3234 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:15] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:58, 05:45](1746 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:30] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:07, 04:24](1787 MB) - -PASS -- COMPILE 's2s_intel' [12:11, 11:30] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:44, 09:23](2834 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:37](2828 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:25](2303 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:02] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:25](3207 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:09] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:08](1779 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:50, 08:01](1169 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:32, 19:43](1684 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:15] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:58, 24:39](1726 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:23] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:23, 03:21](701 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:54](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:48, 02:58](1601 MB) -PASS -- TEST 'control_latlon_intel' [03:42, 02:53](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 02:54](1599 MB) -PASS -- TEST 'control_c48_intel' [08:47, 07:36](1762 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:22](866 MB) -PASS -- TEST 'control_c192_intel' [12:17, 10:27](1746 MB) -PASS -- TEST 'control_c384_intel' [13:28, 10:26](2009 MB) -PASS -- TEST 'control_c384gdas_intel' [10:48, 07:59](1412 MB) -PASS -- TEST 'control_stochy_intel' [02:25, 01:37](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:31, 00:57](504 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:32](661 MB) -PASS -- TEST 'control_iovr4_intel' [03:24, 02:25](656 MB) -PASS -- TEST 'control_iovr5_intel' [03:24, 02:26](659 MB) -PASS -- TEST 'control_p8_intel' [03:57, 02:58](1592 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 02:56](1630 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 02:49](1629 MB) -PASS -- TEST 'control_restart_p8_intel' [02:50, 01:36](896 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:58, 02:53](1615 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:52, 01:36](935 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:54, 03:02](1611 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:56, 02:43](1716 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:54, 05:11](1628 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:03, 03:53](1698 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:04, 02:56](1635 MB) -PASS -- TEST 'merra2_thompson_intel' [05:03, 03:13](1647 MB) -PASS -- TEST 'regional_control_intel' [05:45, 05:09](846 MB) -PASS -- TEST 'regional_restart_intel' [03:42, 02:41](1021 MB) -PASS -- TEST 'regional_decomp_intel' [06:40, 05:31](848 MB) -PASS -- TEST 'regional_2threads_intel' [04:40, 03:13](844 MB) -PASS -- TEST 'regional_noquilt_intel' [06:40, 05:10](1362 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:21](860 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:09](857 MB) -PASS -- TEST 'regional_wofs_intel' [07:43, 06:50](1912 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 10:43] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:44, 07:42](1109 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:15, 04:12](1301 MB) -PASS -- TEST 'rap_decomp_intel' [08:36, 08:08](1029 MB) -PASS -- TEST 'rap_2threads_intel' [08:35, 07:13](1183 MB) -PASS -- TEST 'rap_restart_intel' [06:43, 04:08](1106 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:47, 07:42](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:08](1043 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:47, 05:48](1130 MB) -PASS -- TEST 'hrrr_control_intel' [05:08, 03:57](1048 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:00, 04:07](1030 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:38](1118 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:09](1004 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:50, 07:37](1103 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:18](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 09:02](2063 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 10:24] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:41, 05:59](751 MB) -PASS -- TEST 'control_ras_intel' [04:26, 03:13](750 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 03:36] -PASS -- TEST 'control_csawmg_gnu' [09:39, 08:18](549 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 09:48] -PASS -- TEST 'control_wam_intel' [02:23, 02:04](656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 10:50] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:01, 02:38](1628 MB) -PASS -- TEST 'regional_control_faster_intel' [05:41, 04:43](853 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:48] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:57, 02:35](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:01, 02:39](1615 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:25, 02:59](823 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:39](824 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:52, 04:11](867 MB) -PASS -- TEST 'control_ras_debug_intel' [04:26, 02:38](833 MB) -PASS -- TEST 'control_diag_debug_intel' [06:59, 02:39](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [06:56, 02:51](1637 MB) -PASS -- TEST 'regional_debug_intel' [20:55, 16:55](859 MB) -PASS -- TEST 'rap_control_debug_intel' [07:28, 04:46](1212 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:28, 04:47](1210 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:29, 04:51](1205 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:31, 04:51](1217 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:30, 04:57](1210 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:44, 05:07](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:25, 04:55](1210 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:00](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:24, 05:01](1211 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:46](1211 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:52](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:59](1209 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:41, 07:49](1206 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:31, 04:56](1206 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 05:55](1215 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:29, 04:52](1207 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:42, 08:17](1217 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:39] -PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:11](529 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:14] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:27, 04:56](522 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 10:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:09, 03:56](1165 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:45, 06:24](1051 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:39, 03:23](988 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:37, 06:04](1099 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:13](961 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:35](925 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 04:50](1038 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:50](934 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:55, 02:09](1200 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:41, 00:52](1121 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:43, 01:12](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 10:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:13](985 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:22] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:46](1092 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:48](1090 MB) -PASS -- TEST 'conus13km_debug_intel' [15:56, 14:07](1235 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:40](918 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:08](1155 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 14:47](1313 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 03:29] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:48](1131 MB) - -PASS -- COMPILE 'hafsw_intel' [14:13, 11:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:17, 04:58](738 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:31, 05:49](1124 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:51](840 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:21, 13:20](861 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:31, 15:03](891 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:59, 05:30](504 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 06:39](519 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:41, 02:40](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:14, 07:09](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:48, 03:39](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:50, 03:30](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:57, 04:05](592 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:31, 01:14](407 MB) -PASS -- TEST 'gnv1_nested_intel' [09:50, 04:06](807 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:58] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:53, 12:36](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:03, 08:43](642 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:11, 08:45](747 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 11:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:12, 06:23](709 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:21] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:26, 06:24](832 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:22, 06:32](821 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:04, 15:54](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:11] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:42](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1103 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:39](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:37](1030 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:35](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:39](1145 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:40](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:30](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:23, 06:07](1061 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:20, 06:19](1058 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:40](1149 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 03:48](2497 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:52](2425 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:17](1094 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:07] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:37](1156 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:06] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:45](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:47](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:30](320 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 11:46] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:05, 04:08](1623 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:01, 04:10](1619 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:16](901 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 04:21] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:29](1607 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 11:01] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:59, 01:43](1682 MB) - -PASS -- COMPILE 'atmaero_intel' [11:12, 10:27] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:03](3043 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:07, 04:48](3101 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 04:53](3118 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:40] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:25, 39:50](4440 MB) - -PASS -- COMPILE 'atm_gnu' [04:11, 03:40] -PASS -- TEST 'control_c48_gnu' [12:46, 11:10](1544 MB) -PASS -- TEST 'control_stochy_gnu' [04:23, 03:22](506 MB) -PASS -- TEST 'control_ras_gnu' [05:22, 04:41](514 MB) -PASS -- TEST 'control_p8_gnu' [06:00, 04:38](1271 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:27](1269 MB) -PASS -- TEST 'control_flake_gnu' [11:24, 10:38](553 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:11, 03:43] -PASS -- TEST 'rap_control_gnu' [11:40, 10:42](858 MB) -PASS -- TEST 'rap_decomp_gnu' [12:38, 10:53](858 MB) -PASS -- TEST 'rap_2threads_gnu' [11:34, 09:47](944 MB) -PASS -- TEST 'rap_restart_gnu' [06:45, 05:34](585 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:41, 10:55](857 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:35, 11:03](857 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:43, 07:51](587 MB) -PASS -- TEST 'hrrr_control_gnu' [06:33, 05:34](857 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:34, 05:32](842 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:37, 05:00](934 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:30](856 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:31, 02:51](570 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:48](668 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:46, 10:39](855 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:36] -PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:36](1286 MB) -PASS -- TEST 'regional_debug_gnu' [12:42, 10:53](562 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:34](871 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:37](869 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:22, 02:36](877 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:32](876 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:35, 02:45](962 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 04:02](870 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:34](871 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:38](867 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:35](506 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:44](498 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:44, 01:35](1255 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:25, 02:35](871 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:46](875 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:13](877 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:11, 01:49] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:37] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:36, 09:25](714 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:39, 04:52](713 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:40, 08:33](759 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:31, 04:33](756 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:02](716 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:44, 06:58](557 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:28](549 MB) -PASS -- TEST 'conus13km_control_gnu' [04:56, 03:09](886 MB) -PASS -- TEST 'conus13km_2threads_gnu' [05:44, 05:05](889 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:47](559 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:25] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:50](740 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:38] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:30](721 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:27](720 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:00, 06:47](898 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:53, 06:52](593 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:51, 07:32](899 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:50, 07:06](964 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:12, 03:39] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:25, 02:34](743 MB) - -PASS -- COMPILE 's2swa_gnu' [15:13, 14:32] - -PASS -- COMPILE 's2s_gnu' [15:12, 14:27] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:16, 06:34](1357 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:30] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:14] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:06, 23:58](1321 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:22] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:57, 16:21](1335 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:16] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:03](697 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:12, 13:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:47, 05:40](3153 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 15:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:20, 17:11](1740 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:27, 17:54](1995 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:19, 08:09](1094 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:19, 19:23](1621 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:12, 16:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:51, 16:52](1722 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:12, 04:40] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:05, 22:42](1653 MB) + +PASS -- COMPILE 's2swa_intel' [22:12, 12:49] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:57, 06:18](3191 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:53, 05:54](3202 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:43, 03:27](3244 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:45, 05:59](3206 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:58, 03:29](3249 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:37, 05:44](3535 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:37, 06:05](3175 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:40, 04:51](3036 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:53, 05:55](3191 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:42, 10:17](3317 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:38, 06:27](3591 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:46, 10:00](4104 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:48, 06:19](4333 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:45, 05:35](3167 MB) + +PASS -- COMPILE 's2sw_intel' [23:12, 12:23] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:35, 04:50](1717 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:46, 04:23](1774 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:12, 04:42] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:25, 08:18](3186 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:12, 04:07] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:25, 05:55](1708 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:12, 11:38] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:28, 04:22](1761 MB) + +PASS -- COMPILE 's2s_intel' [21:12, 11:28] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:00, 09:29](2803 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:02, 02:35](2813 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:04, 01:25](2275 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:12, 17:08] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:00, 05:25](3199 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:36] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:16, 17:18](1754 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 08:08](1144 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:09, 19:51](1660 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:13, 04:12] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:31, 24:50](1683 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:13, 11:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:43, 03:23](687 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 02:52](1580 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:16, 02:58](1589 MB) +PASS -- TEST 'control_latlon_intel' [04:04, 02:54](1578 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:56, 02:56](1571 MB) +PASS -- TEST 'control_c48_intel' [08:46, 07:37](1743 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:24](856 MB) +PASS -- TEST 'control_c192_intel' [12:22, 10:42](1734 MB) +PASS -- TEST 'control_c384_intel' [13:37, 10:50](1991 MB) +PASS -- TEST 'control_c384gdas_intel' [12:56, 08:17](1379 MB) +PASS -- TEST 'control_stochy_intel' [02:32, 01:39](642 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:55, 01:01](488 MB) +PASS -- TEST 'control_lndp_intel' [02:38, 01:34](642 MB) +PASS -- TEST 'control_iovr4_intel' [03:37, 02:32](645 MB) +PASS -- TEST 'control_iovr5_intel' [03:36, 02:28](640 MB) +PASS -- TEST 'control_p8_intel' [05:42, 02:59](1617 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 03:00](1611 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:33, 02:57](1608 MB) +PASS -- TEST 'control_restart_p8_intel' [04:00, 01:39](875 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:43, 02:59](1597 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:09, 01:41](920 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:23, 03:03](1603 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:18, 02:51](1712 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:17, 05:21](1609 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:25, 04:01](1680 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:29, 03:00](1622 MB) +PASS -- TEST 'merra2_thompson_intel' [05:26, 03:18](1614 MB) +PASS -- TEST 'regional_control_intel' [07:02, 05:14](837 MB) +PASS -- TEST 'regional_restart_intel' [03:45, 02:57](1005 MB) +PASS -- TEST 'regional_decomp_intel' [07:01, 05:33](836 MB) +PASS -- TEST 'regional_2threads_intel' [05:07, 03:18](825 MB) +PASS -- TEST 'regional_noquilt_intel' [07:02, 05:13](1348 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:02, 05:11](828 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 05:14](831 MB) +PASS -- TEST 'regional_wofs_intel' [09:50, 06:54](1893 MB) + +PASS -- COMPILE 'rrfs_intel' [11:12, 10:34] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:41, 07:46](1090 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:15, 04:14](1264 MB) +PASS -- TEST 'rap_decomp_intel' [10:38, 08:12](1007 MB) +PASS -- TEST 'rap_2threads_intel' [09:44, 07:27](1170 MB) +PASS -- TEST 'rap_restart_intel' [05:49, 04:03](1085 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:49, 07:58](1090 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:47, 08:14](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:59, 05:53](1120 MB) +PASS -- TEST 'hrrr_control_intel' [05:43, 04:04](1032 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:40, 04:10](1016 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:43, 03:44](1095 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:34, 02:11](985 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:02, 07:38](1080 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:21](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:30, 09:03](2045 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 10:37] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:44, 06:02](736 MB) +PASS -- TEST 'control_ras_intel' [04:24, 03:18](727 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:12, 03:38] +PASS -- TEST 'control_csawmg_gnu' [09:51, 08:22](533 MB) + +PASS -- COMPILE 'wam_intel' [10:12, 10:08] +PASS -- TEST 'control_wam_intel' [03:23, 02:08](640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:40] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:57, 02:45](1618 MB) +PASS -- TEST 'regional_control_faster_intel' [05:44, 04:45](837 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:43] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:07, 02:36](1577 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:08, 02:33](1587 MB) +PASS -- TEST 'control_stochy_debug_intel' [13:31, 03:04](778 MB) +PASS -- TEST 'control_lndp_debug_intel' [12:34, 02:48](775 MB) +PASS -- TEST 'control_csawmg_debug_intel' [17:07, 04:10](833 MB) +PASS -- TEST 'control_ras_debug_intel' [12:32, 02:49](790 MB) +PASS -- TEST 'control_diag_debug_intel' [15:14, 02:39](1642 MB) +PASS -- TEST 'control_debug_p8_intel' [15:06, 02:50](1608 MB) +PASS -- TEST 'regional_debug_intel' [31:05, 17:50](817 MB) +PASS -- TEST 'rap_control_debug_intel' [15:38, 04:53](1174 MB) +PASS -- TEST 'hrrr_control_debug_intel' [14:36, 04:49](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [15:37, 04:52](1174 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [15:37, 04:51](1175 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:37, 04:55](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [17:21, 05:04](1253 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:45, 05:03](1173 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:37, 05:03](1168 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:37, 05:01](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:00](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:57](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:28, 04:52](1172 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:55](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:52](1168 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:49](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:51](1169 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 08:33](1176 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:12, 02:46] +PASS -- TEST 'control_csawmg_debug_gnu' [12:51, 02:17](509 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:31] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:24, 04:54](467 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:12, 10:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:10, 03:53](1141 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:42, 06:29](1037 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 03:24](954 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 06:09](1074 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 03:10](943 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:34](910 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:46, 04:52](1017 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:32, 01:53](922 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:12, 12:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:53, 02:05](1178 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:48, 00:55](1099 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:51, 01:15](1095 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:12, 10:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:12](968 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [15:13, 03:32] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:55](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 04:44](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [18:02, 14:18](1180 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:02, 14:35](849 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:55, 08:12](1101 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:53, 14:12](1256 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:12, 03:32] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 04:54](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [22:12, 11:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:15, 04:58](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:01](1099 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:54](815 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 13:35](839 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:34, 15:12](871 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:37](482 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:28, 06:45](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:43, 02:49](350 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:18, 07:26](448 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:49, 03:43](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:50, 03:40](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 04:07](565 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:28, 01:14](384 MB) +PASS -- TEST 'gnv1_nested_intel' [09:53, 04:23](785 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:12, 03:54] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:52, 12:53](542 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:12, 12:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:06, 09:01](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:09, 08:49](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:12, 11:55] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:08, 06:34](706 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:12, 11:15] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:21, 06:40](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 06:35](793 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:29](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:12, 05:51] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:39](1144 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:40](1105 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:40](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:37](997 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:39](1029 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:40](1129 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:40](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:16](1039 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:21, 06:20](1036 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:42](1147 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:24, 03:53](2441 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:23, 03:50](2440 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:12, 02:57] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:08](1062 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:58] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:39](1121 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:09] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:48](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:53](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:27, 00:48](313 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 11:53] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:12, 04:57](1589 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:04, 04:22](1588 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:15](886 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:26] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:01, 06:16](1580 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 10:59] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:58, 02:09](1648 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 10:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:05, 04:25](3008 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:03, 05:16](3077 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:49, 05:03](3084 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:31] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [32:15, 28:45](4441 MB) + +PASS -- COMPILE 'atm_gnu' [04:11, 03:43] +PASS -- TEST 'control_c48_gnu' [12:48, 11:14](1531 MB) +PASS -- TEST 'control_stochy_gnu' [05:27, 03:39](492 MB) +PASS -- TEST 'control_ras_gnu' [07:25, 04:52](501 MB) +PASS -- TEST 'control_p8_gnu' [07:04, 04:58](1260 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:57, 04:43](1253 MB) +PASS -- TEST 'control_flake_gnu' [13:25, 11:18](537 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:11, 03:40] +PASS -- TEST 'rap_control_gnu' [12:42, 11:13](841 MB) +PASS -- TEST 'rap_decomp_gnu' [12:37, 11:10](842 MB) +PASS -- TEST 'rap_2threads_gnu' [11:35, 10:09](922 MB) +PASS -- TEST 'rap_restart_gnu' [06:45, 05:29](569 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 11:05](844 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:40, 11:09](845 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:49, 08:02](572 MB) +PASS -- TEST 'hrrr_control_gnu' [06:38, 05:41](844 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:33, 05:39](828 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:33, 05:10](915 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:40](841 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:56](561 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:49](652 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:58, 10:37](836 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:43] +PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:39](1266 MB) +PASS -- TEST 'regional_debug_gnu' [11:41, 10:38](554 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:32](849 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:32](860 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:31](824 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:32](850 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:43, 02:44](935 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:24, 04:01](857 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:25, 02:34](850 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:33](846 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:23, 01:32](494 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:22, 01:43](485 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:45, 01:41](1246 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:24, 02:33](859 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:52](862 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 04:21](866 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:12, 01:52] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:40] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:35, 09:22](708 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:00](710 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 08:48](760 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:38](754 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:36, 05:09](694 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:45, 07:01](544 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:37](534 MB) +PASS -- TEST 'conus13km_control_gnu' [05:02, 03:12](868 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:48, 05:29](870 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:55](553 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:23] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:44, 05:47](728 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:12, 03:37] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 02:33](701 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:26, 02:29](703 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:53, 06:49](878 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:48, 07:02](567 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:43, 07:42](878 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 06:57](952 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:41] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:24, 02:37](720 MB) + +PASS -- COMPILE 's2swa_gnu' [15:12, 14:35] + +PASS -- COMPILE 's2s_gnu' [15:12, 14:22] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:13, 06:39](1342 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:37] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:22] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:03, 22:41](1307 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:27] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [18:58, 17:09](1307 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:05] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:23, 03:02](694 MB) SYNOPSIS: -Starting Date/Time: 20240514 17:03:26 -Ending Date/Time: 20240514 18:48:41 -Total Time: 01h:45m:33s +Starting Date/Time: 20240516 20:50:21 +Ending Date/Time: 20240516 22:43:43 +Total Time: 01h:53m:38s Compiles Completed: 55/55 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 2bc231638e..84e8e5b410 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,20 +1,20 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb +53ca93c48b032207b4d90354b56c0dbc6c8c4316 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d3) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c) + 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) - aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) + 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) + cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,366 +35,366 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1854380 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3011761 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:10, 15:08] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:05, 07:40](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 22:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:10, 13:47](1762 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:20, 14:27](2177 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:22, 06:45](1188 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:10, 15:33](1689 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:14, 28:19] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:38, 13:20](1766 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:43] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:18, 20:19](1727 MB) - -PASS -- COMPILE 's2swa_intel' [13:10, 12:53] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:50, 07:45](2149 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:06, 07:37](2051 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:06, 04:15](1949 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:51, 07:38](1985 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 04:19](1734 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:49, 08:55](2497 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:29](2076 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:56, 06:25](1902 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:04, 07:36](2093 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:42, 15:36](2787 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:25, 05:45](2928 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:39, 08:29](3634 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:26, 05:26](3620 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:57, 04:56](2034 MB) - -PASS -- COMPILE 's2sw_intel' [13:10, 12:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:52, 07:05](1777 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:01, 03:59](1835 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:05] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:11, 06:56](2061 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:22] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:54, 04:43](1802 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:19] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:53, 04:00](1827 MB) - -PASS -- COMPILE 's2s_intel' [10:10, 09:34] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:42, 07:13](2825 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:42, 02:04](2829 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:37, 01:10](2298 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 07:14](2063 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 17:17] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:55, 14:18](1811 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:01, 06:50](1285 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:50, 15:27](1732 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:13] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:48, 21:35](1775 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 08:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:19, 02:51](718 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:38, 02:27](1610 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:42, 02:32](1617 MB) -PASS -- TEST 'control_latlon_intel' [03:36, 02:27](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:41, 02:26](1612 MB) -PASS -- TEST 'control_c48_intel' [07:41, 06:59](1733 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 05:50](862 MB) -PASS -- TEST 'control_c192_intel' [09:44, 08:56](1752 MB) -PASS -- TEST 'control_c384_intel' [10:23, 09:06](2045 MB) -PASS -- TEST 'control_c384gdas_intel' [08:49, 07:02](1538 MB) -PASS -- TEST 'control_stochy_intel' [02:19, 01:26](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:23, 00:53](538 MB) -PASS -- TEST 'control_lndp_intel' [02:19, 01:29](673 MB) -PASS -- TEST 'control_iovr4_intel' [02:20, 02:04](671 MB) -PASS -- TEST 'control_iovr5_intel' [02:20, 02:04](657 MB) -PASS -- TEST 'control_p8_intel' [03:57, 02:33](1643 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:51, 02:32](1644 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:52, 02:26](1636 MB) -PASS -- TEST 'control_restart_p8_intel' [02:47, 01:26](913 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:43, 02:28](1632 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:27](991 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:43, 02:31](1621 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:43, 02:24](1731 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:24](1646 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:53, 03:29](1714 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:48, 02:29](1659 MB) -PASS -- TEST 'merra2_thompson_intel' [03:54, 02:46](1665 MB) -PASS -- TEST 'regional_control_intel' [05:30, 04:27](960 MB) -PASS -- TEST 'regional_restart_intel' [03:31, 02:29](1102 MB) -PASS -- TEST 'regional_decomp_intel' [05:27, 04:43](948 MB) -PASS -- TEST 'regional_2threads_intel' [03:28, 02:51](914 MB) -PASS -- TEST 'regional_noquilt_intel' [05:31, 04:20](1488 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 04:32](957 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:32](954 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 05:38](2067 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 07:36] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:40, 06:32](1219 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:25](1447 MB) -PASS -- TEST 'rap_decomp_intel' [07:33, 06:50](1142 MB) -PASS -- TEST 'rap_2threads_intel' [06:48, 06:07](1370 MB) -PASS -- TEST 'rap_restart_intel' [04:51, 03:25](1137 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:43, 06:41](1203 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:33, 06:52](1166 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:00, 04:54](1186 MB) -PASS -- TEST 'hrrr_control_intel' [04:35, 03:20](1070 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:33, 03:31](1043 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:52, 03:05](1127 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:20, 01:50](1023 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:50, 06:19](1206 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:19, 07:38](2007 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:42](2186 MB) - -PASS -- COMPILE 'csawmg_intel' [08:10, 07:12] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:32, 05:17](805 MB) -PASS -- TEST 'control_ras_intel' [03:16, 02:51](811 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:10] -PASS -- TEST 'control_csawmg_gnu' [07:32, 06:27](808 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 07:01] -PASS -- TEST 'control_wam_intel' [02:23, 01:53](788 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:45] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:50, 02:22](1643 MB) -PASS -- TEST 'regional_control_faster_intel' [04:25, 04:06](955 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 04:01] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:30, 02:11](1632 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:32, 02:09](1632 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:27](832 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:13](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:33, 03:24](883 MB) -PASS -- TEST 'control_ras_debug_intel' [03:17, 02:17](837 MB) -PASS -- TEST 'control_diag_debug_intel' [03:34, 02:20](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [03:31, 02:23](1663 MB) -PASS -- TEST 'regional_debug_intel' [14:41, 14:08](892 MB) -PASS -- TEST 'rap_control_debug_intel' [04:20, 03:55](1229 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:19, 03:50](1216 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:16, 03:58](1231 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 03:57](1216 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 03:57](1225 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:11](1316 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:16, 04:05](1223 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:15, 04:05](1218 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:19, 04:04](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:57](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1224 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:56](1216 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 06:23](1211 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:18, 03:52](1223 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:46](1224 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:17, 03:56](1217 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:50, 06:48](1214 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:38] -PASS -- TEST 'control_csawmg_debug_gnu' [02:27, 01:44](792 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:42] ( 855 warnings ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 07:13] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:45, 03:19](1277 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:35, 05:18](1149 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 02:50](1018 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:52, 05:04](1284 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 02:38](1039 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:39, 03:04](1010 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:52, 04:11](1107 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:34](961 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:35, 01:44](1288 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:34, 00:50](1196 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:34, 01:04](1162 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:32, 03:45](1095 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:56] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:19, 03:54](1102 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:57](1093 MB) -PASS -- TEST 'conus13km_debug_intel' [12:32, 11:44](1346 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:33, 11:48](993 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:27, 06:39](1243 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 11:45](1412 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:42] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 03:59](1154 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 10:06] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:02, 05:24](882 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:23, 05:01](1280 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 06:26](955 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:05, 14:14](979 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:17, 15:06](1001 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:48, 05:37](606 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:13, 06:53](620 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:43](439 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:01, 07:54](541 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:43, 03:50](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:46, 03:41](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:53](683 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:17](450 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 04:24] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:37, 11:29](635 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:12] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:46, 16:26](769 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:48, 16:34](850 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:10] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:47, 10:01](824 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:10, 10:14] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:26](957 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:00, 05:30](926 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:20](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:15, 06:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:13](1140 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:22](1088 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:11, 12:00] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:02, 07:38](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:35] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:10, 13:43](1784 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:28, 14:45](2177 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:26, 06:34](1188 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:01, 15:14](1695 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 18:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:29, 13:18](1760 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:15] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:13, 20:24](1733 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 12:21] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:49, 07:54](2084 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:08, 07:38](2076 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:06, 04:16](1963 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:52, 07:39](1976 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:03, 04:21](1745 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 09:00](2498 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:38](2059 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:01, 06:36](1882 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:03, 07:40](2073 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:49, 15:36](2811 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:12, 05:53](2919 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:50, 08:36](3622 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:02, 05:40](3618 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:58, 05:07](2034 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 12:05] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:51, 07:06](1771 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:54, 04:04](1826 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:23] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [07:57, 06:52](2049 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:58] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:59, 04:50](1791 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:11, 10:03] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:53, 04:06](1811 MB) + +PASS -- COMPILE 's2s_intel' [08:10, 07:50] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:41, 07:16](2829 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:44, 02:05](2825 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:42, 01:17](2306 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:11, 11:39] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 07:12](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:17] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:49, 14:01](1814 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:02, 07:02](1268 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:00, 15:26](1728 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 03:35] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:47, 21:41](1766 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 07:51] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:23, 02:50](715 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 02:27](1607 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:39, 02:31](1626 MB) +PASS -- TEST 'control_latlon_intel' [03:31, 02:29](1612 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:32](1606 MB) +PASS -- TEST 'control_c48_intel' [07:35, 06:58](1735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:27, 05:49](861 MB) +PASS -- TEST 'control_c192_intel' [09:43, 08:58](1759 MB) +PASS -- TEST 'control_c384_intel' [11:27, 09:29](2039 MB) +PASS -- TEST 'control_c384gdas_intel' [10:07, 07:10](1525 MB) +PASS -- TEST 'control_stochy_intel' [02:20, 01:28](666 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:25, 00:51](533 MB) +PASS -- TEST 'control_lndp_intel' [02:20, 01:24](672 MB) +PASS -- TEST 'control_iovr4_intel' [02:22, 02:09](659 MB) +PASS -- TEST 'control_iovr5_intel' [02:22, 02:06](659 MB) +PASS -- TEST 'control_p8_intel' [03:50, 02:32](1646 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:56, 02:37](1627 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:53, 02:27](1637 MB) +PASS -- TEST 'control_restart_p8_intel' [02:43, 01:25](918 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:42, 02:30](1627 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:25](974 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:40, 02:33](1621 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:40, 02:20](1729 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:32, 04:23](1642 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:51, 03:22](1715 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:50, 02:30](1646 MB) +PASS -- TEST 'merra2_thompson_intel' [03:54, 02:46](1647 MB) +PASS -- TEST 'regional_control_intel' [05:27, 04:29](959 MB) +PASS -- TEST 'regional_restart_intel' [03:28, 02:31](1100 MB) +PASS -- TEST 'regional_decomp_intel' [05:27, 04:42](944 MB) +PASS -- TEST 'regional_2threads_intel' [03:26, 02:50](912 MB) +PASS -- TEST 'regional_noquilt_intel' [05:26, 04:19](1487 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:27](958 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:30](954 MB) +PASS -- TEST 'regional_wofs_intel' [06:27, 05:40](2087 MB) + +PASS -- COMPILE 'rrfs_intel' [07:11, 06:43] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:53, 06:32](1194 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:26](1417 MB) +PASS -- TEST 'rap_decomp_intel' [07:33, 06:53](1150 MB) +PASS -- TEST 'rap_2threads_intel' [07:35, 06:18](1379 MB) +PASS -- TEST 'rap_restart_intel' [04:37, 03:24](1139 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:48, 06:26](1202 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:53](1146 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:52, 05:06](1198 MB) +PASS -- TEST 'hrrr_control_intel' [04:36, 03:32](1077 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:37, 03:29](1047 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:45, 03:08](1121 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:20, 01:53](1034 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:58, 06:21](1187 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:25, 07:42](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:26](2164 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 06:36] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:30, 05:16](823 MB) +PASS -- TEST 'control_ras_intel' [03:18, 02:51](819 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 03:53] +PASS -- TEST 'control_csawmg_gnu' [07:32, 06:35](810 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 06:33] +PASS -- TEST 'control_wam_intel' [02:23, 01:47](801 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:27] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:52, 02:23](1634 MB) +PASS -- TEST 'regional_control_faster_intel' [04:27, 04:05](954 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:11, 03:41] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:31, 02:08](1630 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 02:07](1633 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:18, 02:27](826 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:20](826 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:28, 03:23](879 MB) +PASS -- TEST 'control_ras_debug_intel' [03:17, 02:17](833 MB) +PASS -- TEST 'control_diag_debug_intel' [02:44, 02:11](1690 MB) +PASS -- TEST 'control_debug_p8_intel' [03:35, 02:20](1653 MB) +PASS -- TEST 'regional_debug_intel' [14:32, 14:00](899 MB) +PASS -- TEST 'rap_control_debug_intel' [04:19, 03:54](1223 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:50](1217 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:54](1219 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 04:00](1224 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 04:00](1217 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:28, 04:15](1304 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:16, 04:07](1218 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:21, 04:02](1218 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:18, 03:58](1215 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:21, 03:57](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:55](1219 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:19, 03:58](1223 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:19, 06:24](1220 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:54](1214 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 05:12](1213 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:17, 04:07](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:49, 06:48](1219 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 03:11] +PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 01:48](790 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 03:03] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 06:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:14](1278 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:31, 05:32](1159 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:57, 02:57](1030 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:46, 05:10](1283 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:38, 02:37](1046 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:37, 03:04](986 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:51, 04:05](1099 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:21, 01:36](967 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 08:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:38, 01:41](1305 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:31, 00:44](1201 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:29, 01:04](1153 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 06:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:34, 03:45](1074 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:11] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 04:04](1104 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:50](1093 MB) +PASS -- TEST 'conus13km_debug_intel' [12:31, 11:44](1332 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:30, 11:49](995 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:27, 06:43](1240 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:29, 11:37](1408 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:28] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:28, 04:00](1154 MB) + +PASS -- COMPILE 'hafsw_intel' [10:16, 09:43] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:12, 05:23](869 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:29](1271 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:15, 06:19](963 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:04, 13:56](977 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:09, 14:59](1007 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:56, 05:24](608 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 07:02](612 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:47](433 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:54](549 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:52](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 03:45](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:47, 04:54](682 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:24](448 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:10, 03:02] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:44, 11:22](628 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:13, 10:06] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:51, 16:28](769 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:51, 16:44](845 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:13, 09:57] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:55, 10:05](831 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:11, 10:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:06, 05:21](967 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:00, 05:24](921 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:22](1343 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:15] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:15, 02:09](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:16](1112 MB) PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:14, 02:06](1011 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:05](1010 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:14, 02:07](1013 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:09](1143 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:12](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:17, 02:03](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 05:00](1156 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:44, 04:54](1147 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:09](1152 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:04](2434 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:03](2388 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:50] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:10](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 10:30] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:10](1144 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:01] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:52](338 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:20, 00:52](561 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:33](565 MB) - -PASS -- COMPILE 'atml_intel' [09:10, 08:47] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:07, 05:23](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 05:15](1649 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 02:46](951 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:52] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:54, 04:37](1654 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 09:25] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:30](1701 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 07:21] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:54, 03:28](1804 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:20](1797 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:24](1822 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:54] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:25, 16:13](4564 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 04:39] -PASS -- TEST 'control_c48_gnu' [10:37, 09:31](1576 MB) -PASS -- TEST 'control_stochy_gnu' [03:21, 02:19](736 MB) -PASS -- TEST 'control_ras_gnu' [04:20, 03:35](736 MB) -PASS -- TEST 'control_p8_gnu' [04:51, 03:35](1512 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:31](1518 MB) -PASS -- TEST 'control_flake_gnu' [05:16, 04:25](815 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 05:17] +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 02:10](1011 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:07](1011 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:11](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:08](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:02](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:53, 04:57](1160 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:53, 04:54](1158 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:08](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:16, 03:03](2451 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2315 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:55] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:10](1056 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:56] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:08](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:42] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:57](338 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:20, 00:52](557 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:33](570 MB) + +PASS -- COMPILE 'atml_intel' [09:11, 08:24] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:05, 05:46](1637 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:02, 05:49](1634 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:37, 02:52](953 MB) + +PASS -- COMPILE 'atml_debug_intel' [03:16, 03:02] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:56, 04:41](1661 MB) + +PASS -- COMPILE 'atmw_intel' [10:15, 09:20] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:35](1689 MB) + +PASS -- COMPILE 'atmaero_intel' [08:15, 07:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:54, 03:31](1800 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:14](1804 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:41, 04:16](1812 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:11, 02:36] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:21, 16:43](4576 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:16] +PASS -- TEST 'control_c48_gnu' [10:37, 09:23](1559 MB) +PASS -- TEST 'control_stochy_gnu' [03:22, 02:18](728 MB) +PASS -- TEST 'control_ras_gnu' [04:18, 03:39](740 MB) +PASS -- TEST 'control_p8_gnu' [04:47, 03:30](1514 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:30](1515 MB) +PASS -- TEST 'control_flake_gnu' [05:19, 04:18](799 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:10, 04:02] PASS -- TEST 'rap_control_gnu' [08:32, 07:38](1089 MB) -PASS -- TEST 'rap_decomp_gnu' [08:34, 07:52](1083 MB) -PASS -- TEST 'rap_2threads_gnu' [07:43, 07:08](1124 MB) -PASS -- TEST 'rap_restart_gnu' [04:59, 04:00](891 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:44, 07:45](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:33, 07:55](1083 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:54, 05:38](886 MB) -PASS -- TEST 'hrrr_control_gnu' [04:46, 04:00](1071 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:32, 04:16](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:45](1040 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:36, 03:59](1071 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:04](880 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:18, 02:02](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:57, 07:40](1091 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 06:06] -PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:15](1625 MB) -PASS -- TEST 'regional_debug_gnu' [07:28, 06:29](925 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:16, 02:04](1100 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:17, 01:53](1091 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 01:59](1095 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:19, 01:59](1097 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:24, 02:05](1271 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:02](1099 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:58](1103 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 02:03](1095 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:15, 01:11](737 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:15, 01:16](721 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:37, 01:14](1511 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:18, 01:56](1101 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:16, 02:13](1103 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:50, 03:21](1099 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:22] -PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:52](499 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 05:50] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:46, 07:08](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:54, 03:43](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:31, 06:39](996 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:34, 03:27](891 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:34, 03:48](957 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:50, 05:32](858 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:20, 02:01](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:35, 02:26](1265 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:34, 01:09](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:33, 01:26](934 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:10] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:19](999 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 07:17] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:52](976 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:16, 01:57](966 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:31](1278 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:27, 05:33](962 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:32, 03:08](1187 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:25, 05:25](1346 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:10, 04:37] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:17, 01:54](1001 MB) - -PASS -- COMPILE 's2swa_gnu' [24:11, 23:27] - -PASS -- COMPILE 's2s_gnu' [16:10, 15:53] - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:12] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 15:01] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 04:18] - -PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:58] +PASS -- TEST 'rap_decomp_gnu' [08:33, 07:44](1087 MB) +PASS -- TEST 'rap_2threads_gnu' [07:47, 07:03](1149 MB) +PASS -- TEST 'rap_restart_gnu' [04:38, 03:58](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:46, 07:42](1084 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 07:46](1088 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:40, 05:42](885 MB) +PASS -- TEST 'hrrr_control_gnu' [04:53, 04:03](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:35, 04:12](1141 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:35, 03:34](1041 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:35, 04:10](1071 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:21, 02:02](883 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:19, 02:00](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:53, 07:37](1082 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 05:11] +PASS -- TEST 'control_diag_debug_gnu' [01:34, 01:09](1626 MB) +PASS -- TEST 'regional_debug_gnu' [07:28, 06:21](927 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:13](1100 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:17, 02:01](1091 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 02:09](1099 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:17, 02:03](1099 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:10](1272 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:08](1097 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:18, 01:59](1098 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:18, 02:01](1095 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:10](727 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:21](730 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:30, 01:40](1504 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:01](1100 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 02:12](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:49, 03:15](1108 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:34] +PASS -- TEST 'control_wam_debug_gnu' [02:25, 01:54](498 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 04:00] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:34, 07:12](961 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 03:43](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:46, 06:39](995 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:37, 03:27](888 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:36, 03:46](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:43, 05:22](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:18, 01:57](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:36, 02:27](1265 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:29, 01:07](1172 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:30, 01:26](932 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 08:08] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:29, 04:17](990 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:10, 05:03] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:59](977 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:17, 01:51](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:22](1280 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 05:38](968 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:16](1194 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:27, 05:20](1350 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:11, 05:26] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:19, 01:57](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [16:11, 15:23] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:17] + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:23] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:19] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 02:52] + +PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:13] SYNOPSIS: -Starting Date/Time: 20240514 12:24:37 -Ending Date/Time: 20240514 13:37:18 -Total Time: 01h:13m:08s +Starting Date/Time: 20240516 23:22:16 +Ending Date/Time: 20240517 00:34:31 +Total Time: 01h:12m:41s Compiles Completed: 55/55 Tests Completed: 238/238 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index d70b602ea3..6881400186 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -07a3943227ebdf1db521865cebc527e018f85290 +53ca93c48b032207b4d90354b56c0dbc6c8c4316 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) - aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) + 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) + cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,248 +35,248 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_982280 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_599589 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [40:14, 39:29] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:21, 09:11](1793 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:16, 54:33] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:27, 23:36](1661 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:18, 23:44](1881 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:14, 11:27](996 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:52, 26:47](1632 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:16, 50:33] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:56, 23:34](1645 MB) - -PASS -- COMPILE 's2swa_intel' [40:14, 39:29] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [25:00, 11:01](1810 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:42, 10:27](1828 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:32, 06:48](1712 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:08, 10:30](1838 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:23, 07:34](1731 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:47, 08:10](2263 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:54, 09:26](1825 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:15, 09:25](1780 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:57, 08:43](1806 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [26:33, 10:07](1784 MB) - -PASS -- COMPILE 's2sw_intel' [38:14, 37:36] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:40, 07:29](1665 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:53, 07:04](1706 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:14, 06:01] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:23, 11:39](1849 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:10] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:41, 08:34](1677 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [36:16, 33:11] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:56, 08:02](1713 MB) - -PASS -- COMPILE 's2s_intel' [36:17, 33:55] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:37, 12:47](2800 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 03:39](2796 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:17, 02:01](2265 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:28, 33:54] ( 1608 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:58, 08:02](1818 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [50:16, 48:55] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:27, 24:10](1688 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:24, 11:12](1038 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:06, 25:15](1657 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:59] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:51, 32:42](1693 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [36:20, 35:40] ( 1 warnings 1151 remarks ) -PASS -- TEST 'control_flake_intel' [13:39, 07:39](646 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [19:46, 05:10](1542 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [24:56, 04:41](1557 MB) -PASS -- TEST 'control_latlon_intel' [20:37, 04:49](1547 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:41, 06:48](1546 MB) -PASS -- TEST 'control_c48_intel' [19:59, 12:06](1730 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:19, 10:29](843 MB) -PASS -- TEST 'control_c192_intel' [23:00, 18:45](1681 MB) -PASS -- TEST 'control_c384_intel' [47:37, 24:42](1816 MB) -PASS -- TEST 'control_c384gdas_intel' [43:07, 19:08](1020 MB) -PASS -- TEST 'control_stochy_intel' [13:37, 04:40](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [11:59, 01:38](435 MB) -PASS -- TEST 'control_lndp_intel' [09:37, 03:06](599 MB) -PASS -- TEST 'control_iovr4_intel' [15:45, 06:03](595 MB) -PASS -- TEST 'control_iovr5_intel' [11:39, 05:01](596 MB) -PASS -- TEST 'control_p8_intel' [23:17, 04:34](1577 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [20:33, 05:20](1582 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [17:38, 06:14](1577 MB) -PASS -- TEST 'control_restart_p8_intel' [07:58, 03:10](816 MB) -PASS -- TEST 'control_noqr_p8_intel' [19:31, 05:15](1565 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:32, 02:18](846 MB) -PASS -- TEST 'control_decomp_p8_intel' [23:06, 04:31](1567 MB) -PASS -- TEST 'control_2threads_p8_intel' [21:04, 04:45](1660 MB) -PASS -- TEST 'control_p8_lndp_intel' [22:42, 08:46](1569 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [23:35, 06:10](1642 MB) -PASS -- TEST 'control_p8_mynn_intel' [17:45, 06:20](1578 MB) -PASS -- TEST 'merra2_thompson_intel' [21:45, 05:41](1591 MB) -PASS -- TEST 'regional_control_intel' [29:43, 11:55](764 MB) -PASS -- TEST 'regional_restart_intel' [11:15, 05:53](937 MB) -PASS -- TEST 'regional_decomp_intel' [26:39, 12:38](763 MB) -PASS -- TEST 'regional_2threads_intel' [09:33, 06:56](755 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [21:42, 11:46](760 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [28:41, 09:06](759 MB) - -PASS -- COMPILE 'rrfs_intel' [34:15, 33:47] ( 3 warnings 1119 remarks ) -PASS -- TEST 'rap_control_intel' [22:26, 12:23](996 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:38, 06:22](1212 MB) -PASS -- TEST 'rap_decomp_intel' [23:15, 13:21](982 MB) -PASS -- TEST 'rap_2threads_intel' [22:26, 11:52](1087 MB) -PASS -- TEST 'rap_restart_intel' [09:45, 06:47](989 MB) -PASS -- TEST 'rap_sfcdiff_intel' [23:56, 13:48](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:08, 14:10](984 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:01, 08:49](1003 MB) -PASS -- TEST 'hrrr_control_intel' [14:06, 06:45](991 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [14:05, 06:53](984 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:58, 06:10](1062 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:53, 04:26](920 MB) -PASS -- TEST 'rrfs_v1beta_intel' [18:59, 12:57](989 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [20:35, 16:29](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:31, 15:43](1926 MB) - -PASS -- COMPILE 'csawmg_intel' [32:16, 31:52] ( 1 warnings 1096 remarks ) -PASS -- TEST 'control_csawmg_intel' [17:48, 11:39](690 MB) -PASS -- TEST 'control_ras_intel' [12:30, 06:11](666 MB) - -PASS -- COMPILE 'wam_intel' [30:14, 29:59] ( 982 remarks ) -PASS -- TEST 'control_wam_intel' [06:20, 03:56](505 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [49:16, 33:07] ( 1295 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:04, 03:41](1577 MB) -PASS -- TEST 'regional_control_faster_intel' [12:01, 07:01](769 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:13, 06:39] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:37, 04:01](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:41, 03:35](1570 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:37, 03:48](767 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:38, 03:25](761 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:29, 05:43](808 MB) -PASS -- TEST 'control_ras_debug_intel' [04:38, 03:28](775 MB) -PASS -- TEST 'control_diag_debug_intel' [05:39, 03:54](1618 MB) -PASS -- TEST 'control_debug_p8_intel' [07:56, 03:51](1586 MB) -PASS -- TEST 'regional_debug_intel' [24:40, 22:34](780 MB) -PASS -- TEST 'rap_control_debug_intel' [07:38, 06:11](1150 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:39, 06:14](1140 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:23](1150 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:29, 06:17](1149 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 06:15](1147 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:46, 06:39](1236 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 06:50](1153 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 06:41](1151 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:51, 06:17](1152 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:54, 06:18](1152 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:34, 06:10](1146 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:51, 06:09](1151 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:37, 10:11](1151 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:35, 06:21](1145 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:45](1155 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:04, 06:20](1154 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:54, 10:29](1157 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:13, 04:54] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [08:28, 06:38](452 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:23] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:25, 05:35](1087 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:06, 09:56](903 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:11, 04:46](865 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:47, 09:00](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:51, 04:25](912 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:08, 04:55](855 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:32](893 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 03:11](843 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:19, 43:28] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:32, 02:59](1108 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:52, 01:44](1041 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:57, 01:49](1025 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:15, 31:09] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:11, 06:04](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:21] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:33, 06:11](1031 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:32, 06:02](1031 MB) -PASS -- TEST 'conus13km_debug_intel' [23:10, 19:02](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [23:10, 19:16](855 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:02, 10:41](1079 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:04, 18:53](1204 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:06] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:26, 06:15](1069 MB) - -PASS -- COMPILE 'hafsw_intel' [36:15, 35:28] ( 1 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [11:37, 08:29](714 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:42, 10:10](1082 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:55, 13:00](764 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [24:43, 20:08](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:54, 20:35](825 MB) -PASS -- TEST 'gnv1_nested_intel' [14:18, 09:28](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:15, 33:05] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:38, 09:57](767 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:36, 11:49](748 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:17, 08:12] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:56](1059 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 02:17](1017 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 04:13](923 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:51](922 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 03:49](916 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:48](1064 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:49](1061 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:48](926 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:49, 08:06](882 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:50, 08:03](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 03:48](1065 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 05:18](2403 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:32](2384 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:41] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:26, 08:02](1013 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:59] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:44](1061 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:47] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:39, 02:17](231 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 02:01](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:31, 01:10](251 MB) - -PASS -- COMPILE 'atml_intel' [35:14, 34:30] ( 8 warnings 1189 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:06, 14:07](1610 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [20:08, 13:46](1609 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:20, 06:19](865 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 05:41] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:29, 07:50](1614 MB) - -PASS -- COMPILE 'atmw_intel' [33:25, 32:55] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:55, 02:35](1601 MB) - -PASS -- COMPILE 'atmaero_intel' [31:14, 31:03] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:51, 05:35](1702 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:43, 09:56](1720 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:21, 09:49](1737 MB) +PASS -- COMPILE 's2swa_32bit_intel' [39:14, 39:04] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 07:36](1773 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:15, 54:59] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:22, 20:44](1679 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:38, 22:19](1879 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:34, 10:27](994 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:44, 23:53](1624 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [52:15, 52:11] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:54, 20:23](1654 MB) + +PASS -- COMPILE 's2swa_intel' [40:14, 39:24] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:38, 07:54](1816 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:06, 07:59](1810 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:31, 04:31](1706 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:41, 07:57](1835 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:10, 04:38](1729 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:32, 07:31](2266 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:30, 07:59](1823 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:54, 07:07](1768 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:12, 08:02](1811 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:09, 07:34](1770 MB) + +PASS -- COMPILE 's2sw_intel' [38:13, 37:21] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:36, 06:00](1662 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:56, 05:50](1711 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:33] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:52, 10:35](1848 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:44] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:31, 07:28](1679 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:39] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:55, 05:49](1701 MB) + +PASS -- COMPILE 's2s_intel' [32:12, 31:50] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:14, 12:41](2796 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:12, 03:31](2793 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:19, 01:56](2273 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:43] ( 1608 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:17, 07:23](1826 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:13] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:57, 21:00](1682 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:08, 10:22](1034 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:49, 24:06](1657 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:00] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:45, 32:08](1691 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [35:14, 34:48] ( 1 warnings 1151 remarks ) +PASS -- TEST 'control_flake_intel' [06:31, 04:30](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:35, 03:58](1542 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:43, 04:09](1538 MB) +PASS -- TEST 'control_latlon_intel' [06:30, 03:55](1541 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:41, 04:07](1548 MB) +PASS -- TEST 'control_c48_intel' [14:39, 11:57](1734 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:58, 10:11](843 MB) +PASS -- TEST 'control_c192_intel' [16:55, 14:19](1678 MB) +PASS -- TEST 'control_c384_intel' [23:07, 18:05](1827 MB) +PASS -- TEST 'control_c384gdas_intel' [20:32, 13:34](1018 MB) +PASS -- TEST 'control_stochy_intel' [03:31, 02:22](602 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:31, 01:19](432 MB) +PASS -- TEST 'control_lndp_intel' [04:33, 02:08](601 MB) +PASS -- TEST 'control_iovr4_intel' [04:35, 03:32](594 MB) +PASS -- TEST 'control_iovr5_intel' [04:35, 03:28](600 MB) +PASS -- TEST 'control_p8_intel' [10:15, 03:56](1584 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:58, 04:01](1578 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:19, 03:58](1584 MB) +PASS -- TEST 'control_restart_p8_intel' [04:27, 02:22](813 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:00, 03:54](1556 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:36, 02:18](839 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:18, 04:04](1569 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:57, 03:41](1666 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:37, 07:07](1572 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:28, 05:13](1632 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:17, 04:09](1584 MB) +PASS -- TEST 'merra2_thompson_intel' [10:38, 04:23](1580 MB) +PASS -- TEST 'regional_control_intel' [13:28, 07:22](751 MB) +PASS -- TEST 'regional_restart_intel' [04:46, 03:52](934 MB) +PASS -- TEST 'regional_decomp_intel' [14:27, 07:52](762 MB) +PASS -- TEST 'regional_2threads_intel' [06:28, 04:28](752 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [13:34, 07:28](764 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:28, 07:24](762 MB) + +PASS -- COMPILE 'rrfs_intel' [34:14, 33:37] ( 3 warnings 1119 remarks ) +PASS -- TEST 'rap_control_intel' [13:12, 10:06](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:23, 05:44](1219 MB) +PASS -- TEST 'rap_decomp_intel' [14:16, 10:42](985 MB) +PASS -- TEST 'rap_2threads_intel' [11:45, 09:41](1082 MB) +PASS -- TEST 'rap_restart_intel' [07:40, 05:16](981 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:41, 10:06](995 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:05, 10:53](982 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 07:37](998 MB) +PASS -- TEST 'hrrr_control_intel' [07:46, 05:19](996 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:18, 05:28](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:17, 04:43](1060 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:29, 02:48](926 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:47, 10:00](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:37, 12:33](1937 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:38, 12:05](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [32:14, 31:32] ( 1 warnings 1096 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:47, 08:03](691 MB) +PASS -- TEST 'control_ras_intel' [05:26, 04:29](658 MB) + +PASS -- COMPILE 'wam_intel' [30:14, 30:07] ( 982 remarks ) +PASS -- TEST 'control_wam_intel' [03:27, 02:45](501 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [32:13, 31:57] ( 1295 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:58, 03:36](1583 MB) +PASS -- TEST 'regional_control_faster_intel' [07:55, 06:40](762 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:37] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:04, 03:20](1556 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:09, 03:18](1550 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:29, 03:46](765 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:30, 03:22](764 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:00, 05:18](807 MB) +PASS -- TEST 'control_ras_debug_intel' [04:29, 03:28](778 MB) +PASS -- TEST 'control_diag_debug_intel' [07:11, 03:23](1624 MB) +PASS -- TEST 'control_debug_p8_intel' [05:11, 03:36](1588 MB) +PASS -- TEST 'regional_debug_intel' [26:08, 21:45](782 MB) +PASS -- TEST 'rap_control_debug_intel' [06:32, 06:02](1148 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:32, 05:58](1147 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:32, 06:04](1141 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:30, 06:06](1149 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 06:03](1152 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:39, 06:24](1237 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:11](1152 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 06:10](1154 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:29, 06:07](1150 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:27, 06:06](1151 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:27, 05:59](1150 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:05](1148 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:30, 09:58](1149 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 06:00](1143 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:21](1150 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:05](1145 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:37, 10:28](1157 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:05] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:25, 06:09](447 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:13, 30:12] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:18, 05:22](1080 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:06, 08:27](902 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:17, 04:28](867 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:30, 07:57](944 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:19, 04:02](907 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:51, 04:43](858 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:34, 06:20](905 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:23](856 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:13, 42:51] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:17, 03:04](1108 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:43](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:55, 02:02](1021 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:46] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:26, 05:33](914 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:59](1031 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 05:55](1029 MB) +PASS -- TEST 'conus13km_debug_intel' [21:05, 18:25](1140 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:04, 18:35](852 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:56, 10:42](1082 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:26](1203 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:10] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:08](1068 MB) + +PASS -- COMPILE 'hafsw_intel' [36:13, 35:16] ( 1 warnings 1430 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:26, 07:11](710 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:34, 06:38](1087 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:00, 09:46](772 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:33, 16:27](797 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:48, 18:31](826 MB) +PASS -- TEST 'gnv1_nested_intel' [07:34, 05:38](776 MB) + +PASS -- COMPILE 'hafs_all_intel' [32:12, 31:51] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:47, 08:49](768 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:49, 08:51](760 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:04] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 03:38](1065 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:14](1032 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:33](921 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:37](939 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:37](926 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:41](1065 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:39](1060 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:32](929 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:31, 07:55](890 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:27, 08:11](843 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:38](1051 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:08](2389 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:11](2337 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:27] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 07:57](1010 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:02] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:35](1064 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:42] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:43](234 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:32, 01:27](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 01:18](254 MB) + +PASS -- COMPILE 'atml_intel' [35:14, 34:25] ( 8 warnings 1189 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:08, 08:49](1598 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:01, 08:47](1611 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 04:31](865 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:15] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:02, 07:39](1625 MB) + +PASS -- COMPILE 'atmw_intel' [33:13, 32:30] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:43, 02:23](1608 MB) + +PASS -- COMPILE 'atmaero_intel' [31:12, 30:31] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:37, 05:22](1696 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [13:41, 06:25](1729 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:19, 06:32](1731 MB) SYNOPSIS: -Starting Date/Time: 20240515 03:36:54 -Ending Date/Time: 20240515 07:32:42 -Total Time: 03h:56m:31s +Starting Date/Time: 20240516 20:51:38 +Ending Date/Time: 20240517 00:25:18 +Total Time: 03h:34m:17s Compiles Completed: 34/34 Tests Completed: 162/162 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 0e09bf3788..d4e6cc7309 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb +53ca93c48b032207b4d90354b56c0dbc6c8c4316 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) - aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro) + 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) + cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,281 +35,368 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4366 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_400334 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 15:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:00, 05:31](3174 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 19:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:10, 17:11](1738 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:18, 18:18](2024 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:19, 08:37](1108 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:07, 19:27](1644 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 18:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:50, 16:59](1744 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 05:05] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:16, 22:54](1696 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 15:46] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:51, 05:45](3209 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:14, 05:45](3213 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:08, 03:27](3253 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:51, 05:48](3238 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:07, 03:32](3279 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:27, 06:17](3555 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:51, 05:51](3133 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:48, 04:57](3065 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:07, 05:45](3210 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:16, 10:27](3342 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:09, 06:43](3625 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:39, 10:54](4116 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:23, 07:05](4285 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:51, 05:32](3173 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 14:00] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:08, 04:48](1735 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:31](1780 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 05:07] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:36, 08:39](3249 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 04:56] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:16, 06:01](1747 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 13:24] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:32, 04:22](1784 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 12:24] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:01, 08:08](2832 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:04, 02:21](2831 MB) -PASS -- TEST 'cpld_restart_c48_intel' [10:08, 01:22](2305 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:11, 20:00] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:54, 05:28](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 18:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:18, 17:20](1772 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:31, 08:34](1173 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:23, 19:29](1686 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 04:16] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 25:22](1712 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:10, 13:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:22, 03:33](699 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 03:00](1593 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 03:03](1604 MB) -PASS -- TEST 'control_latlon_intel' [04:40, 03:01](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:59, 02:58](1594 MB) -PASS -- TEST 'control_c48_intel' [07:52, 07:08](1760 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:33, 06:00](874 MB) -PASS -- TEST 'control_c192_intel' [12:00, 10:37](1750 MB) -PASS -- TEST 'control_c384_intel' [15:11, 12:37](2013 MB) -PASS -- TEST 'control_c384gdas_intel' [12:15, 09:01](1356 MB) -PASS -- TEST 'control_stochy_intel' [02:29, 01:45](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:27, 01:06](504 MB) -PASS -- TEST 'control_lndp_intel' [02:23, 01:41](654 MB) -PASS -- TEST 'control_iovr4_intel' [03:25, 02:28](656 MB) -PASS -- TEST 'control_iovr5_intel' [03:29, 02:31](652 MB) -PASS -- TEST 'control_p8_intel' [04:21, 02:59](1637 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:17, 02:58](1632 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:47, 02:54](1641 MB) -PASS -- TEST 'control_restart_p8_intel' [05:15, 01:46](880 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:29, 02:57](1622 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:26, 01:41](933 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:22, 03:09](1618 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:20, 03:04](1721 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:03, 05:23](1634 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:44, 03:54](1700 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:32, 03:05](1635 MB) -PASS -- TEST 'merra2_thompson_intel' [07:50, 03:21](1640 MB) -PASS -- TEST 'regional_control_intel' [08:44, 05:07](859 MB) -PASS -- TEST 'regional_restart_intel' [09:47, 02:50](1027 MB) -PASS -- TEST 'regional_decomp_intel' [09:46, 05:34](846 MB) -PASS -- TEST 'regional_2threads_intel' [04:39, 03:42](845 MB) -PASS -- TEST 'regional_noquilt_intel' [08:42, 05:13](1365 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:44, 05:16](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:43, 05:15](858 MB) -PASS -- TEST 'regional_wofs_intel' [07:43, 06:46](1921 MB) - -PASS -- COMPILE 'rrfs_intel' [12:10, 12:07] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:31, 07:53](1103 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:04, 04:41](1302 MB) -PASS -- TEST 'rap_decomp_intel' [10:07, 08:08](1026 MB) -PASS -- TEST 'rap_2threads_intel' [10:07, 07:54](1177 MB) -PASS -- TEST 'rap_restart_intel' [07:30, 04:07](1105 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:33, 07:50](1103 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:04, 08:11](1036 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:28, 05:59](1128 MB) -PASS -- TEST 'hrrr_control_intel' [06:02, 04:06](1032 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:59, 04:17](1033 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 03:28](1110 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:25, 02:12](955 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:25, 07:48](1100 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:20](1935 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 08:59](2078 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:56] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:46, 06:05](747 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:25](738 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 10:24] -PASS -- TEST 'control_wam_intel' [03:21, 02:09](651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 11:15] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:35, 02:46](1620 MB) -PASS -- TEST 'regional_control_faster_intel' [11:42, 04:41](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:20] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:59, 02:42](1617 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:04, 02:43](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:27, 03:12](817 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:26, 02:48](816 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:01, 04:16](858 MB) -PASS -- TEST 'control_ras_debug_intel' [07:26, 02:52](827 MB) -PASS -- TEST 'control_diag_debug_intel' [08:02, 02:51](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [08:01, 02:59](1650 MB) -PASS -- TEST 'regional_debug_intel' [22:58, 17:25](845 MB) -PASS -- TEST 'rap_control_debug_intel' [10:28, 05:07](1205 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:30, 04:55](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [12:25, 04:58](1206 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [11:28, 05:01](1205 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:26, 04:59](1203 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:36, 05:12](1288 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:26, 05:02](1214 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:24, 05:02](1200 MB) -PASS -- TEST 'rap_lndp_debug_intel' [12:27, 05:00](1203 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:25, 05:27](1159 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:26, 04:50](1158 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:28, 05:05](1207 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:26, 08:06](1199 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:28, 04:52](1199 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:26, 05:38](1198 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:23, 04:54](1205 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:32, 08:24](1212 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:09] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:23, 04:59](506 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 04:29](1164 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:01, 06:32](1046 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:50, 03:27](989 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:13, 06:44](1095 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:53, 02:58](974 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 03:45](919 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:27, 04:59](1041 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:56](903 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:11, 13:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:02, 02:13](1203 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:53, 01:01](1126 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:18](1109 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:51, 04:23](989 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:12] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:53](1084 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:51](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [15:52, 14:19](1227 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:56](926 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:30](1155 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 13:46](1289 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:23] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:59](1116 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 12:43] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:44](744 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:23](1116 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:06](838 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:19, 13:22](858 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:33, 15:26](891 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:02, 06:21](499 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 07:46](519 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 03:23](321 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:39, 08:13](481 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:51, 04:16](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:59, 03:59](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 05:23](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:29, 01:25](400 MB) -PASS -- TEST 'gnv1_nested_intel' [10:03, 04:38](801 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 03:55] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:00, 13:13](572 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:26] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:08, 09:55](601 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:10, 09:51](742 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:44] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:10, 07:16](757 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:11, 12:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:16, 06:31](824 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 06:36](818 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:59, 16:02](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:08] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 02:39](1123 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:47](1070 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:35](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:38](1010 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:42](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:39](1134 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:38](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:34](1012 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:21, 06:01](1057 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 06:00](1031 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:52](1121 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:41](2488 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:22, 03:44](2485 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:45] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:18](1048 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:12] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:42](1136 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:01] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:47](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:53](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:36](320 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 13:46] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:42, 04:17](1601 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:41, 04:16](1602 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:51, 02:21](902 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 04:28] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:32, 05:41](1622 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 12:04] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 01:52](1674 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 12:07] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:25, 03:59](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 04:52](3092 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:11, 05:00](3031 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:32] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:52, 20:58](4573 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:52, 05:32](3179 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 18:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:01, 17:16](1750 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:04, 18:25](2023 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:59, 08:24](1116 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:58, 19:37](1639 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 17:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:44, 17:19](1675 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:45] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:56, 22:55](1690 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 14:32] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:46, 05:51](3148 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:08, 05:43](3211 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:56, 03:26](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:47, 05:54](3238 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:54, 03:31](3278 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:42, 06:16](3557 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:43, 05:50](3205 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:50, 04:48](3074 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:03, 05:49](3215 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:22, 10:40](3337 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:20, 06:37](3628 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:52, 11:28](4115 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:04, 07:18](4368 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:52, 05:35](3174 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 14:24] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:30, 04:47](1728 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:49, 04:27](1782 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:07] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:47, 08:51](3250 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:49] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:18, 05:56](1742 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:34] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:29, 04:27](1784 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 13:27] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:53, 08:16](2834 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 02:26](2830 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:05, 01:19](2301 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:54] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:50, 05:25](3209 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:16] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:24, 17:19](1756 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:33, 08:59](1173 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:17, 19:40](1619 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:12] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:07, 24:48](1713 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:26, 03:26](698 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 02:56](1598 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:58, 03:02](1606 MB) +PASS -- TEST 'control_latlon_intel' [05:46, 03:00](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:58, 02:59](1587 MB) +PASS -- TEST 'control_c48_intel' [08:48, 07:12](1756 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 05:59](881 MB) +PASS -- TEST 'control_c192_intel' [13:03, 10:35](1752 MB) +PASS -- TEST 'control_c384_intel' [15:11, 11:46](1996 MB) +PASS -- TEST 'control_c384gdas_intel' [13:03, 09:12](1352 MB) +PASS -- TEST 'control_stochy_intel' [02:23, 01:39](657 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:25, 01:00](498 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 01:35](658 MB) +PASS -- TEST 'control_iovr4_intel' [03:22, 02:29](652 MB) +PASS -- TEST 'control_iovr5_intel' [03:27, 02:31](653 MB) +PASS -- TEST 'control_p8_intel' [05:10, 02:58](1625 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:16, 03:00](1633 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 02:51](1638 MB) +PASS -- TEST 'control_restart_p8_intel' [03:14, 01:43](893 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:17, 02:58](1624 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:03, 01:37](931 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:16, 03:04](1609 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:06](1728 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:48, 05:15](1629 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:33, 04:04](1693 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:27, 03:02](1590 MB) +PASS -- TEST 'merra2_thompson_intel' [05:56, 03:23](1575 MB) +PASS -- TEST 'regional_control_intel' [06:39, 05:10](855 MB) +PASS -- TEST 'regional_restart_intel' [03:42, 02:49](1021 MB) +PASS -- TEST 'regional_decomp_intel' [06:38, 05:33](851 MB) +PASS -- TEST 'regional_2threads_intel' [04:38, 03:42](844 MB) +PASS -- TEST 'regional_noquilt_intel' [06:37, 05:09](1364 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:46, 05:10](860 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:39, 05:18](850 MB) +PASS -- TEST 'regional_wofs_intel' [07:33, 06:43](1921 MB) + +PASS -- COMPILE 'rrfs_intel' [14:10, 11:47] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:25, 07:51](1041 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 04:47](1239 MB) +PASS -- TEST 'rap_decomp_intel' [10:04, 08:11](1027 MB) +PASS -- TEST 'rap_2threads_intel' [09:11, 07:52](1178 MB) +PASS -- TEST 'rap_restart_intel' [06:27, 04:11](1099 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:50](1099 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:03, 08:13](1027 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:26, 05:54](1129 MB) +PASS -- TEST 'hrrr_control_intel' [06:11, 04:04](1039 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:06](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:59, 03:23](1113 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:23, 02:15](988 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:20, 07:36](1099 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:12](1990 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:58](2073 MB) + +PASS -- COMPILE 'csawmg_intel' [13:10, 11:18] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:44, 06:02](747 MB) +PASS -- TEST 'control_ras_intel' [04:22, 03:21](742 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 10:00] +PASS -- TEST 'control_wam_intel' [03:21, 02:08](654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 11:58] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:29, 02:48](1632 MB) +PASS -- TEST 'regional_control_faster_intel' [06:40, 04:42](850 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:40] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:55, 02:47](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:59, 02:42](1614 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:28, 03:07](813 MB) +PASS -- TEST 'control_lndp_debug_intel' [09:26, 02:48](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:50, 04:09](864 MB) +PASS -- TEST 'control_ras_debug_intel' [09:27, 02:57](810 MB) +PASS -- TEST 'control_diag_debug_intel' [08:57, 02:51](1673 MB) +PASS -- TEST 'control_debug_p8_intel' [08:57, 02:58](1637 MB) +PASS -- TEST 'regional_debug_intel' [24:51, 17:22](846 MB) +PASS -- TEST 'rap_control_debug_intel' [11:25, 05:05](1200 MB) +PASS -- TEST 'hrrr_control_debug_intel' [11:28, 05:00](1189 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [11:28, 05:04](1199 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:24, 04:57](1198 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:22, 04:53](1204 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:36, 05:03](1293 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:03](1200 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:09](1192 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:22, 05:01](1199 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:58](1202 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'rap_noah_debug_intel' [, ]( MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:15](1206 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:17](1202 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:48](1158 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 06:16](1202 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:22](1199 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:29](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 03:10] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:21, 04:56](509 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 11:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 04:49](1173 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:27, 06:29](1053 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:27](979 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:25, 06:51](1099 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:24, 03:02](962 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 03:48](913 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 05:00](1032 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:25, 01:57](929 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:11, 14:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:58, 02:12](1200 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:51, 01:00](1117 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:19](1111 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:16] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 04:23](985 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:24] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 05:01](1079 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:22, 05:00](1078 MB) +PASS -- TEST 'conus13km_debug_intel' [15:50, 14:18](1221 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 14:21](926 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:48, 08:16](1152 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:56, 14:12](1298 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:20] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:41, 04:53](1125 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 13:05] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:55](741 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:58](832 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:23](812 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 15:16](886 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 06:37](501 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 07:44](515 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 03:10](372 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_global_multiple_4nests_atm_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:17](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:49, 03:58](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 05:27](585 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_global_storm_following_1nest_atm_intel' [, ]( MB) +PASS -- TEST 'gnv1_nested_intel' [05:55, 04:34](803 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:01] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 13:22](633 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 13:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:58, 09:43](672 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [, ]( MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 13:05] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:03, 07:07](735 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 12:34] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:53](828 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:00, 15:56](1210 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:03] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:38](1136 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:38](1094 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:29](1014 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:34](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:34](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:41](1132 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1142 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:36](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:16, 05:56](1060 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:02](1040 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:40](1128 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:43](2431 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 03:39](2434 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:02] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:17](1056 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 07:06] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:40](1138 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:07] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:47](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:48](326 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:33](320 MB) + +PASS -- COMPILE 'atml_intel' [14:10, 14:07] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:33, 04:16](1610 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:20](1611 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:47, 02:21](900 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:48] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:38](1628 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 12:07] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:22, 01:51](1664 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 12:24] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:21, 04:03](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:17, 04:57](3094 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:02, 05:04](3101 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:31] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:42, 20:46](4579 MB) SYNOPSIS: -Starting Date/Time: 20240514 13:54:30 -Ending Date/Time: 20240514 15:33:04 -Total Time: 01h:39m:28s +Starting Date/Time: 20240516 23:25:54 +Ending Date/Time: 20240517 00:56:53 +Total Time: 01h:31m:46s Compiles Completed: 39/39 -Tests Completed: 183/183 +Tests Completed: 177/183 +Failed Tests: +* TEST rap_noah_debug_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_rap_noah_debug_intel.log +* TEST hafs_regional_atm_thompson_gfdlsf_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_regional_atm_thompson_gfdlsf_intel.log +* TEST hafs_global_multiple_4nests_atm_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_global_multiple_4nests_atm_intel.log +* TEST hafs_global_storm_following_1nest_atm_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_global_storm_following_1nest_atm_intel.log +* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel.log +* TEST hafs_regional_docn_oisst_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_regional_docn_oisst_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +53ca93c48b032207b4d90354b56c0dbc6c8c4316 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) + cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_226415 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:15] ( 885 warnings 9 remarks ) +PASS -- TEST 'rap_noah_debug_intel' [05:29, 04:55](1200 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 14:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:27, 06:22](1122 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 08:28](481 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:31](402 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:37] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:17, 10:03](735 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 12:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:15, 06:45](770 MB) + +SYNOPSIS: +Starting Date/Time: 20240517 08:22:40 +Ending Date/Time: 20240517 08:50:39 +Total Time: 00h:28m:14s +Compiles Completed: 4/4 +Tests Completed: 6/6 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index d7ba8f67e0..68af301cc9 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb +53ca93c48b032207b4d90354b56c0dbc6c8c4316 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,14 +9,14 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g453e59e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro) - aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (201912_public_release-390-gaabfdcc) + 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) + cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4229-g1c2a898e) + be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (remotes/origin/HEAD-507-gbe05ec28) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -24,7 +24,7 @@ Submodule hashes used in testing: 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (v3.7.1-433-g1dbf99a) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) @@ -35,242 +35,326 @@ 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-20240503 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_221962 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_220987 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:29, 10:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:27, 01:19](2978 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:31, 11:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [48:26, 02:03](1598 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:22, 01:25](1713 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [30:22, 02:01](849 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:27, 01:24](1572 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:31, 11:33] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [48:26, 01:04](1591 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [21:39, 20:28] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [39:18, 01:48](1606 MB) - -PASS -- COMPILE 's2swa_intel' [23:42, 22:48] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [37:14, 01:18](3007 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:14, 01:35](3003 MB) -PASS -- TEST 'cpld_restart_p8_intel' [28:52, 01:54](3060 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [37:14, 01:14](3031 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [28:52, 01:46](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [37:14, 01:14](3313 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [37:14, 01:14](2998 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [37:15, 01:38](2927 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:14, 01:35](3007 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [37:23, 04:27](3948 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:47, 04:12](4251 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [37:14, 01:51](2971 MB) - -PASS -- COMPILE 's2sw_intel' [21:41, 21:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [39:15, 01:47](1592 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [39:15, 01:55](1633 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:28, 09:47] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [50:28, 02:07](1639 MB) - -PASS -- COMPILE 's2s_intel' [32:53, 32:35] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [28:02, 00:39](2652 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [28:02, 01:32](2668 MB) -PASS -- TEST 'cpld_restart_c48_intel' [23:46, 01:03](2103 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:34, 16:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [44:22, 01:41](3004 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [40:01, 39:32] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:55, 01:03](1611 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:12, 01:08](903 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [02:57, 01:18](1580 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [31:57, 30:52] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:03, 00:51](1621 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [34:01, 33:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [15:23, 00:25](573 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [15:23, 00:26](1475 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:23, 00:26](1480 MB) -PASS -- TEST 'control_latlon_intel' [15:15, 00:20](1472 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:41, 00:31](1468 MB) -PASS -- TEST 'control_c48_intel' [14:22, 00:53](1591 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:09, 00:52](714 MB) -PASS -- TEST 'control_c192_intel' [13:09, 00:28](1591 MB) -PASS -- TEST 'control_c384_intel' [12:16, 01:48](1899 MB) -PASS -- TEST 'control_c384gdas_intel' [12:01, 02:40](1093 MB) -PASS -- TEST 'control_stochy_intel' [11:52, 00:23](529 MB) -PASS -- TEST 'control_stochy_restart_intel' [09:23, 00:59](333 MB) -PASS -- TEST 'control_lndp_intel' [11:36, 00:35](528 MB) -PASS -- TEST 'control_iovr4_intel' [11:32, 00:44](522 MB) -PASS -- TEST 'control_iovr5_intel' [11:30, 00:43](522 MB) -PASS -- TEST 'control_p8_intel' [11:29, 01:31](1506 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:29, 01:58](1509 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:01, 01:56](1501 MB) -PASS -- TEST 'control_restart_p8_intel' [06:20, 00:57](694 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:01, 01:30](1494 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:53, 00:43](698 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:54, 01:21](1498 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:54, 01:07](1596 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:53, 01:06](1510 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:53, 02:01](1566 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:47, 01:48](1514 MB) -PASS -- TEST 'merra2_thompson_intel' [09:20, 01:38](1509 MB) -PASS -- TEST 'regional_control_intel' [03:33, 00:19](610 MB) -PASS -- TEST 'regional_restart_intel' [57:35, 01:01](777 MB) -PASS -- TEST 'regional_decomp_intel' [09:18, 00:56](606 MB) -PASS -- TEST 'regional_2threads_intel' [09:12, 00:56](666 MB) -PASS -- TEST 'regional_noquilt_intel' [09:08, 00:21](1147 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:05, 00:21](606 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:05, 00:15](606 MB) -PASS -- TEST 'regional_wofs_intel' [09:03, 00:49](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [27:52, 27:37] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [20:33, 01:40](919 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:34, 01:10](1099 MB) -PASS -- TEST 'rap_decomp_intel' [20:33, 01:21](921 MB) -PASS -- TEST 'rap_2threads_intel' [20:33, 01:53](1005 MB) -PASS -- TEST 'rap_restart_intel' [09:01, 01:03](792 MB) -PASS -- TEST 'rap_sfcdiff_intel' [20:33, 02:08](916 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:33, 01:51](916 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:04, 01:42](786 MB) -PASS -- TEST 'hrrr_control_intel' [20:33, 01:04](911 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [20:33, 00:59](910 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [20:34, 01:26](996 MB) -PASS -- TEST 'hrrr_control_restart_intel' [08:00, 01:03](742 MB) -PASS -- TEST 'rrfs_v1beta_intel' [20:33, 01:19](907 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [20:33, 00:52](1878 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:33, 01:12](1862 MB) - -PASS -- COMPILE 'csawmg_intel' [42:10, 41:04] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [05:58, 00:32](599 MB) -PASS -- TEST 'control_ras_intel' [05:49, 00:52](561 MB) - -PASS -- COMPILE 'wam_intel' [16:37, 15:33] -PASS -- TEST 'control_wam_intel' [27:44, 00:53](274 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:42, 16:54] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [21:34, 02:04](1505 MB) -PASS -- TEST 'regional_control_faster_intel' [21:33, 00:23](610 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:42, 17:58] ( 870 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [20:33, 01:18](1487 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [20:33, 01:26](1490 MB) -PASS -- TEST 'control_stochy_debug_intel' [20:33, 00:48](692 MB) -PASS -- TEST 'control_lndp_debug_intel' [20:33, 01:09](694 MB) -PASS -- TEST 'control_csawmg_debug_intel' [20:33, 00:37](729 MB) -PASS -- TEST 'control_ras_debug_intel' [20:33, 01:04](705 MB) -PASS -- TEST 'control_diag_debug_intel' [20:33, 01:16](1555 MB) -PASS -- TEST 'control_debug_p8_intel' [20:33, 01:02](1520 MB) -PASS -- TEST 'regional_debug_intel' [20:32, 00:36](630 MB) -PASS -- TEST 'rap_control_debug_intel' [19:48, 00:33](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [18:45, 01:01](1067 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [16:02, 00:54](1072 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:01, 00:52](1071 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:53, 00:53](1075 MB) -PASS -- TEST 'rap_diag_debug_intel' [15:48, 00:49](1159 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:43, 00:47](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:37, 00:49](1072 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:36, 00:50](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:32, 00:50](1074 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:50, 00:59](1073 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 00:54](1075 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:25, 00:42](1073 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 00:56](1070 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:29, 01:00](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 00:51](1075 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [04:25, 02:10](1077 MB) - -PASS -- COMPILE 'wam_debug_intel' [15:32, 14:58] ( 842 warnings ) -PASS -- TEST 'control_wam_debug_intel' [21:42, 00:52](301 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:39, 20:41] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:25, 01:18](953 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:24, 01:14](795 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:01, 02:02](786 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:44, 01:19](857 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:44, 01:58](847 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:22, 01:23](785 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [57:02, 01:58](686 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:28, 00:42](665 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:30, 15:27] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:22, 01:10](1005 MB) -PASS -- TEST 'conus13km_2threads_intel' [59:16, 00:41](1005 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [59:15, 00:50](881 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:25, 10:22] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [03:16, 01:25](810 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:23, 09:38] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [02:47, 00:36](958 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [02:29, 00:49](951 MB) -PASS -- TEST 'conus13km_debug_intel' [01:55, 00:27](1037 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [01:29, 01:14](710 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [01:20, 00:32](1040 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:18, 00:25](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:26, 07:04] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [00:44, 00:57](981 MB) - -PASS -- COMPILE 'hafsw_intel' [22:40, 21:47] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [57:55, 01:56](618 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:55, 00:23](967 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:53, 01:22](660 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [57:53, 01:23](694 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [57:54, 01:56](715 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [57:24, 00:57](390 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [56:55, 02:08](404 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [56:46, 01:32](288 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:20, 02:51](372 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:00, 00:54](415 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [55:22, 01:40](423 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [55:21, 01:35](493 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [54:56, 00:33](314 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [25:41, 25:03] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [54:14, 01:36](507 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:30, 09:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [38:12, 01:30](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [38:12, 01:03](709 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:28, 13:04] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [00:38, 00:49](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:30, 15:13] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [57:59, 02:11](664 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [57:59, 01:35](648 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [57:57, 01:02](882 MB) - -PASS -- COMPILE 'atml_intel' [10:27, 10:11] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [00:17, 01:40](1545 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [59:59, 01:38](1546 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [52:18, 00:39](744 MB) - -PASS -- COMPILE 'atml_debug_intel' [15:31, 15:10] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [52:53, 02:07](1564 MB) - -PASS -- COMPILE 'atmaero_intel' [14:36, 13:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [52:48, 00:56](2849 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [52:33, 01:23](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [52:17, 01:19](2926 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:24, 10:32] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [51:59, 00:57](4430 MB) +PASS -- COMPILE 's2swa_32bit_intel' [26:45, 26:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:33, 01:17](2980 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:32, 01:40](1597 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [05:26, 01:34](1710 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [04:11, 02:03](847 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:33, 02:11](1571 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:43, 23:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [10:57, 00:28](1591 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:32, 15:00] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [20:29, 01:28](1600 MB) + +PASS -- COMPILE 's2swa_intel' [22:40, 21:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:20, 01:23](3008 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:20, 01:36](3002 MB) +PASS -- TEST 'cpld_restart_p8_intel' [02:55, 01:54](3063 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:20, 01:21](3025 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [02:55, 01:50](3080 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:20, 01:07](3314 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:20, 01:25](2997 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:21, 01:26](2929 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:20, 01:42](3004 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [13:29, 04:00](3953 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [52:10, 03:59](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:20, 01:55](2971 MB) + +PASS -- COMPILE 's2sw_intel' [11:29, 10:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [24:31, 00:50](1592 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:31, 01:02](1638 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:50] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:37, 02:00](1632 MB) + +PASS -- COMPILE 's2s_intel' [14:31, 13:27] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [48:40, 00:52](2658 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [48:34, 00:39](2667 MB) +PASS -- TEST 'cpld_restart_c48_intel' [44:31, 00:52](2109 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:34, 16:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:26, 01:39](3004 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:30, 11:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:30, 00:48](1611 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:05, 01:27](902 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [06:02, 01:44](1582 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:31, 17:49] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [07:03, 01:39](1627 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:39] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [13:05, 00:33](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [13:05, 00:31](1475 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:05, 00:26](1477 MB) +PASS -- TEST 'control_latlon_intel' [13:05, 00:23](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:05, 00:32](1473 MB) +PASS -- TEST 'control_c48_intel' [13:04, 01:01](1594 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:04, 01:10](719 MB) +PASS -- TEST 'control_c192_intel' [13:05, 00:30](1591 MB) +PASS -- TEST 'control_c384_intel' [13:09, 01:50](1901 MB) +PASS -- TEST 'control_c384gdas_intel' [13:09, 02:38](1096 MB) +PASS -- TEST 'control_stochy_intel' [13:05, 00:33](530 MB) +PASS -- TEST 'control_stochy_restart_intel' [08:32, 01:00](331 MB) +PASS -- TEST 'control_lndp_intel' [13:05, 00:43](527 MB) +PASS -- TEST 'control_iovr4_intel' [13:05, 00:51](523 MB) +PASS -- TEST 'control_iovr5_intel' [13:05, 00:55](523 MB) +PASS -- TEST 'control_p8_intel' [13:05, 02:06](1507 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [13:05, 01:56](1513 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:29, 01:59](1500 MB) +PASS -- TEST 'control_restart_p8_intel' [05:27, 00:51](695 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:28, 01:48](1495 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:10, 01:04](698 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:12, 01:40](1498 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:09, 01:07](1594 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:06, 01:05](1501 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:30, 02:06](1558 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:28, 01:52](1512 MB) +PASS -- TEST 'merra2_thompson_intel' [03:47, 01:40](1512 MB) +PASS -- TEST 'regional_control_intel' [03:46, 01:09](609 MB) +PASS -- TEST 'regional_restart_intel' [57:03, 00:23](777 MB) +PASS -- TEST 'regional_decomp_intel' [02:54, 00:51](607 MB) +PASS -- TEST 'regional_2threads_intel' [02:55, 00:51](665 MB) +PASS -- TEST 'regional_noquilt_intel' [02:45, 00:23](1148 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [02:44, 01:18](607 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [02:37, 01:13](610 MB) +PASS -- TEST 'regional_wofs_intel' [02:36, 00:43](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [21:37, 20:07] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [01:51, 02:15](921 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [00:58, 01:04](1096 MB) +PASS -- TEST 'rap_decomp_intel' [00:14, 01:22](918 MB) +PASS -- TEST 'rap_2threads_intel' [00:00, 01:31](1005 MB) +PASS -- TEST 'rap_restart_intel' [52:09, 01:15](787 MB) +PASS -- TEST 'rap_sfcdiff_intel' [59:57, 02:16](918 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [59:53, 01:57](915 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [50:18, 01:39](791 MB) +PASS -- TEST 'hrrr_control_intel' [58:54, 01:21](907 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [58:38, 01:06](910 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [58:25, 01:17](992 MB) +PASS -- TEST 'hrrr_control_restart_intel' [53:27, 01:05](741 MB) +PASS -- TEST 'rrfs_v1beta_intel' [58:15, 02:20](913 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [58:10, 00:57](1878 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:01, 01:18](1861 MB) + +PASS -- COMPILE 'csawmg_intel' [27:44, 26:48] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [55:37, 00:35](600 MB) +PASS -- TEST 'control_ras_intel' [54:52, 00:51](559 MB) + +PASS -- COMPILE 'wam_intel' [11:24, 10:10] +PASS -- TEST 'control_wam_intel' [02:24, 00:53](272 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:31, 15:22] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [02:10, 02:02](1511 MB) +PASS -- TEST 'regional_control_faster_intel' [02:01, 00:24](607 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 06:15] ( 870 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [57:00, 01:17](1491 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [56:30, 00:26](1489 MB) +PASS -- TEST 'control_stochy_debug_intel' [56:15, 00:50](694 MB) +PASS -- TEST 'control_lndp_debug_intel' [56:07, 01:10](693 MB) +PASS -- TEST 'control_csawmg_debug_intel' [56:06, 00:42](729 MB) +PASS -- TEST 'control_ras_debug_intel' [56:06, 01:04](704 MB) +PASS -- TEST 'control_diag_debug_intel' [55:53, 01:15](1554 MB) +PASS -- TEST 'control_debug_p8_intel' [55:51, 01:01](1524 MB) +PASS -- TEST 'regional_debug_intel' [54:47, 00:28](636 MB) +PASS -- TEST 'rap_control_debug_intel' [53:53, 00:50](1075 MB) +PASS -- TEST 'hrrr_control_debug_intel' [53:27, 00:59](1066 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [53:27, 00:50](1078 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [53:15, 00:49](1077 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [53:11, 00:49](1076 MB) +PASS -- TEST 'rap_diag_debug_intel' [53:09, 00:44](1164 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:38, 00:50](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [52:07, 00:41](1073 MB) +PASS -- TEST 'rap_lndp_debug_intel' [51:47, 00:48](1082 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:43, 00:52](1074 MB) +PASS -- TEST 'rap_noah_debug_intel' [51:41, 00:56](1076 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [51:39, 00:45](1071 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [51:13, 00:40](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [51:09, 00:55](1073 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [51:04, 01:00](1078 MB) +PASS -- TEST 'rap_flake_debug_intel' [50:23, 00:49](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [50:18, 02:04](1081 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:28, 07:49] ( 842 warnings ) +PASS -- TEST 'control_wam_debug_intel' [50:11, 00:30](298 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:32, 14:39] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:58, 01:10](958 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [47:49, 01:33](793 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [47:19, 02:00](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [47:19, 01:31](849 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [46:57, 01:51](845 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [46:56, 01:38](786 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [39:48, 02:00](687 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:42, 01:05](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:32, 16:49] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [46:46, 01:00](1002 MB) +PASS -- TEST 'conus13km_2threads_intel' [42:54, 01:18](1009 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [42:47, 00:16](881 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:32, 12:11] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [46:45, 01:20](807 MB) + +FAILED: UNABLE TO COMPILE -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [, ] +FAILED: UNABLE TO START RUN -- TEST 'rap_control_debug_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'conus13km_debug_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'conus13km_debug_qr_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:35, 11:03] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [46:44, 00:57](977 MB) + +PASS -- COMPILE 'hafsw_intel' [17:50, 16:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [45:07, 02:13](616 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [45:07, 01:12](969 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [45:05, 02:09](660 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [45:05, 01:52](697 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [45:06, 01:35](713 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [45:04, 01:28](388 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [44:41, 01:33](402 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [43:52, 01:19](306 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [43:42, 02:06](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [43:35, 01:09](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [41:45, 01:31](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [41:45, 01:34](498 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [41:44, 01:06](312 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:30, 14:45] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [46:37, 01:36](504 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:48, 13:35] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [46:06, 01:43](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [46:04, 01:22](710 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:36, 18:34] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:13, 01:28](708 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:31, 12:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [41:37, 02:00](662 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [41:23, 02:09](650 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [40:58, 00:31](881 MB) + +PASS -- COMPILE 'atml_intel' [17:51, 16:38] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [36:54, 01:25](1553 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [36:54, 01:48](1549 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [29:09, 01:10](740 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:26, 10:39] ( 868 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [40:15, 02:04](1562 MB) + +PASS -- COMPILE 'atmaero_intel' [13:28, 12:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [38:50, 01:14](2850 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [38:50, 01:46](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:50, 01:31](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:21, 07:36] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [40:06, 00:59](4438 MB) SYNOPSIS: -Starting Date/Time: 20240514 18:58:32 -Ending Date/Time: 20240514 20:37:35 -Total Time: 01h:39m:46s -Compiles Completed: 32/32 -Tests Completed: 159/159 +Starting Date/Time: 20240516 20:23:31 +Ending Date/Time: 20240516 21:46:09 +Total Time: 01h:23m:17s +Compiles Completed: 31/32 +Tests Completed: 153/159 +Failed Compiles: +* COMPILE rrfs_dyn32_phy32_debug_intel: FAILED: UNABLE TO COMPILE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_rrfs_dyn32_phy32_debug_intel.log +Failed Tests: +* TEST rap_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST hrrr_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST conus13km_debug_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A + +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: +53ca93c48b032207b4d90354b56c0dbc6c8c4316 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g453e59e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) + cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (remotes/origin/HEAD-507-gbe05ec28) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (v3.7.1-433-g1dbf99a) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + + +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-20240516 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_23536 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:15, 02:59] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:36, 01:00](952 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:36, 01:09](951 MB) +PASS -- TEST 'conus13km_debug_intel' [26:36, 01:15](1036 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:36, 01:08](707 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:37, 00:23](1037 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:36, 01:16](1103 MB) + +SYNOPSIS: +Starting Date/Time: 20240517 12:29:57 +Ending Date/Time: 20240517 12:51:45 +Total Time: 00h:22m:10s +Compiles Completed: 1/1 +Tests Completed: 6/6 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/test_changes.list b/tests/test_changes.list index 52067a1431..a18012880b 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1 +1,4 @@ -cpld_control_sfs intel +control_diag_debug intel +rap_diag_debug intel +control_diag_debug gnu +rap_diag_debug gnu From 635890cadf0de02439912ecba8cef8de559d613f Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 21 May 2024 16:31:33 -0600 Subject: [PATCH 12/16] Add support for optional arguments in ccpp physics and framework AND add end of run restart functionality to MOM6 (was #2286) (#2205) * UFSWM - Add support for optional arguments in ccpp physics and framework * FV3 - [Add support for optional arguments in ccpp physics and framework](https://github.com/NOAA-EMC/fv3atm/pull/807#top) * ccpp-physics - Introduce optional arguments in ccpp schemes and metadata * ccpp-framework - Add support (and tests) for optional arguments in ccpp_prebuild * atmos_cubed_sphere - Set cdata%thrd_cnt in driver/fvGFS/atmosphere.F90 * MOM6 - Add end of run restart functionality to MOM6 * stochastic_physics - Add optional attribute for variables where necessary --- FV3 | 2 +- MOM6-interface/MOM6 | 2 +- stochastic_physics | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 526 ++++++------- tests/logs/RegressionTests_derecho.log | 544 ++++++------- tests/logs/RegressionTests_gaea.log | 546 ++++++------- tests/logs/RegressionTests_hera.log | 728 +++++++++--------- tests/logs/RegressionTests_hercules.log | 720 ++++++++--------- tests/logs/RegressionTests_jet.log | 557 ++++++++------ tests/logs/RegressionTests_orion.log | 674 ++++++++-------- tests/logs/RegressionTests_wcoss2.log | 558 ++++++-------- tests/parm/MOM_input_025.IN | 7 +- tests/parm/MOM_input_050.IN | 7 +- tests/parm/MOM_input_100.IN | 7 +- tests/parm/MOM_input_500.IN | 7 +- tests/test_changes.list | 4 - 19 files changed, 2515 insertions(+), 2478 deletions(-) diff --git a/FV3 b/FV3 index 10271c97aa..70810f134f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 10271c97aa884f64d0c2003c3202eb229cc1d65b +Subproject commit 70810f134fda5cb5fbb8ace9b79fe263768671dc diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 3bcfbbea8b..b32aea7bf3 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 3bcfbbea8b865c3f88497049fde044c1145bd202 +Subproject commit b32aea7bf3f9e2a774afa23d3386c88156cd1182 diff --git a/stochastic_physics b/stochastic_physics index 31e4e3e57b..fad2fe9f42 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a +Subproject commit fad2fe9f42f6b7f744b128b4a2a9433f91e4296f diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 89afac6ba2..439af1928e 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu May 16 20:24:57 UTC 2024 +Mon May 20 18:51:03 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/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 = 278.785657 - 0: The maximum resident set size (KB) = 1253096 + 0: The total amount of wall time = 276.086219 + 0: The maximum resident set size (KB) = 1266612 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/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 = 945.032567 - 0: The maximum resident set size (KB) = 1233484 + 0: The total amount of wall time = 967.204562 + 0: The maximum resident set size (KB) = 1252256 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/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 = 244.990573 - 0: The maximum resident set size (KB) = 1232508 + 0: The total amount of wall time = 244.057605 + 0: The maximum resident set size (KB) = 1245204 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/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 = 241.154280 - 0: The maximum resident set size (KB) = 1233296 + 0: The total amount of wall time = 242.281799 + 0: The maximum resident set size (KB) = 1245960 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/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 = 242.646838 - 0: The maximum resident set size (KB) = 1233060 + 0: The total amount of wall time = 242.457949 + 0: The maximum resident set size (KB) = 1245616 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/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 = 263.767716 - 0: The maximum resident set size (KB) = 1233204 + 0: The total amount of wall time = 247.352735 + 0: The maximum resident set size (KB) = 1245076 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 246.202485 - 0: The maximum resident set size (KB) = 1231200 + 0: The total amount of wall time = 242.402115 + 0: The maximum resident set size (KB) = 1245280 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu May 16 21:50:50 UTC 2024 -Elapsed time: 01h:27m:39s. Have a nice day! +Mon May 20 21:14:11 UTC 2024 +Elapsed time: 02h:23m:09s. 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 aad139e461..41bbda59b0 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Fri May 17 15:45:56 UTC 2024 +Tue May 21 16:24:30 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1600376/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/cpld/FV3_OPNREQ_TEST/opnReqTest_21842/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 = 1313.057110 - 0: The maximum resident set size (KB) = 1342956 + 0: The total amount of wall time = 1578.173654 + 0: The maximum resident set size (KB) = 1343768 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1600376/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/cpld/FV3_OPNREQ_TEST/opnReqTest_21842/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 = 518.573154 - 0: The maximum resident set size (KB) = 1341724 + 0: The total amount of wall time = 550.910855 + 0: The maximum resident set size (KB) = 1339328 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1600376/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/cpld/FV3_OPNREQ_TEST/opnReqTest_21842/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 = 393.159431 - 0: The maximum resident set size (KB) = 1342660 + 0: The total amount of wall time = 608.236433 + 0: The maximum resident set size (KB) = 1338792 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri May 17 16:50:15 UTC 2024 -Elapsed time: 01h:04m:19s. Have a nice day! +Tue May 21 17:39:42 UTC 2024 +Elapsed time: 01h:15m:12s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 0a3673a0f2..0eeb455541 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri May 17 13:09:07 UTC 2024 +Tue May 21 16:03:46 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4148204/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 = 1380.751535 - 0: The maximum resident set size (KB) = 575872 + 0: The total amount of wall time = 1256.367157 + 0: The maximum resident set size (KB) = 575888 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4148204/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 = 2250.847202 - 0: The maximum resident set size (KB) = 545220 + 0: The total amount of wall time = 2182.888769 + 0: The maximum resident set size (KB) = 543284 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4148204/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 = 2153.300954 - 0: The maximum resident set size (KB) = 541236 + 0: The total amount of wall time = 2087.568729 + 0: The maximum resident set size (KB) = 540656 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4148204/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 = 2143.988793 - 0: The maximum resident set size (KB) = 542088 + 0: The total amount of wall time = 2251.752676 + 0: The maximum resident set size (KB) = 543636 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri May 17 15:35:34 UTC 2024 -Elapsed time: 02h:26m:28s. Have a nice day! +Tue May 21 18:31:11 UTC 2024 +Elapsed time: 02h:27m:25s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index f664480f0c..8c5464b8f5 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -53ca93c48b032207b4d90354b56c0dbc6c8c4316 +3e15eaa45553e76c6aa00a66b999b6b85d2b5fb3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,24 +9,24 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) - cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) + c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) + 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) NOTES: @@ -36,267 +36,267 @@ 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-20240516 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117947 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_190946 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:18] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:08, 01:29](3046 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:31, 16:21] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:01, 01:37](1656 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:01, 01:35](1779 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [53:43, 01:50](912 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:02, 02:07](1635 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:28, 16:09] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:03, 01:15](1648 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:17, 03:53] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:15, 01:44](1677 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 11:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [26:07, 01:41](3077 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:07, 01:02](3073 MB) -PASS -- TEST 'cpld_restart_p8_intel' [17:25, 01:23](3130 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [26:07, 01:00](3099 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:23, 01:29](3152 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [26:07, 01:16](3387 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [26:07, 01:39](3070 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [26:08, 00:40](3000 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [26:07, 01:19](3078 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [26:07, 01:51](3039 MB) - -PASS -- COMPILE 's2sw_intel' [10:22, 09:37] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [27:09, 00:51](1655 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [27:09, 00:55](1701 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [27:08, 00:57](1699 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 10:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [26:06, 00:44](2679 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [26:06, 00:29](2701 MB) -PASS -- TEST 'cpld_restart_c48_intel' [22:57, 01:18](2131 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:29, 14:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [22:03, 01:14](3075 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:29, 14:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:03, 01:24](1669 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [00:44, 00:43](973 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [00:30, 01:37](1652 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:38] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:58, 01:32](1689 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:22, 09:18] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [18:34, 00:50](638 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [18:34, 00:56](1537 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:34, 01:17](1543 MB) -PASS -- TEST 'control_latlon_intel' [18:34, 01:07](1536 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:34, 01:18](1535 MB) -PASS -- TEST 'control_c48_intel' [18:33, 01:19](1617 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:33, 00:39](740 MB) -PASS -- TEST 'control_c192_intel' [18:34, 01:19](1650 MB) -PASS -- TEST 'control_c384_intel' [18:38, 00:58](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [17:53, 01:34](1149 MB) -PASS -- TEST 'control_stochy_intel' [17:34, 00:53](594 MB) -PASS -- TEST 'control_stochy_restart_intel' [00:54, 00:42](395 MB) -PASS -- TEST 'control_lndp_intel' [16:45, 01:10](592 MB) -PASS -- TEST 'control_iovr4_intel' [14:38, 00:17](589 MB) -PASS -- TEST 'control_iovr5_intel' [14:24, 00:32](587 MB) -PASS -- TEST 'control_p8_intel' [13:38, 01:41](1566 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:25, 01:17](1569 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:59, 01:23](1564 MB) -PASS -- TEST 'control_restart_p8_intel' [58:09, 00:55](753 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:21, 01:24](1552 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [57:11, 01:06](763 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:59, 01:29](1564 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:51, 00:39](1653 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:37, 01:02](1564 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:18, 01:18](1617 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:57, 01:27](1579 MB) -PASS -- TEST 'merra2_thompson_intel' [04:51, 02:01](1575 MB) -PASS -- TEST 'regional_control_intel' [03:45, 01:01](633 MB) -PASS -- TEST 'regional_restart_intel' [55:02, 00:55](803 MB) -PASS -- TEST 'regional_decomp_intel' [02:25, 00:11](631 MB) -PASS -- TEST 'regional_2threads_intel' [01:39, 00:19](722 MB) -PASS -- TEST 'regional_noquilt_intel' [01:36, 01:13](1168 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [01:26, 00:28](631 MB) -PASS -- TEST 'regional_wofs_intel' [00:16, 00:15](1604 MB) - -PASS -- COMPILE 'ifi_intel' [08:21, 08:06] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [18:46, 01:08](632 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [18:46, 00:31](631 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [18:47, 00:32](725 MB) - -PASS -- COMPILE 'rrfs_intel' [09:22, 08:57] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [00:07, 01:21](976 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [00:02, 01:28](1155 MB) -PASS -- TEST 'rap_decomp_intel' [59:47, 00:51](976 MB) -PASS -- TEST 'rap_2threads_intel' [59:07, 01:37](1059 MB) -PASS -- TEST 'rap_restart_intel' [48:49, 00:44](841 MB) -PASS -- TEST 'rap_sfcdiff_intel' [58:04, 01:09](970 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [57:55, 01:37](971 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [47:50, 01:21](845 MB) -PASS -- TEST 'hrrr_control_intel' [57:47, 01:04](970 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [57:40, 01:29](966 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [57:33, 01:32](1048 MB) -PASS -- TEST 'hrrr_control_restart_intel' [50:33, 01:01](798 MB) -PASS -- TEST 'rrfs_v1beta_intel' [56:51, 01:50](967 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [56:27, 01:02](1934 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [55:57, 01:17](1920 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:25] ( 2 warnings ) -PASS -- TEST 'control_csawmg_intel' [55:39, 00:54](665 MB) - -PASS -- COMPILE 'wam_intel' [08:22, 08:05] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [54:56, 00:20](334 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:41] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [54:54, 00:59](1560 MB) -PASS -- TEST 'regional_control_faster_intel' [54:43, 01:05](630 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [38:53, 04:07] ( 886 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [43:10, 00:51](1560 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [43:10, 00:30](1562 MB) -PASS -- TEST 'control_stochy_debug_intel' [43:10, 00:58](765 MB) -PASS -- TEST 'control_lndp_debug_intel' [43:10, 00:14](766 MB) -PASS -- TEST 'control_csawmg_debug_intel' [43:10, 00:08](806 MB) -PASS -- TEST 'control_ras_debug_intel' [43:10, 00:13](778 MB) -PASS -- TEST 'control_diag_debug_intel' [43:10, 00:30](1629 MB) -PASS -- TEST 'control_debug_p8_intel' [43:10, 00:37](1591 MB) -PASS -- TEST 'regional_debug_intel' [43:09, 00:58](674 MB) -PASS -- TEST 'rap_control_debug_intel' [43:10, 01:03](1148 MB) -PASS -- TEST 'hrrr_control_debug_intel' [43:10, 00:45](1140 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [43:10, 00:32](1145 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [43:10, 00:17](1150 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [43:10, 00:41](1149 MB) -PASS -- TEST 'rap_diag_debug_intel' [43:10, 00:34](1227 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [43:10, 00:44](1148 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:10, 00:47](1148 MB) -PASS -- TEST 'rap_lndp_debug_intel' [43:10, 00:42](1147 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:10, 00:53](1149 MB) -PASS -- TEST 'rap_noah_debug_intel' [43:10, 00:54](1146 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [43:10, 00:56](1143 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:58, 01:01](1140 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [42:44, 00:58](1142 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [40:56, 00:45](1148 MB) -PASS -- TEST 'rap_flake_debug_intel' [40:32, 00:44](1149 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:22, 01:46](1157 MB) - -PASS -- COMPILE 'wam_debug_intel' [36:51, 02:54] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [45:12, 00:54](375 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [41:55, 08:10] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [38:46, 00:48](1019 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [38:36, 01:06](854 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:56, 02:02](848 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [36:33, 00:57](917 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [36:26, 01:54](904 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [35:31, 01:07](850 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [44:58, 01:48](737 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [46:43, 00:38](729 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [42:56, 10:16] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [34:30, 00:43](1062 MB) -PASS -- TEST 'conus13km_2threads_intel' [46:02, 00:12](1043 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [45:35, 00:34](938 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [40:56, 08:11] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [34:30, 00:32](873 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [35:49, 03:00] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [39:39, 00:19](1017 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [39:38, 00:31](1022 MB) -PASS -- TEST 'conus13km_debug_intel' [39:11, 00:30](1117 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [33:28, 00:54](786 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [33:28, 00:43](1083 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [33:26, 00:27](1182 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:51, 03:02] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [33:26, 00:33](1046 MB) - -PASS -- COMPILE 'hafsw_intel' [41:57, 09:22] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [33:28, 01:23](674 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:00, 01:06](1025 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [31:26, 01:36](707 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [29:21, 01:43](753 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:55, 01:28](773 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [20:35, 00:51](436 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [20:22, 01:30](465 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [19:57, 01:30](336 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:34, 02:35](403 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:06, 00:39](478 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:27, 01:23](474 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:45, 01:08](535 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:44, 00:31](369 MB) -PASS -- TEST 'gnv1_nested_intel' [05:16, 00:48](735 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [34:48, 03:20] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:09, 00:55](574 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [40:57, 09:39] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:55, 01:10](579 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:44, 01:29](759 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:23, 09:29] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:07, 01:29](754 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:23, 09:07] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [00:30, 01:16](717 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [59:23, 01:04](697 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [59:18, 00:52](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:27, 08:33] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [58:23, 00:54](749 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [43:51, 00:22](737 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [58:15, 00:09](638 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [55:23, 00:17](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [53:23, 00:09](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [51:59, 00:28](762 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [51:59, 00:32](762 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [51:44, 00:55](649 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [50:52, 01:10](647 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [50:26, 00:33](631 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [50:16, 00:11](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [50:08, 00:35](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [47:59, 00:24](2020 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:27, 08:31] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [47:24, 00:54](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [07:21, 00:50] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [47:23, 00:33](273 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [47:17, 00:24](410 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [44:51, 00:34](411 MB) - -PASS -- COMPILE 'atml_intel' [14:28, 09:43] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [47:15, 01:50](1608 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [46:44, 01:08](1609 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [39:19, 00:28](805 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:18, 03:32] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [46:37, 01:28](1634 MB) - -PASS -- COMPILE 'atmw_intel' [11:24, 08:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [46:04, 00:49](1609 MB) - -PASS -- COMPILE 'atmaero_intel' [10:23, 08:30] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [44:51, 01:01](2916 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [44:45, 01:31](2977 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [43:46, 00:56](2987 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:17, 03:16] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:23, 00:57](4491 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:29] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [00:55, 01:18](3037 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:46] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [55:50, 01:35](1655 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:57, 01:21](1779 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:38, 01:17](910 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [55:51, 01:56](1633 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:14] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [55:50, 00:32](1658 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:14] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [07:02, 01:53](1683 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 10:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [00:55, 01:27](3074 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [00:55, 01:41](3071 MB) +PASS -- TEST 'cpld_restart_p8_intel' [52:28, 01:33](3132 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [00:55, 01:25](3099 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [52:28, 01:23](3148 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [00:55, 01:05](3386 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [00:55, 01:36](3068 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [00:56, 00:58](2997 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [00:55, 01:03](3073 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [00:55, 00:49](3042 MB) + +PASS -- COMPILE 's2sw_intel' [10:23, 09:56] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [01:56, 00:49](1646 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [01:56, 00:54](1692 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:56, 00:55](1698 MB) + +PASS -- COMPILE 's2s_intel' [10:23, 09:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [01:55, 00:41](2676 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [01:55, 00:25](2692 MB) +PASS -- TEST 'cpld_restart_c48_intel' [58:54, 00:57](2127 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:30, 17:12] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [54:49, 00:47](3079 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:29, 15:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:50, 01:06](1666 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:08, 01:11](964 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:08, 00:42](1643 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:55] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [02:45, 00:28](1682 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:40] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [52:21, 00:36](643 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [52:21, 01:00](1535 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [52:21, 01:00](1540 MB) +PASS -- TEST 'control_latlon_intel' [52:21, 00:57](1535 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:21, 01:06](1541 MB) +PASS -- TEST 'control_c48_intel' [52:20, 00:39](1623 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [52:20, 00:16](742 MB) +PASS -- TEST 'control_c192_intel' [52:21, 01:07](1656 MB) +PASS -- TEST 'control_c384_intel' [52:25, 01:15](1961 MB) +PASS -- TEST 'control_c384gdas_intel' [52:25, 01:31](1154 MB) +PASS -- TEST 'control_stochy_intel' [51:46, 01:03](597 MB) +PASS -- TEST 'control_stochy_restart_intel' [24:54, 00:27](401 MB) +PASS -- TEST 'control_lndp_intel' [47:20, 00:46](596 MB) +PASS -- TEST 'control_iovr4_intel' [46:53, 00:23](589 MB) +PASS -- TEST 'control_iovr5_intel' [46:52, 00:24](590 MB) +PASS -- TEST 'control_p8_intel' [41:00, 01:10](1565 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [36:24, 01:04](1574 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [36:08, 01:16](1569 MB) +PASS -- TEST 'control_restart_p8_intel' [20:45, 01:12](755 MB) +PASS -- TEST 'control_noqr_p8_intel' [32:24, 00:55](1555 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [20:57, 01:27](761 MB) +PASS -- TEST 'control_decomp_p8_intel' [30:00, 01:23](1563 MB) +PASS -- TEST 'control_2threads_p8_intel' [29:57, 01:12](1650 MB) +PASS -- TEST 'control_p8_lndp_intel' [29:49, 00:27](1575 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [27:47, 01:14](1623 MB) +PASS -- TEST 'control_p8_mynn_intel' [26:31, 01:12](1573 MB) +PASS -- TEST 'merra2_thompson_intel' [25:51, 01:18](1577 MB) +PASS -- TEST 'regional_control_intel' [24:22, 00:27](636 MB) +PASS -- TEST 'regional_restart_intel' [18:41, 00:11](802 MB) +PASS -- TEST 'regional_decomp_intel' [24:03, 00:24](635 MB) +PASS -- TEST 'regional_2threads_intel' [23:56, 00:34](727 MB) +PASS -- TEST 'regional_noquilt_intel' [23:53, 00:53](1167 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [23:48, 00:19](635 MB) +PASS -- TEST 'regional_wofs_intel' [23:46, 00:52](1606 MB) + +PASS -- COMPILE 'ifi_intel' [08:21, 08:11] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [53:34, 00:55](635 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [53:34, 00:37](632 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [53:35, 01:06](729 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 09:19] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [23:33, 01:41](976 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:13, 00:41](1156 MB) +PASS -- TEST 'rap_decomp_intel' [22:11, 01:31](975 MB) +PASS -- TEST 'rap_2threads_intel' [22:05, 01:17](1067 MB) +PASS -- TEST 'rap_restart_intel' [13:10, 01:32](843 MB) +PASS -- TEST 'rap_sfcdiff_intel' [22:03, 01:51](976 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:52, 01:36](975 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:39, 01:09](845 MB) +PASS -- TEST 'hrrr_control_intel' [20:39, 01:18](969 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [20:25, 01:18](968 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [20:15, 01:32](1050 MB) +PASS -- TEST 'hrrr_control_restart_intel' [14:23, 00:15](799 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:53, 00:48](968 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:52, 00:53](1935 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:14, 01:00](1921 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:36] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [52:33, 00:47](658 MB) + +PASS -- COMPILE 'wam_intel' [08:21, 07:56] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [52:33, 00:59](331 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:31, 15:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [18:12, 01:15](1562 MB) +PASS -- TEST 'regional_control_faster_intel' [17:55, 00:53](630 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 05:24] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [17:34, 01:03](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [17:18, 00:39](1561 MB) +PASS -- TEST 'control_stochy_debug_intel' [17:17, 00:36](765 MB) +PASS -- TEST 'control_lndp_debug_intel' [15:35, 00:14](764 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:35, 01:05](805 MB) +PASS -- TEST 'control_ras_debug_intel' [15:27, 00:28](777 MB) +PASS -- TEST 'control_diag_debug_intel' [13:29, 00:46](1618 MB) +PASS -- TEST 'control_debug_p8_intel' [13:19, 01:00](1596 MB) +PASS -- TEST 'regional_debug_intel' [13:08, 00:33](675 MB) +PASS -- TEST 'rap_control_debug_intel' [12:55, 00:10](1145 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:51, 00:18](1141 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [12:49, 00:10](1143 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:27, 00:14](1143 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:13, 00:37](1146 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:12, 00:31](1227 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:09, 00:29](1148 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:59, 00:21](1148 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:43, 00:48](1147 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:39, 00:52](1148 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:19, 00:41](1140 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:56, 00:39](1145 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:43, 00:25](1143 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:15, 01:04](1144 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:01, 00:14](1148 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:59, 00:14](1144 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [06:49, 01:35](1157 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 02:59] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:49, 00:06](384 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:26, 08:31] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:47, 00:34](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:37, 01:18](853 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:27, 02:05](848 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:41, 01:04](911 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 01:25](901 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [01:46, 01:41](846 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [44:10, 01:19](741 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:38, 00:28](726 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:37, 14:00] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [01:19, 01:11](1055 MB) +PASS -- TEST 'conus13km_2threads_intel' [44:18, 00:52](1039 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [44:17, 00:48](939 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:33, 08:23] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [01:17, 00:55](870 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:31, 03:27] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [42:02, 00:11](1028 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [42:02, 00:18](1023 MB) +PASS -- TEST 'conus13km_debug_intel' [42:02, 00:50](1120 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [42:02, 00:49](800 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [42:03, 00:22](1100 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [42:02, 00:45](1185 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:31, 03:13] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [42:01, 01:01](1046 MB) + +PASS -- COMPILE 'hafsw_intel' [17:34, 09:59] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [34:50, 02:12](675 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [34:50, 01:07](1026 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [34:48, 01:24](718 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [34:48, 01:22](757 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:49, 01:21](776 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [34:48, 01:03](442 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [34:49, 01:20](462 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [32:13, 00:50](338 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [31:43, 02:24](400 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:38, 00:41](480 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [31:38, 00:42](480 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [31:39, 00:37](545 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [31:38, 01:08](371 MB) +PASS -- TEST 'gnv1_nested_intel' [31:38, 01:31](737 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:30, 03:52] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [41:05, 00:32](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:37, 16:42] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:20, 01:10](580 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:05, 01:21](752 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:29, 09:45] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [35:01, 00:58](747 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:24, 09:09] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [35:00, 01:42](713 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [35:00, 02:01](697 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [34:58, 00:46](897 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:23, 08:22] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [34:59, 00:45](749 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [31:35, 00:33](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [34:59, 00:54](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [34:59, 00:51](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [34:59, 00:50](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [34:59, 00:45](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [34:59, 00:44](762 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [34:59, 00:51](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [35:00, 00:53](647 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [35:00, 01:08](631 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [34:59, 00:42](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [34:59, 00:49](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [34:59, 00:48](2015 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [00:14, 08:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [34:47, 00:20](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [49:02, 00:42] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [41:09, 00:51](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [41:09, 00:55](413 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [38:41, 00:15](409 MB) + +PASS -- COMPILE 'atml_intel' [10:23, 10:01] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [31:37, 01:37](1598 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [29:36, 01:28](1595 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [59:47, 00:30](801 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:18, 04:22] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [36:44, 01:18](1636 MB) + +PASS -- COMPILE 'atmw_intel' [09:22, 08:56] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [29:34, 01:12](1612 MB) + +PASS -- COMPILE 'atmaero_intel' [09:22, 08:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [29:25, 00:55](2915 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [28:17, 00:48](2976 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [28:12, 00:43](2987 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:17, 03:21] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:58, 01:40](4500 MB) SYNOPSIS: -Starting Date/Time: 20240516 20:22:09 -Ending Date/Time: 20240516 22:42:53 -Total Time: 02h:21m:02s +Starting Date/Time: 20240520 18:47:23 +Ending Date/Time: 20240520 21:20:47 +Total Time: 02h:33m:41s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index b2a6cf9050..9dfb63b154 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -53ca93c48b032207b4d90354b56c0dbc6c8c4316 +f911c00436f15ee4ba9f6fd0ef951b8d543d287f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,24 +9,24 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) - cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) + c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) + 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) NOTES: @@ -36,277 +36,277 @@ 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-20240516 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_113730 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_59871 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:24, 19:13] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:51, 04:59](3076 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:24, 20:38] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:01, 13:45](1691 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:13, 15:29](1829 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:09, 07:36](957 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:44, 15:43](1666 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:24, 20:37] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:04, 13:39](1684 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:21, 09:05] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:23, 21:17](1705 MB) - -PASS -- COMPILE 's2swa_intel' [20:23, 19:15] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:51, 05:39](3093 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:55, 05:39](3092 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:54, 03:25](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 05:38](3121 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:54, 03:32](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:26, 05:15](3678 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:26, 05:33](3091 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 04:37](3399 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:10, 05:38](3101 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:07, 08:53](3633 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [19:43, 06:17](3611 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [41:39, 10:05](4343 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [44:13, 08:21](4645 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:23, 05:17](3067 MB) - -PASS -- COMPILE 's2sw_intel' [19:23, 18:36] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:54, 04:12](1681 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:09, 04:15](1732 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:22, 09:09] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:29, 07:44](3153 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:21, 08:35] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:47, 05:18](1706 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:23, 14:08] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:39, 04:17](1729 MB) - -PASS -- COMPILE 's2s_intel' [15:22, 14:07] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:15, 06:42](2665 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 02:01](2687 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:29, 01:10](2120 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:21, 22:54] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:12, 05:35](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:20, 19:42] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:10, 14:04](1705 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:05, 07:46](1018 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:29, 16:09](1677 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:22] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:16, 22:59](1720 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:15] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:45, 03:31](670 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:29](1564 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:03, 02:32](1575 MB) -PASS -- TEST 'control_latlon_intel' [04:32, 02:26](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:31](1573 MB) -PASS -- TEST 'control_c48_intel' [08:27, 06:16](1618 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:54, 05:20](735 MB) -PASS -- TEST 'control_c192_intel' [12:41, 08:47](1690 MB) -PASS -- TEST 'control_c384_intel' [19:14, 09:21](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [24:54, 07:41](1197 MB) -PASS -- TEST 'control_stochy_intel' [02:48, 01:27](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:57, 00:54](442 MB) -PASS -- TEST 'control_lndp_intel' [02:54, 01:30](624 MB) -PASS -- TEST 'control_iovr4_intel' [04:13, 02:07](621 MB) -PASS -- TEST 'control_iovr5_intel' [04:16, 02:07](623 MB) -PASS -- TEST 'control_p8_intel' [05:07, 02:31](1598 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 02:30](1599 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 02:32](1599 MB) -PASS -- TEST 'control_restart_p8_intel' [03:48, 01:29](802 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:05, 02:34](1586 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 01:27](805 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:45, 02:38](1596 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:45, 02:23](1691 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:48, 04:25](1601 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 03:22](1654 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:04, 02:35](1607 MB) -PASS -- TEST 'merra2_thompson_intel' [06:56, 02:53](1612 MB) -PASS -- TEST 'regional_control_intel' [08:00, 04:38](628 MB) -PASS -- TEST 'regional_restart_intel' [04:12, 02:35](800 MB) -PASS -- TEST 'regional_decomp_intel' [07:00, 04:50](632 MB) -PASS -- TEST 'regional_noquilt_intel' [06:46, 04:29](1159 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:24, 04:32](628 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:34](630 MB) -PASS -- TEST 'regional_wofs_intel' [07:18, 05:40](1603 MB) - -PASS -- COMPILE 'rrfs_intel' [12:18, 10:56] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:05, 06:21](1011 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:09, 03:54](1204 MB) -PASS -- TEST 'rap_decomp_intel' [09:06, 06:25](1009 MB) -PASS -- TEST 'rap_2threads_intel' [09:05, 05:51](1092 MB) -PASS -- TEST 'rap_restart_intel' [05:44, 03:17](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:08, 06:09](1008 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:06, 06:32](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:39, 04:39](880 MB) -PASS -- TEST 'hrrr_control_intel' [05:19, 03:25](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:29](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:19, 02:52](1090 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:56, 01:48](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:16, 06:02](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:27](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:23, 07:08](1953 MB) - -PASS -- COMPILE 'csawmg_intel' [11:18, 10:07] ( 6 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:35, 05:54](694 MB) -PASS -- TEST 'control_ras_intel' [04:51, 02:55](659 MB) - -PASS -- COMPILE 'wam_intel' [10:18, 09:21] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:34, 01:55](384 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:20, 12:33] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:55, 02:33](1594 MB) -PASS -- TEST 'regional_control_faster_intel' [06:30, 04:24](629 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:21] ( 890 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:31, 02:36](1595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:26, 02:29](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:50, 02:52](802 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:54, 02:43](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:21, 03:57](839 MB) -PASS -- TEST 'control_ras_debug_intel' [03:53, 02:41](810 MB) -PASS -- TEST 'control_diag_debug_intel' [06:07, 02:38](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [04:16, 02:42](1629 MB) -PASS -- TEST 'regional_debug_intel' [18:15, 16:15](661 MB) -PASS -- TEST 'rap_control_debug_intel' [06:41, 04:53](1183 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:45, 04:48](1178 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:53, 04:50](1181 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:51, 04:41](1182 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:49, 04:46](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:35, 05:01](1269 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:47, 05:03](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:50, 04:46](1187 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:41, 04:40](1185 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:54, 04:46](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:53, 04:45](1182 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:51, 04:40](1182 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:45, 07:32](1182 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:49, 04:35](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:48, 05:52](1184 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:45, 04:42](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:00](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 05:08] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:41, 04:40](421 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:20, 09:35] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:05, 03:53](1058 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 05:11](883 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 02:51](882 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:38, 04:49](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 02:31](942 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 02:57](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:26, 03:56](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:03, 01:35](781 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 12:05] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:13, 02:00](1087 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:12](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:21, 01:15](978 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:20, 10:12] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:38, 03:40](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:19, 06:11] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:47, 04:42](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 04:30](1052 MB) -PASS -- TEST 'conus13km_debug_intel' [17:09, 13:21](1134 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:57, 13:42](817 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:49, 07:55](1134 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 13:27](1205 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:51] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:53, 04:35](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [17:22, 16:22] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:12, 04:49](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:12, 05:24](1073 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:45, 06:45](780 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:36, 11:15](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:24, 12:24](814 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:33, 04:51](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:15, 05:59](492 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:30, 02:33](394 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:34, 06:47](457 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:28, 03:31](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:27, 03:14](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:22, 04:07](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:26](428 MB) -PASS -- TEST 'gnv1_nested_intel' [07:00, 03:46](787 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:21, 07:27] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:38, 12:19](615 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:23, 20:03] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:07, 07:20](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:26, 07:39](690 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:20, 17:12] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:46, 05:34](679 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:20, 14:46] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:28, 06:06](751 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:14, 06:09](740 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:39, 16:19](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:18, 08:19] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:01, 02:38](762 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:01, 01:40](748 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:55, 02:26](638 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:57, 02:29](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:56, 02:27](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:51, 02:33](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:53, 02:36](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:54, 02:24](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:51, 05:56](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:44, 05:55](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:31](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:13, 04:03](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [10:48, 04:05](1957 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:23] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:54, 05:06](732 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:17] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [13:48, 02:32](749 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:31] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:46, 01:31](305 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:39, 01:23](453 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:36, 00:52](450 MB) - -PASS -- COMPILE 'atml_intel' [14:19, 13:18] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:26, 08:09](1633 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:24, 07:43](1633 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:48, 03:47](854 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:19, 08:02] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:16, 06:06](1662 MB) - -PASS -- COMPILE 'atmw_intel' [14:21, 13:10] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:06, 01:40](1636 MB) - -PASS -- COMPILE 'atmaero_intel' [12:20, 11:40] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:43, 03:49](2948 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:48, 04:21](3003 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:06, 04:24](3012 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:17, 06:58] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [32:06, 22:34](4529 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:21, 20:54] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:25, 04:58](3077 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:21, 22:10] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:33, 13:50](1686 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:05, 15:05](1829 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:58, 07:15](957 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:46, 15:44](1658 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:22, 22:04] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:40, 13:39](1686 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:20, 10:44] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:47, 21:20](1710 MB) + +PASS -- COMPILE 's2swa_intel' [21:22, 20:46] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:58, 05:41](3095 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:47, 05:46](3094 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:29, 03:17](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:58, 05:42](3126 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:29, 03:20](3183 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:38, 05:16](3680 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:54, 05:37](3095 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:34, 04:38](3401 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:47, 05:37](3103 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:59, 08:55](3639 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:00, 06:19](3620 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:21, 09:58](4345 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:10, 07:16](4653 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:36, 05:19](3070 MB) + +PASS -- COMPILE 's2sw_intel' [21:21, 20:14] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:26, 04:13](1676 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:36, 04:23](1730 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:20, 10:48] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:03, 07:48](3161 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:20, 09:51] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:30, 05:13](1707 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:22, 15:16] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:01, 04:18](1737 MB) + +PASS -- COMPILE 's2s_intel' [19:21, 15:24] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:13, 06:40](2670 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:12, 01:59](2688 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:39, 01:08](2129 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:21, 25:27] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:15, 05:36](3103 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:16, 20:49] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:58, 14:05](1708 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:29, 07:23](1024 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:56, 16:05](1678 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:19, 09:55] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:44, 23:06](1720 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:14, 15:05] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:36, 03:27](668 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:15, 02:29](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:35, 02:33](1569 MB) +PASS -- TEST 'control_latlon_intel' [04:15, 02:30](1562 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:30](1571 MB) +PASS -- TEST 'control_c48_intel' [08:26, 06:14](1615 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:35, 05:18](732 MB) +PASS -- TEST 'control_c192_intel' [12:02, 08:46](1687 MB) +PASS -- TEST 'control_c384_intel' [16:52, 09:00](2010 MB) +PASS -- TEST 'control_c384gdas_intel' [21:21, 07:26](1199 MB) +PASS -- TEST 'control_stochy_intel' [03:42, 01:29](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:48, 00:53](436 MB) +PASS -- TEST 'control_lndp_intel' [03:49, 01:24](624 MB) +PASS -- TEST 'control_iovr4_intel' [04:43, 02:07](622 MB) +PASS -- TEST 'control_iovr5_intel' [04:37, 02:07](619 MB) +PASS -- TEST 'control_p8_intel' [05:41, 02:32](1599 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 02:28](1597 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:47, 02:31](1600 MB) +PASS -- TEST 'control_restart_p8_intel' [04:39, 01:26](797 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:33, 02:29](1592 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:22](804 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:37, 02:32](1594 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:25, 02:23](1692 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:31, 04:23](1596 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:06, 03:23](1650 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:00, 02:33](1604 MB) +PASS -- TEST 'merra2_thompson_intel' [06:04, 02:53](1603 MB) +PASS -- TEST 'regional_control_intel' [07:25, 04:32](625 MB) +PASS -- TEST 'regional_restart_intel' [03:55, 02:31](797 MB) +PASS -- TEST 'regional_decomp_intel' [07:25, 04:46](628 MB) +PASS -- TEST 'regional_noquilt_intel' [07:31, 04:32](1155 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:30, 04:33](624 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:14, 04:35](625 MB) +PASS -- TEST 'regional_wofs_intel' [08:09, 05:38](1598 MB) + +PASS -- COMPILE 'rrfs_intel' [14:13, 12:56] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:35, 06:10](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 03:49](1209 MB) +PASS -- TEST 'rap_decomp_intel' [09:41, 06:23](1007 MB) +PASS -- TEST 'rap_2threads_intel' [09:35, 05:40](1092 MB) +PASS -- TEST 'rap_restart_intel' [05:25, 03:13](884 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:38, 06:10](1008 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:38, 06:26](1004 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:07, 04:36](881 MB) +PASS -- TEST 'hrrr_control_intel' [06:15, 03:20](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:15, 03:21](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:15, 02:53](1092 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:50, 01:46](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:41, 06:01](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:11, 07:27](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:10, 07:08](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [12:13, 11:03] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:28, 05:48](693 MB) +PASS -- TEST 'control_ras_intel' [04:48, 02:53](656 MB) + +PASS -- COMPILE 'wam_intel' [11:13, 10:11] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:25, 01:54](386 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:15, 16:59] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:51, 02:29](1602 MB) +PASS -- TEST 'regional_control_faster_intel' [06:09, 04:25](622 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:14, 12:22] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:16, 02:35](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:14, 02:34](1600 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:35, 02:51](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:40, 02:36](798 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:18, 04:06](839 MB) +PASS -- TEST 'control_ras_debug_intel' [04:33, 02:45](804 MB) +PASS -- TEST 'control_diag_debug_intel' [05:16, 02:36](1659 MB) +PASS -- TEST 'control_debug_p8_intel' [04:09, 02:36](1628 MB) +PASS -- TEST 'regional_debug_intel' [18:05, 15:51](665 MB) +PASS -- TEST 'rap_control_debug_intel' [05:31, 04:39](1181 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:31, 04:31](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 04:40](1178 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:41, 04:44](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 04:42](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:55, 05:00](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:43, 04:48](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:42, 04:48](1186 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:42, 04:50](1180 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 04:47](1180 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:34](1179 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:40, 04:44](1179 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:34, 07:29](1175 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:38, 04:41](1173 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:45, 05:52](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:42, 04:47](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 08:02](1182 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:13, 06:13] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:45, 04:38](431 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:18, 10:58] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:03, 03:39](1058 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:15, 05:10](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:23, 02:49](886 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:09, 04:49](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:27, 02:27](942 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 02:57](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:04, 03:56](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:44, 01:32](782 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 14:45] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:00, 01:59](1087 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:36, 01:01](1090 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:27, 01:08](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 10:53] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:09, 03:40](914 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:14, 06:39] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:39](1058 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:31, 04:26](1055 MB) +PASS -- TEST 'conus13km_debug_intel' [15:58, 13:24](1140 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:37](826 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:50, 07:44](1139 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 13:17](1228 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:13, 06:37] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:40, 04:35](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [19:15, 17:49] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:33, 04:41](718 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:13, 05:20](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:19, 06:31](784 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:45, 10:59](803 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:42, 12:00](822 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:25, 04:42](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:41, 05:46](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:06, 02:24](391 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:21, 06:18](462 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:01, 03:21](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:30, 03:05](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:21, 03:57](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:31, 01:17](431 MB) +PASS -- TEST 'gnv1_nested_intel' [07:17, 03:27](785 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:19, 08:15] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:17, 12:01](620 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:19, 26:27] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:25, 07:08](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:29, 07:12](685 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:16, 18:37] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:34, 05:22](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:20, 15:25] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:30, 05:39](749 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:37, 05:40](736 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:11, 16:13](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:13, 08:30] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:30, 02:32](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:33, 01:34](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:29, 02:24](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:31, 02:27](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:40, 02:24](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:34, 02:29](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:25, 02:33](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:27, 02:23](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:30, 05:43](689 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:32, 05:44](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:23, 02:35](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:38, 03:54](2016 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:34, 03:55](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:18, 05:41] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:22, 05:10](736 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:13, 08:29] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:28, 02:31](760 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:12, 02:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 01:13](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:10](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:49](452 MB) + +PASS -- COMPILE 'atml_intel' [17:19, 14:47] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:44, 06:50](1639 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:54, 06:18](1633 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:06, 03:31](853 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:17, 09:43] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:41, 05:36](1660 MB) + +PASS -- COMPILE 'atmw_intel' [14:19, 13:25] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:30, 01:35](1633 MB) + +PASS -- COMPILE 'atmaero_intel' [13:19, 12:08] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:39, 03:41](2949 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:49, 04:17](2994 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:16, 04:22](3011 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:18, 07:24] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:54, 22:09](4532 MB) SYNOPSIS: -Starting Date/Time: 20240517 07:10:29 -Ending Date/Time: 20240517 08:58:48 -Total Time: 01h:49m:15s +Starting Date/Time: 20240520 21:55:09 +Ending Date/Time: 20240520 23:37:30 +Total Time: 01h:43m:26s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index f2bc960cc7..7da93ec909 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -53ca93c48b032207b4d90354b56c0dbc6c8c4316 +3e15eaa45553e76c6aa00a66b999b6b85d2b5fb3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,24 +9,24 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) - cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) + c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) + 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) NOTES: @@ -36,278 +36,278 @@ 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-20240516 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_245093 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_203583 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:37] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:55, 07:26](3071 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 23:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:02, 14:14](1696 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:12, 14:26](1808 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:00, 07:58](944 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:56, 15:22](1669 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 23:19] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:59, 13:40](1688 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:15, 13:45] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:45, 23:53](1707 MB) - -PASS -- COMPILE 's2swa_intel' [21:15, 20:26] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:06, 08:10](3098 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:17, 08:07](3097 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:13, 05:47](3155 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:06, 08:15](3121 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:13, 05:51](3175 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:46, 07:00](3410 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:59, 08:36](3096 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:48, 07:30](3021 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:58, 08:20](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:04, 10:34](3373 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:09, 08:10](3598 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:25, 13:17](4039 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:20, 09:21](4344 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 08:02](3065 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 18:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:11, 05:27](1686 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:11, 05:51](1731 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:15, 13:34] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:07, 10:18](3130 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:15, 12:49] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [22:49, 20:41](1699 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 17:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:20, 05:38](1730 MB) - -PASS -- COMPILE 's2s_intel' [17:15, 16:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:36, 06:55](2657 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:28, 01:58](2681 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:41, 01:06](2113 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:11, 22:53] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:38, 09:13](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 24:15] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:04, 15:01](1701 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:26, 07:16](998 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:20, 17:12](1680 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 14:22] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:47, 25:45](1715 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:51] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:59, 04:14](670 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:32, 03:27](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:26, 03:29](1579 MB) -PASS -- TEST 'control_latlon_intel' [11:13, 03:20](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:12, 03:23](1567 MB) -PASS -- TEST 'control_c48_intel' [13:22, 06:38](1601 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:13, 05:43](723 MB) -PASS -- TEST 'control_c192_intel' [15:02, 10:07](1683 MB) -PASS -- TEST 'control_c384_intel' [22:23, 18:33](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [18:31, 14:46](1183 MB) -PASS -- TEST 'control_stochy_intel' [03:45, 02:14](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:08, 01:21](429 MB) -PASS -- TEST 'control_lndp_intel' [03:40, 02:12](628 MB) -PASS -- TEST 'control_iovr4_intel' [03:44, 03:05](623 MB) -PASS -- TEST 'control_iovr5_intel' [04:54, 03:09](623 MB) -PASS -- TEST 'control_p8_intel' [06:49, 04:15](1605 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:12, 04:27](1606 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:32](1608 MB) -PASS -- TEST 'control_restart_p8_intel' [04:37, 02:06](789 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:56](1594 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 02:12](792 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:02, 03:55](1596 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:26, 03:26](1689 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:07, 05:35](1605 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:35, 04:39](1656 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:47, 03:57](1613 MB) -PASS -- TEST 'merra2_thompson_intel' [05:43, 03:50](1610 MB) -PASS -- TEST 'regional_control_intel' [07:00, 05:03](617 MB) -PASS -- TEST 'regional_restart_intel' [08:45, 02:53](786 MB) -PASS -- TEST 'regional_decomp_intel' [06:50, 05:24](617 MB) -PASS -- TEST 'regional_2threads_intel' [04:52, 03:08](759 MB) -PASS -- TEST 'regional_noquilt_intel' [05:59, 04:58](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:14, 05:22](614 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:03, 05:49](617 MB) -PASS -- TEST 'regional_wofs_intel' [07:54, 06:16](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 13:18] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:00, 07:05](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:35, 04:22](1188 MB) -PASS -- TEST 'rap_decomp_intel' [13:58, 07:32](1009 MB) -PASS -- TEST 'rap_2threads_intel' [11:51, 06:11](1100 MB) -PASS -- TEST 'rap_restart_intel' [06:20, 04:27](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:00, 07:23](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:00, 07:16](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:03, 05:19](881 MB) -PASS -- TEST 'hrrr_control_intel' [11:51, 04:24](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:57, 03:53](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:51, 03:04](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:12, 02:23](839 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:00, 06:58](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:17, 08:13](1967 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:03, 08:14](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 13:19] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:49, 06:52](695 MB) -PASS -- TEST 'control_ras_intel' [05:44, 03:51](656 MB) - -PASS -- COMPILE 'wam_intel' [13:15, 13:01] -PASS -- TEST 'control_wam_intel' [04:35, 02:23](370 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:25] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:39, 03:45](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [07:02, 04:51](616 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:43] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:18, 03:02](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:09, 03:14](1587 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:31, 03:26](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:38, 03:03](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:50, 04:30](825 MB) -PASS -- TEST 'control_ras_debug_intel' [08:30, 03:07](795 MB) -PASS -- TEST 'control_diag_debug_intel' [08:50, 03:02](1643 MB) -PASS -- TEST 'control_debug_p8_intel' [09:42, 03:30](1619 MB) -PASS -- TEST 'regional_debug_intel' [22:45, 16:06](635 MB) -PASS -- TEST 'rap_control_debug_intel' [10:33, 04:57](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:35, 05:05](1167 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:31, 05:06](1173 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:34, 05:06](1173 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:38, 05:03](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:54, 05:21](1252 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:44, 05:16](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 05:09](1168 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:39, 05:03](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:35, 05:05](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:32, 04:59](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:31, 05:12](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:38, 07:49](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:35, 04:58](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:34, 05:55](1171 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:39, 05:03](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:20](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 08:53] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:32, 05:02](398 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 14:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:11, 03:50](1044 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:28, 06:18](891 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:04, 03:37](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:22, 05:12](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:07, 02:46](935 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:38](885 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 04:10](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:42, 02:45](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:04, 02:08](1092 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 02:13](1075 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:27, 02:26](975 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 14:20] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 04:26](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:10, 11:28] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:01, 04:59](1050 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:00, 04:56](1049 MB) -PASS -- TEST 'conus13km_debug_intel' [16:12, 14:23](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:07, 14:38](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:02, 08:34](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:01, 14:24](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 10:41] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:43, 05:04](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [20:12, 19:13] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:35, 05:33](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:52, 04:47](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:42, 07:46](741 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:29, 11:46](786 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:54, 13:00](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:32, 05:32](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:51, 07:00](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:45, 03:43](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:40, 08:27](433 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:11, 04:27](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:24, 04:02](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:18, 04:50](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:57, 01:52](401 MB) -PASS -- TEST 'gnv1_nested_intel' [06:45, 04:13](767 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:11, 14:51] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:25, 13:06](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:11, 20:36] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:00, 07:42](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:59, 07:53](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:15, 20:28] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:59, 06:16](787 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:18, 18:13] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:10, 06:26](745 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:03, 06:21](737 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:26, 20:10](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:13, 12:53] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:33, 02:34](759 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:36, 01:35](746 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:31, 02:28](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:30, 02:28](637 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:33](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:37](759 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:34](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:27](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:01, 06:23](690 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 05:59](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:42](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:39](2020 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:50, 04:39](2020 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 09:07] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:41, 05:25](745 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 12:29] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:51, 02:44](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:14, 05:14] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:04, 03:36](319 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:05, 02:53](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:58, 01:12](456 MB) - -PASS -- COMPILE 'atml_intel' [17:11, 16:17] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:19, 08:46](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:16, 08:43](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:34, 04:06](837 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:15, 11:18] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:02, 07:15](1653 MB) - -PASS -- COMPILE 'atmw_intel' [17:15, 15:49] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:28, 02:51](1649 MB) - -PASS -- COMPILE 'atmaero_intel' [14:15, 13:08] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:33, 07:01](2943 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:40, 07:35](3013 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:23, 07:37](3021 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:11, 10:04] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:51, 18:59](4487 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:12] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:52, 07:04](3073 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:16, 20:49] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [13:29, 13:38](1696 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:54, 17:06](1808 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:47, 08:54](943 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:46, 14:59](1668 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:16, 21:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:09, 13:20](1684 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:11, 10:49] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:11, 23:47](1709 MB) + +PASS -- COMPILE 's2swa_intel' [17:11, 15:54] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:34, 07:55](3101 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:25, 07:49](3099 MB) +PASS -- TEST 'cpld_restart_p8_intel' [54:56, 04:59](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:34, 08:05](3123 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [54:56, 05:05](3178 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:29, 06:32](3412 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:29, 07:40](3098 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:29, 07:01](3022 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:40, 07:52](3100 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:30, 10:33](3266 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:44, 08:59](3604 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:37, 12:57](4036 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:27, 09:12](4344 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:32, 07:57](3067 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 14:44] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:06, 04:45](1686 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:04, 05:29](1735 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:11, 10:42] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:56, 09:32](3138 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 09:19] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:16, 05:46](1701 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:16] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:55, 05:11](1733 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 13:06] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [25:04, 06:55](2658 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:39, 02:00](2682 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:04, 01:06](2113 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:16, 22:59] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [52:44, 07:49](3098 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:13, 21:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [58:37, 15:04](1701 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:42, 07:18](1002 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:51, 16:56](1683 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:16, 12:50] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:29, 26:15](1709 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:12, 15:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [54:00, 03:42](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [53:23, 02:57](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [52:59, 03:12](1581 MB) +PASS -- TEST 'control_latlon_intel' [51:55, 03:06](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:04, 03:02](1570 MB) +PASS -- TEST 'control_c48_intel' [36:05, 06:36](1608 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:48, 05:38](727 MB) +PASS -- TEST 'control_c192_intel' [58:16, 09:40](1694 MB) +PASS -- TEST 'control_c384_intel' [00:18, 18:04](1987 MB) +PASS -- TEST 'control_c384gdas_intel' [51:41, 14:13](1185 MB) +PASS -- TEST 'control_stochy_intel' [33:36, 01:42](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:26](433 MB) +PASS -- TEST 'control_lndp_intel' [14:29, 01:41](629 MB) +PASS -- TEST 'control_iovr4_intel' [03:33, 02:36](624 MB) +PASS -- TEST 'control_iovr5_intel' [03:50, 02:56](625 MB) +PASS -- TEST 'control_p8_intel' [06:50, 03:44](1608 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:53, 03:24](1608 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:50, 03:29](1611 MB) +PASS -- TEST 'control_restart_p8_intel' [03:43, 02:00](792 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:12](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:06, 02:17](796 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:14, 03:16](1596 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:59, 02:39](1691 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:10, 05:23](1608 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:04, 04:21](1659 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:57, 03:55](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [05:47, 03:49](1614 MB) +PASS -- TEST 'regional_control_intel' [06:13, 04:49](622 MB) +PASS -- TEST 'regional_restart_intel' [03:52, 02:35](790 MB) +PASS -- TEST 'regional_decomp_intel' [06:06, 04:56](620 MB) +PASS -- TEST 'regional_2threads_intel' [04:52, 03:09](762 MB) +PASS -- TEST 'regional_noquilt_intel' [06:01, 05:05](1157 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:31, 05:09](617 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:47, 04:59](621 MB) +PASS -- TEST 'regional_wofs_intel' [08:43, 06:25](1594 MB) + +PASS -- COMPILE 'rrfs_intel' [15:13, 14:51] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [58:40, 06:53](1013 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [55:36, 04:00](1187 MB) +PASS -- TEST 'rap_decomp_intel' [58:40, 07:03](1009 MB) +PASS -- TEST 'rap_2threads_intel' [57:59, 05:57](1094 MB) +PASS -- TEST 'rap_restart_intel' [06:29, 03:42](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [58:46, 06:47](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [58:46, 06:56](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:30, 05:14](883 MB) +PASS -- TEST 'hrrr_control_intel' [55:44, 03:41](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [55:44, 03:50](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [54:36, 03:06](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:22, 01:57](839 MB) +PASS -- TEST 'rrfs_v1beta_intel' [58:47, 06:41](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [59:22, 08:01](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:47, 07:42](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [13:13, 12:10] +PASS -- TEST 'control_csawmg_intel' [10:09, 06:54](694 MB) +PASS -- TEST 'control_ras_intel' [04:33, 03:31](655 MB) + +PASS -- COMPILE 'wam_intel' [12:13, 11:34] +PASS -- TEST 'control_wam_intel' [03:43, 02:35](368 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:14, 17:44] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:38, 03:19](1608 MB) +PASS -- TEST 'regional_control_faster_intel' [07:11, 04:40](619 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 12:44] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:35, 03:02](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:56](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:49, 03:07](787 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:53](789 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:24](828 MB) +PASS -- TEST 'control_ras_debug_intel' [03:39, 02:53](799 MB) +PASS -- TEST 'control_diag_debug_intel' [05:33, 03:18](1648 MB) +PASS -- TEST 'control_debug_p8_intel' [05:34, 03:24](1622 MB) +PASS -- TEST 'regional_debug_intel' [18:35, 16:23](642 MB) +PASS -- TEST 'rap_control_debug_intel' [06:16, 05:02](1172 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:44, 05:20](1170 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:42, 05:02](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:42, 05:36](1176 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 05:41](1172 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:45, 05:42](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:39, 05:38](1172 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 05:43](1172 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:39, 05:40](1174 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:37, 05:37](1172 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:40, 05:55](1172 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 06:25](1170 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:37, 09:25](1171 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:34, 06:15](1169 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:23, 06:22](1174 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:20, 05:21](1172 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:59, 08:44](1173 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:12, 09:37] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [08:57, 05:15](400 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:16, 11:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 03:51](1049 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:41, 06:11](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:31, 03:40](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 05:20](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:08, 02:46](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 03:44](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:05, 04:06](785 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 01:42](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:08, 02:14](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:18, 01:20](1079 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:41, 01:17](977 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:18] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:13, 04:28](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 05:13](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:52](1050 MB) +PASS -- TEST 'conus13km_debug_intel' [16:12, 14:24](1134 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:12, 14:00](810 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:03, 08:12](1120 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 14:21](1200 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 07:36] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 05:08](1069 MB) + +PASS -- COMPILE 'hafsw_intel' [15:12, 13:55] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:35, 05:20](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:57, 04:40](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:36](741 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:56, 11:53](792 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:32, 13:03](799 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:20, 05:24](475 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 06:48](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:25, 03:39](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:40, 08:10](436 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 03:46](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:14, 03:31](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:17, 04:54](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:53, 02:24](404 MB) +PASS -- TEST 'gnv1_nested_intel' [06:29, 04:13](770 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:55] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:07, 13:18](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [25:14, 24:06] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:03, 07:45](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:07, 08:20](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:12, 15:04] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:10, 05:56](786 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:16, 13:02] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:06, 06:12](747 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:29, 06:20](732 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:13, 20:12](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:12, 12:31] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:31, 02:37](759 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:33, 01:36](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:26, 02:30](637 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 02:28](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:28, 02:30](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:29, 02:36](759 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:28, 02:35](762 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:25, 02:28](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:03, 05:58](689 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:08, 05:56](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:36](747 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:34, 04:34](2021 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:31, 04:35](2019 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 06:32] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:37, 05:24](743 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:16, 11:52] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:59, 02:34](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 02:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:37, 01:50](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:50, 02:36](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:58, 01:10](456 MB) + +PASS -- COMPILE 'atml_intel' [18:12, 17:45] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:01, 09:17](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:58, 08:39](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 03:47](835 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:12, 12:31] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:37, 07:11](1656 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 14:01] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:19, 03:07](1649 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 13:50] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:57, 06:26](2943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:56, 06:57](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:11, 07:20](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:28] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:56, 18:30](4489 MB) SYNOPSIS: -Starting Date/Time: 20240516 16:59:51 -Ending Date/Time: 20240516 19:09:07 -Total Time: 02h:10m:32s +Starting Date/Time: 20240520 14:31:01 +Ending Date/Time: 20240520 16:53:32 +Total Time: 02h:23m:33s Compiles Completed: 39/39 Tests Completed: 183/183 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 7e86ac795a..a5b7b7bdd5 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,21 +1,21 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -53ca93c48b032207b4d90354b56c0dbc6c8c4316 +3e15eaa45553e76c6aa00a66b999b6b85d2b5fb3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) - 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) NOTES: @@ -25,370 +25,370 @@ 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-20240516 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2895930 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2036849 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [22:12, 13:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:47, 05:40](3153 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 15:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:20, 17:11](1740 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:27, 17:54](1995 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:19, 08:09](1094 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:19, 19:23](1621 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:12, 16:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:51, 16:52](1722 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:12, 04:40] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:05, 22:42](1653 MB) - -PASS -- COMPILE 's2swa_intel' [22:12, 12:49] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:57, 06:18](3191 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:53, 05:54](3202 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:43, 03:27](3244 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:45, 05:59](3206 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:58, 03:29](3249 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:37, 05:44](3535 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:37, 06:05](3175 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:40, 04:51](3036 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:53, 05:55](3191 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:42, 10:17](3317 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:38, 06:27](3591 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:46, 10:00](4104 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:48, 06:19](4333 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:45, 05:35](3167 MB) - -PASS -- COMPILE 's2sw_intel' [23:12, 12:23] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:35, 04:50](1717 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:46, 04:23](1774 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:12, 04:42] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:25, 08:18](3186 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:12, 04:07] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:25, 05:55](1708 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:12, 11:38] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:28, 04:22](1761 MB) - -PASS -- COMPILE 's2s_intel' [21:12, 11:28] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:00, 09:29](2803 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:02, 02:35](2813 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:04, 01:25](2275 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:12, 17:08] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:00, 05:25](3199 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:36] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:16, 17:18](1754 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 08:08](1144 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:09, 19:51](1660 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:13, 04:12] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:31, 24:50](1683 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:13, 11:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:43, 03:23](687 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 02:52](1580 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:16, 02:58](1589 MB) -PASS -- TEST 'control_latlon_intel' [04:04, 02:54](1578 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:56, 02:56](1571 MB) -PASS -- TEST 'control_c48_intel' [08:46, 07:37](1743 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:24](856 MB) -PASS -- TEST 'control_c192_intel' [12:22, 10:42](1734 MB) -PASS -- TEST 'control_c384_intel' [13:37, 10:50](1991 MB) -PASS -- TEST 'control_c384gdas_intel' [12:56, 08:17](1379 MB) -PASS -- TEST 'control_stochy_intel' [02:32, 01:39](642 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:55, 01:01](488 MB) -PASS -- TEST 'control_lndp_intel' [02:38, 01:34](642 MB) -PASS -- TEST 'control_iovr4_intel' [03:37, 02:32](645 MB) -PASS -- TEST 'control_iovr5_intel' [03:36, 02:28](640 MB) -PASS -- TEST 'control_p8_intel' [05:42, 02:59](1617 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 03:00](1611 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:33, 02:57](1608 MB) -PASS -- TEST 'control_restart_p8_intel' [04:00, 01:39](875 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:43, 02:59](1597 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:09, 01:41](920 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:23, 03:03](1603 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:18, 02:51](1712 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:17, 05:21](1609 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:25, 04:01](1680 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:29, 03:00](1622 MB) -PASS -- TEST 'merra2_thompson_intel' [05:26, 03:18](1614 MB) -PASS -- TEST 'regional_control_intel' [07:02, 05:14](837 MB) -PASS -- TEST 'regional_restart_intel' [03:45, 02:57](1005 MB) -PASS -- TEST 'regional_decomp_intel' [07:01, 05:33](836 MB) -PASS -- TEST 'regional_2threads_intel' [05:07, 03:18](825 MB) -PASS -- TEST 'regional_noquilt_intel' [07:02, 05:13](1348 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:02, 05:11](828 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 05:14](831 MB) -PASS -- TEST 'regional_wofs_intel' [09:50, 06:54](1893 MB) - -PASS -- COMPILE 'rrfs_intel' [11:12, 10:34] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:41, 07:46](1090 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:15, 04:14](1264 MB) -PASS -- TEST 'rap_decomp_intel' [10:38, 08:12](1007 MB) -PASS -- TEST 'rap_2threads_intel' [09:44, 07:27](1170 MB) -PASS -- TEST 'rap_restart_intel' [05:49, 04:03](1085 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:49, 07:58](1090 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:47, 08:14](1018 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:59, 05:53](1120 MB) -PASS -- TEST 'hrrr_control_intel' [05:43, 04:04](1032 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:40, 04:10](1016 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:43, 03:44](1095 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:34, 02:11](985 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:02, 07:38](1080 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:21](1974 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:30, 09:03](2045 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:37] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:44, 06:02](736 MB) -PASS -- TEST 'control_ras_intel' [04:24, 03:18](727 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:12, 03:38] -PASS -- TEST 'control_csawmg_gnu' [09:51, 08:22](533 MB) - -PASS -- COMPILE 'wam_intel' [10:12, 10:08] -PASS -- TEST 'control_wam_intel' [03:23, 02:08](640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:40] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:57, 02:45](1618 MB) -PASS -- TEST 'regional_control_faster_intel' [05:44, 04:45](837 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:43] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:07, 02:36](1577 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:08, 02:33](1587 MB) -PASS -- TEST 'control_stochy_debug_intel' [13:31, 03:04](778 MB) -PASS -- TEST 'control_lndp_debug_intel' [12:34, 02:48](775 MB) -PASS -- TEST 'control_csawmg_debug_intel' [17:07, 04:10](833 MB) -PASS -- TEST 'control_ras_debug_intel' [12:32, 02:49](790 MB) -PASS -- TEST 'control_diag_debug_intel' [15:14, 02:39](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [15:06, 02:50](1608 MB) -PASS -- TEST 'regional_debug_intel' [31:05, 17:50](817 MB) -PASS -- TEST 'rap_control_debug_intel' [15:38, 04:53](1174 MB) -PASS -- TEST 'hrrr_control_debug_intel' [14:36, 04:49](1157 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [15:37, 04:52](1174 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [15:37, 04:51](1175 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:37, 04:55](1173 MB) -PASS -- TEST 'rap_diag_debug_intel' [17:21, 05:04](1253 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:45, 05:03](1173 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:37, 05:03](1168 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:37, 05:01](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:00](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:57](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:28, 04:52](1172 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:55](1166 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:52](1168 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:49](1169 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:51](1169 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 08:33](1176 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:12, 02:46] -PASS -- TEST 'control_csawmg_debug_gnu' [12:51, 02:17](509 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:31] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:24, 04:54](467 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:12, 10:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:10, 03:53](1141 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:42, 06:29](1037 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 03:24](954 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 06:09](1074 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 03:10](943 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:34](910 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:46, 04:52](1017 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:32, 01:53](922 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:12, 12:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:53, 02:05](1178 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:48, 00:55](1099 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:51, 01:15](1095 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:12, 10:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:12](968 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [15:13, 03:32] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:55](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 04:44](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [18:02, 14:18](1180 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:02, 14:35](849 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:55, 08:12](1101 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:53, 14:12](1256 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:12, 03:32] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 04:54](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [22:12, 11:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:15, 04:58](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:01](1099 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:54](815 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 13:35](839 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:34, 15:12](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:37](482 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:28, 06:45](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:43, 02:49](350 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:18, 07:26](448 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:49, 03:43](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:50, 03:40](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 04:07](565 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:28, 01:14](384 MB) -PASS -- TEST 'gnv1_nested_intel' [09:53, 04:23](785 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:12, 03:54] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:52, 12:53](542 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:12, 12:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:06, 09:01](613 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:09, 08:49](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:12, 11:55] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:08, 06:34](706 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:12, 11:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:21, 06:40](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 06:35](793 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:29](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:12, 05:51] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:39](1144 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:40](1105 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:40](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:37](997 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:39](1029 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:40](1129 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:40](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:16](1039 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:21, 06:20](1036 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:42](1147 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:24, 03:53](2441 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:23, 03:50](2440 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:12, 02:57] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:08](1062 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:58] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:39](1121 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:09] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:48](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:53](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:27, 00:48](313 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 11:53] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:12, 04:57](1589 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:04, 04:22](1588 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:15](886 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:26] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:01, 06:16](1580 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:59] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:58, 02:09](1648 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 10:54] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:05, 04:25](3008 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:03, 05:16](3077 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:49, 05:03](3084 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:31] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [32:15, 28:45](4441 MB) - -PASS -- COMPILE 'atm_gnu' [04:11, 03:43] -PASS -- TEST 'control_c48_gnu' [12:48, 11:14](1531 MB) -PASS -- TEST 'control_stochy_gnu' [05:27, 03:39](492 MB) -PASS -- TEST 'control_ras_gnu' [07:25, 04:52](501 MB) -PASS -- TEST 'control_p8_gnu' [07:04, 04:58](1260 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:57, 04:43](1253 MB) -PASS -- TEST 'control_flake_gnu' [13:25, 11:18](537 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:11, 03:40] -PASS -- TEST 'rap_control_gnu' [12:42, 11:13](841 MB) -PASS -- TEST 'rap_decomp_gnu' [12:37, 11:10](842 MB) -PASS -- TEST 'rap_2threads_gnu' [11:35, 10:09](922 MB) -PASS -- TEST 'rap_restart_gnu' [06:45, 05:29](569 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 11:05](844 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:40, 11:09](845 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:49, 08:02](572 MB) -PASS -- TEST 'hrrr_control_gnu' [06:38, 05:41](844 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:33, 05:39](828 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:33, 05:10](915 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:40](841 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:56](561 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:49](652 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:58, 10:37](836 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:43] -PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:39](1266 MB) -PASS -- TEST 'regional_debug_gnu' [11:41, 10:38](554 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:32](849 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:32](860 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:31](824 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:32](850 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:43, 02:44](935 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:24, 04:01](857 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:25, 02:34](850 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:33](846 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:23, 01:32](494 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:22, 01:43](485 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:45, 01:41](1246 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:24, 02:33](859 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:52](862 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 04:21](866 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:12, 01:52] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:40] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:35, 09:22](708 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:00](710 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 08:48](760 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:38](754 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:36, 05:09](694 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:45, 07:01](544 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:37](534 MB) -PASS -- TEST 'conus13km_control_gnu' [05:02, 03:12](868 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:48, 05:29](870 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:55](553 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:23] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:44, 05:47](728 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:12, 03:37] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 02:33](701 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:26, 02:29](703 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:53, 06:49](878 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:48, 07:02](567 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:43, 07:42](878 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 06:57](952 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:41] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:24, 02:37](720 MB) - -PASS -- COMPILE 's2swa_gnu' [15:12, 14:35] - -PASS -- COMPILE 's2s_gnu' [15:12, 14:22] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:13, 06:39](1342 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:37] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:22] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:03, 22:41](1307 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:27] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [18:58, 17:09](1307 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:05] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:23, 03:02](694 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [13:40, 13:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:44, 05:46](3171 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:41, 16:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:46, 17:57](1744 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:58, 17:58](1987 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:03, 08:06](1130 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:08, 20:25](1630 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:13, 16:12] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:34, 18:01](1713 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:30, 05:29] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:04, 23:13](1696 MB) + +PASS -- COMPILE 's2swa_intel' [13:21, 13:21] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [06:49, 05:51](3189 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:58, 06:01](3202 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:35, 03:31](3253 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [06:56, 06:05](3218 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:38, 03:30](3267 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:34, 05:46](3550 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:45, 05:54](3205 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:41, 04:51](3062 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:03, 06:59](3211 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [11:50, 10:03](3343 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:34, 06:12](3632 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:25, 10:05](4106 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:01, 06:20](4353 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:37, 06:43](3152 MB) + +PASS -- COMPILE 's2sw_intel' [12:52, 12:51] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:36, 04:47](1756 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:18, 04:24](1794 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:28, 05:27] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:31, 08:39](3231 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:00, 04:59] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:39, 05:51](1747 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:04, 12:03] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:20, 04:26](1722 MB) + +PASS -- COMPILE 's2s_intel' [12:06, 12:05] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:11, 09:36](2827 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:10, 02:37](2836 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:52, 01:24](2303 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:28, 21:27] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:32](3209 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:07, 16:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:03, 17:12](1736 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:09, 09:05](1180 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:46, 20:53](1679 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:04, 05:04] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:56, 25:06](1714 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:04, 12:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:32, 03:19](708 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 02:54](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:32, 02:58](1594 MB) +PASS -- TEST 'control_latlon_intel' [03:24, 02:56](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:58](1597 MB) +PASS -- TEST 'control_c48_intel' [08:13, 07:44](1762 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:39, 06:26](870 MB) +PASS -- TEST 'control_c192_intel' [11:19, 10:37](1743 MB) +PASS -- TEST 'control_c384_intel' [12:19, 10:45](2022 MB) +PASS -- TEST 'control_c384gdas_intel' [10:38, 08:04](1411 MB) +PASS -- TEST 'control_stochy_intel' [01:50, 01:37](665 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:20, 00:58](511 MB) +PASS -- TEST 'control_lndp_intel' [01:47, 01:34](661 MB) +PASS -- TEST 'control_iovr4_intel' [02:42, 02:28](663 MB) +PASS -- TEST 'control_iovr5_intel' [02:42, 02:28](659 MB) +PASS -- TEST 'control_p8_intel' [03:43, 02:59](1629 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:46, 03:00](1625 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:46, 03:05](1627 MB) +PASS -- TEST 'control_restart_p8_intel' [02:15, 01:38](896 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:37, 02:57](1610 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 02:30](928 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:44, 03:06](1608 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:24, 02:47](1719 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:58, 06:18](1630 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:07, 05:17](1632 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:02, 04:11](1640 MB) +PASS -- TEST 'merra2_thompson_intel' [05:54, 05:06](1612 MB) +PASS -- TEST 'regional_control_intel' [07:07, 06:34](858 MB) +PASS -- TEST 'regional_restart_intel' [03:23, 02:52](1020 MB) +PASS -- TEST 'regional_decomp_intel' [07:30, 06:56](846 MB) +PASS -- TEST 'regional_2threads_intel' [04:08, 03:34](871 MB) +PASS -- TEST 'regional_noquilt_intel' [05:57, 05:24](1366 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:52, 05:20](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:58, 05:25](856 MB) +PASS -- TEST 'regional_wofs_intel' [07:34, 07:04](1904 MB) + +PASS -- COMPILE 'rrfs_intel' [11:08, 11:08] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:08, 08:41](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:11, 04:17](1303 MB) +PASS -- TEST 'rap_decomp_intel' [08:34, 08:10](1030 MB) +PASS -- TEST 'rap_2threads_intel' [07:48, 07:21](1189 MB) +PASS -- TEST 'rap_restart_intel' [04:33, 04:04](1107 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:15, 07:46](1110 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:34, 08:11](1043 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:24, 05:52](1139 MB) +PASS -- TEST 'hrrr_control_intel' [04:30, 04:02](1039 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:30, 04:06](1041 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:02, 03:39](1113 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:37, 02:13](1013 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:10, 07:39](1107 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:40, 09:23](2001 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:24, 09:08](2058 MB) + +PASS -- COMPILE 'csawmg_intel' [10:38, 10:37] +PASS -- TEST 'control_csawmg_intel' [06:38, 06:07](750 MB) +PASS -- TEST 'control_ras_intel' [03:30, 03:16](748 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:28, 04:28] +PASS -- TEST 'control_csawmg_gnu' [08:51, 08:21](545 MB) + +PASS -- COMPILE 'wam_intel' [10:16, 10:16] +PASS -- TEST 'control_wam_intel' [02:19, 02:05](652 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:46, 18:45] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:21, 02:42](1620 MB) +PASS -- TEST 'regional_control_faster_intel' [05:11, 04:44](853 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:51, 06:51] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:48, 03:14](1616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:20, 02:43](1622 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:15, 03:02](821 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:01, 02:48](823 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:45, 04:18](870 MB) +PASS -- TEST 'control_ras_debug_intel' [03:03, 02:52](834 MB) +PASS -- TEST 'control_diag_debug_intel' [03:26, 02:51](1665 MB) +PASS -- TEST 'control_debug_p8_intel' [03:30, 02:59](1626 MB) +PASS -- TEST 'regional_debug_intel' [17:45, 17:17](852 MB) +PASS -- TEST 'rap_control_debug_intel' [05:06, 04:53](1210 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:03, 04:52](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:08, 04:55](1213 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:05, 04:52](1220 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:02, 04:50](1211 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:32, 05:09](1290 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:08, 04:56](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 05:01](1207 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:05, 04:53](1214 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 04:59](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:02, 04:50](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:02, 04:50](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:06, 07:55](1207 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:07, 04:55](1207 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:06, 05:53](1215 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:07, 04:55](1209 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:29, 11:00](1212 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:08, 05:07] +PASS -- TEST 'control_csawmg_debug_gnu' [02:46, 02:14](529 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:47, 03:46] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:10, 05:00](527 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:33, 10:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:41, 03:54](1164 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:51, 06:27](1048 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:48, 03:23](995 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 06:09](1089 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:37, 03:11](968 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:00, 03:37](930 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:24, 04:50](1044 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:17, 01:53](945 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:40, 16:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:51, 02:06](1203 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:54](1120 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:48, 01:14](1115 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:51, 10:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:41, 04:10](990 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:07, 04:06] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:07, 04:53](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:10, 04:56](1084 MB) +PASS -- TEST 'conus13km_debug_intel' [15:16, 14:36](1236 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 15:03](936 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:42, 08:10](1159 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:59, 14:24](1297 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:02, 04:01] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:13, 04:58](1130 MB) + +PASS -- COMPILE 'hafsw_intel' [12:24, 12:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:05, 05:05](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:40, 06:17](1118 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:17, 07:04](830 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:29, 13:26](865 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:29, 15:12](883 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 05:32](499 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:00, 06:54](517 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:15, 02:41](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:10, 07:25](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:23, 03:46](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:16, 03:33](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:57, 04:10](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:34, 01:13](410 MB) +PASS -- TEST 'gnv1_nested_intel' [04:44, 04:08](805 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:25, 04:23] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:17, 13:28](586 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:23, 20:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:40, 08:49](653 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:44, 08:50](738 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:15, 12:14] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:31, 07:36](733 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:31, 11:30] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:36, 07:35](832 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:40, 06:36](823 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:57, 16:16](1221 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:08, 06:08] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:55, 02:43](1143 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:49, 01:39](1106 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:39, 02:32](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:46, 02:38](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:45, 02:37](1012 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:53, 02:44](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:53, 02:45](1128 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:39, 02:32](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:16, 06:11](1057 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:10, 06:08](1046 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:46, 02:41](1144 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:06, 03:56](2493 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 04:03](2488 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [02:53, 02:52] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 06:25](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:19, 06:18] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:46, 02:37](1163 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:07, 01:06] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:49](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:11, 00:55](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:33](323 MB) + +PASS -- COMPILE 'atml_intel' [12:28, 12:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:15, 04:16](1622 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:18, 04:19](1615 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:59, 02:18](902 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 05:10] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:30, 05:44](1596 MB) + +PASS -- COMPILE 'atmw_intel' [11:32, 11:31] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:22, 01:41](1685 MB) + +PASS -- COMPILE 'atmaero_intel' [11:12, 11:11] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:52, 04:04](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:59, 04:54](3087 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:38, 04:59](3112 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:18, 04:16] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:44, 41:00](4461 MB) + +PASS -- COMPILE 'atm_gnu' [05:01, 05:00] +PASS -- TEST 'control_c48_gnu' [11:49, 11:15](1541 MB) +PASS -- TEST 'control_stochy_gnu' [03:42, 03:24](503 MB) +PASS -- TEST 'control_ras_gnu' [05:04, 04:50](514 MB) +PASS -- TEST 'control_p8_gnu' [05:33, 04:43](1263 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:21, 04:36](1266 MB) +PASS -- TEST 'control_flake_gnu' [10:47, 10:33](544 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:58, 04:56] +PASS -- TEST 'rap_control_gnu' [11:21, 10:53](867 MB) +PASS -- TEST 'rap_decomp_gnu' [11:30, 11:03](862 MB) +PASS -- TEST 'rap_2threads_gnu' [10:30, 09:57](944 MB) +PASS -- TEST 'rap_restart_gnu' [06:05, 05:26](589 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:33, 10:56](860 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:39, 11:11](863 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:35, 07:58](593 MB) +PASS -- TEST 'hrrr_control_gnu' [06:05, 05:34](860 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:05, 05:35](848 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 04:58](934 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:11, 05:38](861 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:15, 02:50](573 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:15, 02:48](668 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:19, 10:40](858 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:41, 08:40] +PASS -- TEST 'control_diag_debug_gnu' [02:29, 01:39](1284 MB) +PASS -- TEST 'regional_debug_gnu' [11:50, 11:08](566 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:54, 02:37](867 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:50, 02:34](871 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:49, 02:33](871 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:53, 02:35](871 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:53](953 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 04:03](864 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:54, 02:38](870 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:54, 02:39](829 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:57, 01:40](510 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:00, 01:45](494 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:20, 01:43](1253 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:52, 02:37](870 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:10, 02:54](869 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:10, 04:30](875 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:43, 02:41] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:39, 04:38] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:08, 09:32](719 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:06](718 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:07, 08:36](769 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:15, 04:40](759 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:38, 05:10](722 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:41, 07:05](564 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:02, 02:34](549 MB) +PASS -- TEST 'conus13km_control_gnu' [04:15, 03:17](888 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:34, 05:47](893 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:32, 01:51](570 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:31, 12:29] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:29, 05:49](740 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:24, 08:23] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:53, 02:35](719 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:52, 02:34](719 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:34, 06:52](905 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:48, 07:12](595 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:24, 07:49](917 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:45, 07:11](972 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:28, 08:27] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:54, 02:38](746 MB) + +PASS -- COMPILE 's2swa_gnu' [14:50, 14:46] + +PASS -- COMPILE 's2s_gnu' [14:29, 14:28] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:24, 07:14](1355 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:29, 03:28] + +PASS -- COMPILE 's2sw_pdlib_gnu' [14:31, 14:29] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:12, 22:14](1325 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 03:09] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [16:36, 15:34](1326 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [14:14, 14:13] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:26, 03:14](696 MB) SYNOPSIS: -Starting Date/Time: 20240516 20:50:21 -Ending Date/Time: 20240516 22:43:43 -Total Time: 01h:53m:38s +Starting Date/Time: 20240520 17:14:56 +Ending Date/Time: 20240521 01:54:37 +Total Time: 08h:40m:04s Compiles Completed: 55/55 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 84e8e5b410..03711e7e21 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -53ca93c48b032207b4d90354b56c0dbc6c8c4316 +f911c00436f15ee4ba9f6fd0ef951b8d543d287f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,24 +9,24 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) - cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) + c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) + 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) NOTES: @@ -36,365 +36,365 @@ 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-20240516 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3011761 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2353347 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, 12:00] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:02, 07:38](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:35] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:10, 13:43](1784 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:28, 14:45](2177 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:26, 06:34](1188 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:01, 15:14](1695 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 18:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:29, 13:18](1760 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:15] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:13, 20:24](1733 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 12:21] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:49, 07:54](2084 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:08, 07:38](2076 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:06, 04:16](1963 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:52, 07:39](1976 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:03, 04:21](1745 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 09:00](2498 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:38](2059 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:01, 06:36](1882 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:03, 07:40](2073 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:49, 15:36](2811 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:12, 05:53](2919 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:50, 08:36](3622 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:02, 05:40](3618 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:58, 05:07](2034 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 12:05] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:51, 07:06](1771 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:54, 04:04](1826 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:23] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [07:57, 06:52](2049 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:58] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:59, 04:50](1791 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:11, 10:03] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:53, 04:06](1811 MB) - -PASS -- COMPILE 's2s_intel' [08:10, 07:50] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:41, 07:16](2829 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:44, 02:05](2825 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:42, 01:17](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:11, 11:39] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 07:12](2066 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:17] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:49, 14:01](1814 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:02, 07:02](1268 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:00, 15:26](1728 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 03:35] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:47, 21:41](1766 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 07:51] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:23, 02:50](715 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 02:27](1607 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:39, 02:31](1626 MB) -PASS -- TEST 'control_latlon_intel' [03:31, 02:29](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:32](1606 MB) -PASS -- TEST 'control_c48_intel' [07:35, 06:58](1735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:27, 05:49](861 MB) -PASS -- TEST 'control_c192_intel' [09:43, 08:58](1759 MB) -PASS -- TEST 'control_c384_intel' [11:27, 09:29](2039 MB) -PASS -- TEST 'control_c384gdas_intel' [10:07, 07:10](1525 MB) -PASS -- TEST 'control_stochy_intel' [02:20, 01:28](666 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:25, 00:51](533 MB) -PASS -- TEST 'control_lndp_intel' [02:20, 01:24](672 MB) -PASS -- TEST 'control_iovr4_intel' [02:22, 02:09](659 MB) -PASS -- TEST 'control_iovr5_intel' [02:22, 02:06](659 MB) -PASS -- TEST 'control_p8_intel' [03:50, 02:32](1646 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:56, 02:37](1627 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:53, 02:27](1637 MB) -PASS -- TEST 'control_restart_p8_intel' [02:43, 01:25](918 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:42, 02:30](1627 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:25](974 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:40, 02:33](1621 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:40, 02:20](1729 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:32, 04:23](1642 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:51, 03:22](1715 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:50, 02:30](1646 MB) -PASS -- TEST 'merra2_thompson_intel' [03:54, 02:46](1647 MB) -PASS -- TEST 'regional_control_intel' [05:27, 04:29](959 MB) -PASS -- TEST 'regional_restart_intel' [03:28, 02:31](1100 MB) -PASS -- TEST 'regional_decomp_intel' [05:27, 04:42](944 MB) -PASS -- TEST 'regional_2threads_intel' [03:26, 02:50](912 MB) -PASS -- TEST 'regional_noquilt_intel' [05:26, 04:19](1487 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:27](958 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:30](954 MB) -PASS -- TEST 'regional_wofs_intel' [06:27, 05:40](2087 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 06:43] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:53, 06:32](1194 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:26](1417 MB) -PASS -- TEST 'rap_decomp_intel' [07:33, 06:53](1150 MB) -PASS -- TEST 'rap_2threads_intel' [07:35, 06:18](1379 MB) -PASS -- TEST 'rap_restart_intel' [04:37, 03:24](1139 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:48, 06:26](1202 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:53](1146 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:52, 05:06](1198 MB) -PASS -- TEST 'hrrr_control_intel' [04:36, 03:32](1077 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:37, 03:29](1047 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:45, 03:08](1121 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:20, 01:53](1034 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:58, 06:21](1187 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:25, 07:42](2007 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:26](2164 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 06:36] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:30, 05:16](823 MB) -PASS -- TEST 'control_ras_intel' [03:18, 02:51](819 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 03:53] -PASS -- TEST 'control_csawmg_gnu' [07:32, 06:35](810 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 06:33] -PASS -- TEST 'control_wam_intel' [02:23, 01:47](801 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:27] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:52, 02:23](1634 MB) -PASS -- TEST 'regional_control_faster_intel' [04:27, 04:05](954 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:11, 03:41] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:31, 02:08](1630 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 02:07](1633 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:18, 02:27](826 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:20](826 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:28, 03:23](879 MB) -PASS -- TEST 'control_ras_debug_intel' [03:17, 02:17](833 MB) -PASS -- TEST 'control_diag_debug_intel' [02:44, 02:11](1690 MB) -PASS -- TEST 'control_debug_p8_intel' [03:35, 02:20](1653 MB) -PASS -- TEST 'regional_debug_intel' [14:32, 14:00](899 MB) -PASS -- TEST 'rap_control_debug_intel' [04:19, 03:54](1223 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:50](1217 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:54](1219 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 04:00](1224 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 04:00](1217 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:28, 04:15](1304 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:16, 04:07](1218 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:21, 04:02](1218 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:18, 03:58](1215 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:21, 03:57](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:55](1219 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:19, 03:58](1223 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:19, 06:24](1220 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:54](1214 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 05:12](1213 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:17, 04:07](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:49, 06:48](1219 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 03:11] -PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 01:48](790 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:10, 03:03] ( 855 warnings ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 06:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:14](1278 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:31, 05:32](1159 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:57, 02:57](1030 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:46, 05:10](1283 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:38, 02:37](1046 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:37, 03:04](986 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:51, 04:05](1099 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:21, 01:36](967 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 08:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:38, 01:41](1305 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:31, 00:44](1201 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:29, 01:04](1153 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 06:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:34, 03:45](1074 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:11] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 04:04](1104 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:50](1093 MB) -PASS -- TEST 'conus13km_debug_intel' [12:31, 11:44](1332 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:30, 11:49](995 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:27, 06:43](1240 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:29, 11:37](1408 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:28] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:28, 04:00](1154 MB) - -PASS -- COMPILE 'hafsw_intel' [10:16, 09:43] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:12, 05:23](869 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:29](1271 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:15, 06:19](963 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:04, 13:56](977 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:09, 14:59](1007 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:56, 05:24](608 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 07:02](612 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:47](433 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:54](549 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:52](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 03:45](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:47, 04:54](682 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:24](448 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [03:10, 03:02] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:44, 11:22](628 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:13, 10:06] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:51, 16:28](769 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:51, 16:44](845 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:13, 09:57] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:55, 10:05](831 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:11, 10:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:06, 05:21](967 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:00, 05:24](921 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:22](1343 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:15] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:15, 02:09](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:16](1112 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:14, 02:06](1011 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 02:10](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:07](1011 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:11](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:08](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:02](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:53, 04:57](1160 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:53, 04:54](1158 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:08](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:16, 03:03](2451 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2315 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:55] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:10](1056 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:56] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:08](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:42] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:57](338 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:20, 00:52](557 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:33](570 MB) - -PASS -- COMPILE 'atml_intel' [09:11, 08:24] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:05, 05:46](1637 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:02, 05:49](1634 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:37, 02:52](953 MB) - -PASS -- COMPILE 'atml_debug_intel' [03:16, 03:02] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:56, 04:41](1661 MB) - -PASS -- COMPILE 'atmw_intel' [10:15, 09:20] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:35](1689 MB) - -PASS -- COMPILE 'atmaero_intel' [08:15, 07:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:54, 03:31](1800 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:14](1804 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:41, 04:16](1812 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:11, 02:36] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:21, 16:43](4576 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 04:16] -PASS -- TEST 'control_c48_gnu' [10:37, 09:23](1559 MB) -PASS -- TEST 'control_stochy_gnu' [03:22, 02:18](728 MB) -PASS -- TEST 'control_ras_gnu' [04:18, 03:39](740 MB) -PASS -- TEST 'control_p8_gnu' [04:47, 03:30](1514 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:30](1515 MB) -PASS -- TEST 'control_flake_gnu' [05:19, 04:18](799 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:10, 04:02] -PASS -- TEST 'rap_control_gnu' [08:32, 07:38](1089 MB) -PASS -- TEST 'rap_decomp_gnu' [08:33, 07:44](1087 MB) -PASS -- TEST 'rap_2threads_gnu' [07:47, 07:03](1149 MB) -PASS -- TEST 'rap_restart_gnu' [04:38, 03:58](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:46, 07:42](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 07:46](1088 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:40, 05:42](885 MB) -PASS -- TEST 'hrrr_control_gnu' [04:53, 04:03](1072 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:35, 04:12](1141 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:35, 03:34](1041 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:35, 04:10](1071 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:21, 02:02](883 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:19, 02:00](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:53, 07:37](1082 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 05:11] -PASS -- TEST 'control_diag_debug_gnu' [01:34, 01:09](1626 MB) -PASS -- TEST 'regional_debug_gnu' [07:28, 06:21](927 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:13](1100 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:17, 02:01](1091 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 02:09](1099 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:17, 02:03](1099 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:10](1272 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:08](1097 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:18, 01:59](1098 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:18, 02:01](1095 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:10](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:21](730 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:30, 01:40](1504 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:01](1100 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 02:12](1106 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:49, 03:15](1108 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:34] -PASS -- TEST 'control_wam_debug_gnu' [02:25, 01:54](498 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 04:00] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:34, 07:12](961 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 03:43](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:46, 06:39](995 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:37, 03:27](888 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:36, 03:46](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:43, 05:22](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:18, 01:57](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:36, 02:27](1265 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:29, 01:07](1172 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:30, 01:26](932 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 08:08] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:29, 04:17](990 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:10, 05:03] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:59](977 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:17, 01:51](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:22](1280 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 05:38](968 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:16](1194 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:27, 05:20](1350 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:11, 05:26] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:19, 01:57](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [16:11, 15:23] - -PASS -- COMPILE 's2s_gnu' [16:11, 15:17] - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:23] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:19] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 02:52] - -PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:13] +PASS -- COMPILE 's2swa_32bit_intel' [13:17, 12:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:30, 07:47](1894 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:18, 20:45] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:24, 13:26](1758 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:50, 14:01](2174 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:25, 06:44](1185 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:24, 15:12](1690 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:18, 20:35] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:39, 13:02](1760 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:16, 04:11] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:49, 20:56](1735 MB) + +PASS -- COMPILE 's2swa_intel' [14:17, 13:26] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:20, 07:45](2084 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:35, 07:38](2077 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:22, 04:12](1969 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:14, 07:44](1991 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:29, 04:25](1732 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 08:56](2495 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:13, 07:38](2072 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:26, 06:25](1878 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:33, 07:42](2091 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:20, 15:19](2809 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:53, 05:44](2929 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:50, 09:06](3639 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:28, 05:21](3622 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:21, 05:06](2024 MB) + +PASS -- COMPILE 's2sw_intel' [12:16, 11:45] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:16, 07:18](1776 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:23, 04:16](1822 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:17, 07:30] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [08:33, 06:59](2067 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:17, 06:40] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:19, 04:55](1786 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:16, 10:45] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:31, 04:06](1822 MB) + +PASS -- COMPILE 's2s_intel' [11:17, 10:52] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:02, 07:17](2819 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:59, 02:05](2828 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:05, 01:07](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:13, 14:05] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:31, 07:24](2060 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:35] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:11, 13:54](1807 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:24, 06:40](1291 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:22, 15:19](1739 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:24] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:10, 21:46](1772 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:18, 09:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:38, 02:52](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:55, 02:30](1609 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:59, 02:34](1611 MB) +PASS -- TEST 'control_latlon_intel' [03:50, 02:30](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:57, 02:32](1604 MB) +PASS -- TEST 'control_c48_intel' [07:59, 07:02](1751 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:46, 05:43](865 MB) +PASS -- TEST 'control_c192_intel' [10:11, 09:06](1750 MB) +PASS -- TEST 'control_c384_intel' [11:55, 09:11](2039 MB) +PASS -- TEST 'control_c384gdas_intel' [10:50, 07:13](1539 MB) +PASS -- TEST 'control_stochy_intel' [02:41, 01:24](667 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:28, 00:53](549 MB) +PASS -- TEST 'control_lndp_intel' [02:37, 01:26](664 MB) +PASS -- TEST 'control_iovr4_intel' [02:36, 02:06](677 MB) +PASS -- TEST 'control_iovr5_intel' [02:28, 02:07](678 MB) +PASS -- TEST 'control_p8_intel' [04:00, 02:35](1641 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:07, 02:36](1642 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:06, 02:28](1650 MB) +PASS -- TEST 'control_restart_p8_intel' [03:01, 01:28](927 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:52, 02:33](1631 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:00, 01:25](984 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:46, 02:40](1627 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:25](1725 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:39, 04:25](1642 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:04, 03:29](1715 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:01, 02:37](1655 MB) +PASS -- TEST 'merra2_thompson_intel' [04:06, 02:50](1652 MB) +PASS -- TEST 'regional_control_intel' [05:36, 04:39](961 MB) +PASS -- TEST 'regional_restart_intel' [03:40, 02:33](1106 MB) +PASS -- TEST 'regional_decomp_intel' [05:34, 04:59](951 MB) +PASS -- TEST 'regional_2threads_intel' [03:34, 02:56](924 MB) +PASS -- TEST 'regional_noquilt_intel' [05:41, 04:28](1495 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:41, 04:29](955 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:32, 04:32](962 MB) +PASS -- TEST 'regional_wofs_intel' [06:32, 05:38](2100 MB) + +PASS -- COMPILE 'rrfs_intel' [09:20, 08:21] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:42, 06:41](1205 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 03:31](1401 MB) +PASS -- TEST 'rap_decomp_intel' [07:41, 06:49](1128 MB) +PASS -- TEST 'rap_2threads_intel' [07:03, 06:06](1372 MB) +PASS -- TEST 'rap_restart_intel' [05:08, 03:30](1144 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:54, 06:39](1203 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:46, 06:51](1146 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:03, 04:56](1222 MB) +PASS -- TEST 'hrrr_control_intel' [04:48, 03:25](1061 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:41, 03:31](1047 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:49, 03:03](1127 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:24, 01:53](1026 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:18](1196 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:28, 07:37](2012 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:30, 07:28](2180 MB) + +PASS -- COMPILE 'csawmg_intel' [08:10, 07:31] +PASS -- TEST 'control_csawmg_intel' [06:58, 05:21](806 MB) +PASS -- TEST 'control_ras_intel' [03:46, 02:57](810 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:16, 04:25] +PASS -- TEST 'control_csawmg_gnu' [07:55, 06:27](811 MB) + +PASS -- COMPILE 'wam_intel' [07:12, 07:00] +PASS -- TEST 'control_wam_intel' [02:35, 01:51](782 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 14:18] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:09, 02:17](1639 MB) +PASS -- TEST 'regional_control_faster_intel' [04:40, 04:07](963 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:13] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:12](1643 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:40, 02:07](1619 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:24, 02:30](839 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:23, 02:16](827 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:34, 03:26](883 MB) +PASS -- TEST 'control_ras_debug_intel' [03:21, 02:25](843 MB) +PASS -- TEST 'control_diag_debug_intel' [03:41, 02:16](1692 MB) +PASS -- TEST 'control_debug_p8_intel' [03:40, 02:24](1654 MB) +PASS -- TEST 'regional_debug_intel' [15:41, 14:19](881 MB) +PASS -- TEST 'rap_control_debug_intel' [04:23, 04:01](1225 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:23, 03:56](1213 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:25, 04:00](1216 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:22, 04:00](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:27, 04:00](1224 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:31, 04:10](1309 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:23, 04:02](1224 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:20, 04:07](1216 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:04](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:23, 04:04](1223 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:24, 03:58](1212 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:02](1221 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:32](1228 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 03:55](1219 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:16](1212 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:23, 04:04](1231 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:00, 06:48](1223 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 05:07] +PASS -- TEST 'control_csawmg_debug_gnu' [02:39, 01:45](793 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:40] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:13, 07:37] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:54, 03:17](1279 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:42, 05:30](1134 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:54, 02:56](1026 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:53, 04:59](1288 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:51, 02:43](1039 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:46, 03:06](974 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:02, 04:10](1099 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:38](966 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:48, 01:47](1313 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:39, 00:46](1206 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:36, 01:05](1158 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 07:42] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 03:44](1101 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:23] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:22, 03:57](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 03:53](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [12:50, 11:59](1341 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:43, 12:02](1001 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:38, 06:38](1248 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:46, 11:35](1424 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:25, 04:00](1159 MB) + +PASS -- COMPILE 'hafsw_intel' [11:11, 10:20] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:10, 05:26](878 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:25, 04:58](1281 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:17](958 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 14:02](979 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 15:10](997 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:57, 05:23](604 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:32, 06:52](616 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:52, 02:41](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 07:45](576 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:48, 03:47](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:43, 03:47](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:55, 04:52](679 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:34](454 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:54] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:48, 11:16](637 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:16, 16:08] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:17, 16:42](743 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:29, 16:52](848 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:12, 10:16] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:58, 10:14](838 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:10, 10:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:11, 05:20](958 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:07, 05:25](927 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:52, 16:24](1365 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:16, 06:46] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:20, 02:09](1146 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:24](1104 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:19, 02:06](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:20, 02:09](1011 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:18, 02:06](1007 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:11](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:13](1135 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:19, 02:04](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:03, 05:04](1150 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:01, 04:55](1147 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:15, 02:09](1159 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:18, 03:03](2384 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:21, 03:03](2378 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 04:00] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:20, 05:17](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:45] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:14](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:55] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:38, 00:50](338 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:29, 00:47](560 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:32](570 MB) + +PASS -- COMPILE 'atml_intel' [09:11, 09:09] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:28, 05:05](1654 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:27, 05:09](1646 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:41](947 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:15] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:23, 04:36](1657 MB) + +PASS -- COMPILE 'atmw_intel' [10:12, 10:09] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:13, 01:35](1684 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 08:00] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:02, 03:32](1786 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:07, 04:20](1814 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:56, 04:20](1813 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:23] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:52, 16:37](4601 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 05:31] +PASS -- TEST 'control_c48_gnu' [11:11, 09:31](1572 MB) +PASS -- TEST 'control_stochy_gnu' [03:28, 02:18](729 MB) +PASS -- TEST 'control_ras_gnu' [04:23, 03:36](731 MB) +PASS -- TEST 'control_p8_gnu' [05:04, 03:38](1519 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:00, 03:27](1516 MB) +PASS -- TEST 'control_flake_gnu' [05:22, 04:21](812 MB) + +PASS -- COMPILE 'rrfs_gnu' [07:10, 06:21] +PASS -- TEST 'rap_control_gnu' [09:27, 07:40](1086 MB) +PASS -- TEST 'rap_decomp_gnu' [08:56, 07:46](1081 MB) +PASS -- TEST 'rap_2threads_gnu' [08:07, 07:05](1157 MB) +PASS -- TEST 'rap_restart_gnu' [04:57, 03:52](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:05, 07:39](1083 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:25, 07:52](1093 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:26, 05:40](882 MB) +PASS -- TEST 'hrrr_control_gnu' [05:05, 04:07](1067 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:50, 03:56](1134 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:49, 03:38](1048 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:49, 03:56](1069 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:32, 02:04](876 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:35, 02:02](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:28, 07:38](1079 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [13:13, 12:49] +PASS -- TEST 'control_diag_debug_gnu' [02:43, 01:16](1627 MB) +PASS -- TEST 'regional_debug_gnu' [08:04, 06:25](934 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:23, 02:02](1098 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:23, 02:00](1093 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:25, 02:06](1094 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:24, 02:04](1099 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:28, 02:10](1272 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:24, 03:07](1097 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:22, 02:04](1101 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:23, 02:04](1094 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:29, 01:11](727 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:22, 01:23](726 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:23](1506 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:44, 02:12](1100 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:14, 02:12](1103 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 03:21](1105 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:59] +PASS -- TEST 'control_wam_debug_gnu' [02:45, 02:01](498 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:30] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:40, 07:14](965 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:37, 03:44](954 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:59, 06:39](997 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:16, 03:32](877 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:58, 04:01](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:09, 05:28](861 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:27, 02:00](856 MB) +PASS -- TEST 'conus13km_control_gnu' [04:26, 02:30](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:32, 01:03](1172 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:34, 01:27](930 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:13, 13:51] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:44, 04:24](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:11, 11:17] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:49, 01:59](979 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:37, 01:51](971 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:42, 05:27](1280 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:42, 05:31](974 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:55, 05:21](1196 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:50, 05:27](1360 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:13, 12:10] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:46, 01:56](1003 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 17:08] + +PASS -- COMPILE 's2s_gnu' [17:12, 17:01] + +PASS -- COMPILE 's2swa_debug_gnu' [12:11, 11:37] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 17:50] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:16, 10:33] + +PASS -- COMPILE 'datm_cdeps_gnu' [15:16, 14:24] SYNOPSIS: -Starting Date/Time: 20240516 23:22:16 -Ending Date/Time: 20240517 00:34:31 -Total Time: 01h:12m:41s +Starting Date/Time: 20240520 23:07:45 +Ending Date/Time: 20240521 00:24:36 +Total Time: 01h:18m:01s Compiles Completed: 55/55 Tests Completed: 238/238 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 6881400186..6eb22c8407 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -53ca93c48b032207b4d90354b56c0dbc6c8c4316 +3e15eaa45553e76c6aa00a66b999b6b85d2b5fb3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,24 +9,24 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) - cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) + c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) + 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) NOTES: @@ -36,249 +36,318 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240516 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_599589 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3280303 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [39:14, 39:04] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 07:36](1773 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:15, 54:59] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:22, 20:44](1679 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:38, 22:19](1879 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:34, 10:27](994 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:44, 23:53](1624 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [52:15, 52:11] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:54, 20:23](1654 MB) - -PASS -- COMPILE 's2swa_intel' [40:14, 39:24] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:38, 07:54](1816 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:06, 07:59](1810 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:31, 04:31](1706 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:41, 07:57](1835 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:10, 04:38](1729 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:32, 07:31](2266 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:30, 07:59](1823 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:54, 07:07](1768 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:12, 08:02](1811 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:09, 07:34](1770 MB) - -PASS -- COMPILE 's2sw_intel' [38:13, 37:21] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:36, 06:00](1662 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:56, 05:50](1711 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:33] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:52, 10:35](1848 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:44] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:31, 07:28](1679 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:39] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:55, 05:49](1701 MB) - -PASS -- COMPILE 's2s_intel' [32:12, 31:50] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:14, 12:41](2796 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:12, 03:31](2793 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:19, 01:56](2273 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:43] ( 1608 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:17, 07:23](1826 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:13] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:57, 21:00](1682 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:08, 10:22](1034 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:49, 24:06](1657 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:00] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:45, 32:08](1691 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [35:14, 34:48] ( 1 warnings 1151 remarks ) -PASS -- TEST 'control_flake_intel' [06:31, 04:30](647 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:35, 03:58](1542 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:43, 04:09](1538 MB) -PASS -- TEST 'control_latlon_intel' [06:30, 03:55](1541 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:41, 04:07](1548 MB) -PASS -- TEST 'control_c48_intel' [14:39, 11:57](1734 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:58, 10:11](843 MB) -PASS -- TEST 'control_c192_intel' [16:55, 14:19](1678 MB) -PASS -- TEST 'control_c384_intel' [23:07, 18:05](1827 MB) -PASS -- TEST 'control_c384gdas_intel' [20:32, 13:34](1018 MB) -PASS -- TEST 'control_stochy_intel' [03:31, 02:22](602 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:31, 01:19](432 MB) -PASS -- TEST 'control_lndp_intel' [04:33, 02:08](601 MB) -PASS -- TEST 'control_iovr4_intel' [04:35, 03:32](594 MB) -PASS -- TEST 'control_iovr5_intel' [04:35, 03:28](600 MB) -PASS -- TEST 'control_p8_intel' [10:15, 03:56](1584 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:58, 04:01](1578 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:19, 03:58](1584 MB) -PASS -- TEST 'control_restart_p8_intel' [04:27, 02:22](813 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:00, 03:54](1556 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:36, 02:18](839 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:18, 04:04](1569 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:57, 03:41](1666 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:37, 07:07](1572 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:28, 05:13](1632 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:17, 04:09](1584 MB) -PASS -- TEST 'merra2_thompson_intel' [10:38, 04:23](1580 MB) -PASS -- TEST 'regional_control_intel' [13:28, 07:22](751 MB) -PASS -- TEST 'regional_restart_intel' [04:46, 03:52](934 MB) -PASS -- TEST 'regional_decomp_intel' [14:27, 07:52](762 MB) -PASS -- TEST 'regional_2threads_intel' [06:28, 04:28](752 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [13:34, 07:28](764 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:28, 07:24](762 MB) - -PASS -- COMPILE 'rrfs_intel' [34:14, 33:37] ( 3 warnings 1119 remarks ) -PASS -- TEST 'rap_control_intel' [13:12, 10:06](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:23, 05:44](1219 MB) -PASS -- TEST 'rap_decomp_intel' [14:16, 10:42](985 MB) -PASS -- TEST 'rap_2threads_intel' [11:45, 09:41](1082 MB) -PASS -- TEST 'rap_restart_intel' [07:40, 05:16](981 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:41, 10:06](995 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:05, 10:53](982 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 07:37](998 MB) -PASS -- TEST 'hrrr_control_intel' [07:46, 05:19](996 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:18, 05:28](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:17, 04:43](1060 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:29, 02:48](926 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:47, 10:00](995 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:37, 12:33](1937 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:38, 12:05](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [32:14, 31:32] ( 1 warnings 1096 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:47, 08:03](691 MB) -PASS -- TEST 'control_ras_intel' [05:26, 04:29](658 MB) - -PASS -- COMPILE 'wam_intel' [30:14, 30:07] ( 982 remarks ) -PASS -- TEST 'control_wam_intel' [03:27, 02:45](501 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [32:13, 31:57] ( 1295 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:58, 03:36](1583 MB) -PASS -- TEST 'regional_control_faster_intel' [07:55, 06:40](762 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:37] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:04, 03:20](1556 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:09, 03:18](1550 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:29, 03:46](765 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:30, 03:22](764 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:00, 05:18](807 MB) -PASS -- TEST 'control_ras_debug_intel' [04:29, 03:28](778 MB) -PASS -- TEST 'control_diag_debug_intel' [07:11, 03:23](1624 MB) -PASS -- TEST 'control_debug_p8_intel' [05:11, 03:36](1588 MB) -PASS -- TEST 'regional_debug_intel' [26:08, 21:45](782 MB) -PASS -- TEST 'rap_control_debug_intel' [06:32, 06:02](1148 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:32, 05:58](1147 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:32, 06:04](1141 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:30, 06:06](1149 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 06:03](1152 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:39, 06:24](1237 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:11](1152 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 06:10](1154 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:29, 06:07](1150 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:27, 06:06](1151 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:27, 05:59](1150 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:05](1148 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:30, 09:58](1149 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 06:00](1143 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:21](1150 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:05](1145 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:37, 10:28](1157 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:05] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:25, 06:09](447 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:13, 30:12] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:18, 05:22](1080 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:06, 08:27](902 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:17, 04:28](867 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:30, 07:57](944 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:19, 04:02](907 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:51, 04:43](858 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:34, 06:20](905 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:23](856 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:13, 42:51] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:17, 03:04](1108 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:43](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:55, 02:02](1021 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:46] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:26, 05:33](914 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:59](1031 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 05:55](1029 MB) -PASS -- TEST 'conus13km_debug_intel' [21:05, 18:25](1140 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:04, 18:35](852 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:56, 10:42](1082 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:26](1203 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:10] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:08](1068 MB) - -PASS -- COMPILE 'hafsw_intel' [36:13, 35:16] ( 1 warnings 1430 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:26, 07:11](710 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:34, 06:38](1087 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:00, 09:46](772 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [20:33, 16:27](797 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:48, 18:31](826 MB) -PASS -- TEST 'gnv1_nested_intel' [07:34, 05:38](776 MB) - -PASS -- COMPILE 'hafs_all_intel' [32:12, 31:51] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:47, 08:49](768 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:49, 08:51](760 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:04] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 03:38](1065 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:14](1032 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:33](921 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:37](939 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:37](926 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:41](1065 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:39](1060 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:32](929 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:31, 07:55](890 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:27, 08:11](843 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:38](1051 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:08](2389 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:11](2337 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 07:57](1010 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:02] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:35](1064 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:42] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:43](234 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:32, 01:27](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 01:18](254 MB) - -PASS -- COMPILE 'atml_intel' [35:14, 34:25] ( 8 warnings 1189 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:08, 08:49](1598 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:01, 08:47](1611 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 04:31](865 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:15] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:02, 07:39](1625 MB) - -PASS -- COMPILE 'atmw_intel' [33:13, 32:30] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:43, 02:23](1608 MB) - -PASS -- COMPILE 'atmaero_intel' [31:12, 30:31] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:37, 05:22](1696 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [13:41, 06:25](1729 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:19, 06:32](1731 MB) +PASS -- COMPILE 's2swa_32bit_intel' [42:15, 41:40] ( 1 warnings 1382 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:20, 11:44](1754 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:16, 49:28] ( 1 warnings 1426 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [38:25, 24:07](1652 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:37, 26:02](1879 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:31, 12:07](990 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:54, 27:58](1625 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:16, 49:44] ( 1 warnings 1423 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [36:04, 22:35](1647 MB) + +PASS -- COMPILE 's2swa_intel' [42:15, 41:40] ( 1380 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:58, 13:08](1813 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:19, 12:52](1828 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:36, 07:11](1717 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [23:59, 12:40](1815 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:36, 07:31](1749 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:59, 12:30](2249 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [23:58, 12:23](1821 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [23:58, 12:24](1796 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [24:19, 12:46](1839 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [23:13, 11:26](1789 MB) + +PASS -- COMPILE 's2sw_intel' [40:15, 39:00] ( 1278 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:16, 07:54](1660 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:24, 08:59](1710 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:41] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:14, 11:35](1830 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:12, 06:02] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:43, 07:46](1678 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [45:18, 35:07] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:11, 07:35](1674 MB) + +PASS -- COMPILE 's2s_intel' [41:16, 36:04] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:25, 13:09](2800 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:27, 04:09](2801 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:29, 02:15](2270 MB) + +PASS -- COMPILE 's2swa_faster_intel' [39:23, 33:59] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:16, 10:15](1812 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [53:17, 48:20] ( 1338 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:11, 25:39](1679 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:41, 13:16](1038 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:05, 28:28](1657 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:11, 07:20] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:13, 32:56](1690 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [40:18, 39:07] ( 1 warnings 1147 remarks ) +PASS -- TEST 'control_flake_intel' [06:44, 05:30](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [16:17, 05:10](1548 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:28, 04:51](1547 MB) +PASS -- TEST 'control_latlon_intel' [15:04, 05:03](1540 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:34, 04:39](1548 MB) +PASS -- TEST 'control_c48_intel' [17:16, 11:57](1734 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:07, 10:21](847 MB) +PASS -- TEST 'control_c192_intel' [33:45, 17:21](1680 MB) +PASS -- TEST 'control_c384_intel' [54:25, 26:14](1811 MB) +PASS -- TEST 'control_c384gdas_intel' [42:36, 20:57](1016 MB) +PASS -- TEST 'control_stochy_intel' [10:51, 03:19](601 MB) +PASS -- TEST 'control_stochy_restart_intel' [16:53, 01:42](430 MB) +PASS -- TEST 'control_lndp_intel' [10:51, 03:17](603 MB) +PASS -- TEST 'control_iovr4_intel' [11:51, 04:38](592 MB) +PASS -- TEST 'control_iovr5_intel' [05:49, 04:14](600 MB) +PASS -- TEST 'control_p8_intel' [15:47, 05:31](1567 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [28:39, 06:01](1570 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [15:04, 05:57](1577 MB) +PASS -- TEST 'control_restart_p8_intel' [14:27, 02:46](814 MB) +PASS -- TEST 'control_noqr_p8_intel' [14:54, 05:38](1563 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [15:36, 02:44](841 MB) +PASS -- TEST 'control_decomp_p8_intel' [19:53, 04:35](1564 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:52, 04:25](1664 MB) +PASS -- TEST 'control_p8_lndp_intel' [25:26, 09:45](1563 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [19:10, 05:48](1630 MB) +PASS -- TEST 'control_p8_mynn_intel' [19:08, 04:29](1582 MB) +PASS -- TEST 'merra2_thompson_intel' [17:20, 05:32](1588 MB) +PASS -- TEST 'regional_control_intel' [26:06, 11:15](761 MB) +PASS -- TEST 'regional_restart_intel' [10:07, 04:54](941 MB) +PASS -- TEST 'regional_decomp_intel' [27:14, 11:32](767 MB) +PASS -- TEST 'regional_2threads_intel' [10:07, 06:53](762 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [28:33, 09:46](768 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [27:57, 08:54](764 MB) + +PASS -- COMPILE 'rrfs_intel' [36:14, 35:59] ( 3 warnings 1114 remarks ) +PASS -- TEST 'rap_control_intel' [23:28, 13:48](992 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:58, 06:25](1210 MB) +PASS -- TEST 'rap_decomp_intel' [22:45, 14:15](978 MB) +PASS -- TEST 'rap_2threads_intel' [22:46, 12:44](1082 MB) +PASS -- TEST 'rap_restart_intel' [08:46, 06:59](988 MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:45, 13:06](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:09, 13:56](984 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [12:06, 09:57](995 MB) +PASS -- TEST 'hrrr_control_intel' [14:28, 05:55](983 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:27, 06:36](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:24, 05:56](1054 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:02, 04:08](921 MB) +PASS -- TEST 'rrfs_v1beta_intel' [23:23, 13:04](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [21:56, 16:08](1933 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:58, 16:08](1934 MB) + +PASS -- COMPILE 'csawmg_intel' [34:13, 33:21] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [16:16, 10:21](692 MB) +PASS -- TEST 'control_ras_intel' [10:58, 05:35](670 MB) + +PASS -- COMPILE 'wam_intel' [32:15, 31:22] ( 981 remarks ) +PASS -- TEST 'control_wam_intel' [04:29, 04:05](504 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [23:22, 14:18] ( 1298 remarks ) +PASS -- TEST 'control_p8_faster_intel' [14:22, 04:48](1571 MB) +PASS -- TEST 'regional_control_faster_intel' [18:19, 09:42](765 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:41] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:14, 04:30](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:17, 03:24](1560 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 04:06](765 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:38, 03:36](764 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:04, 05:46](810 MB) +PASS -- TEST 'control_ras_debug_intel' [04:28, 03:41](777 MB) +PASS -- TEST 'control_diag_debug_intel' [05:05, 03:37](1629 MB) +PASS -- TEST 'control_debug_p8_intel' [06:23, 03:49](1601 MB) +PASS -- TEST 'regional_debug_intel' [24:07, 22:34](785 MB) +PASS -- TEST 'rap_control_debug_intel' [07:36, 06:24](1152 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:26, 06:36](1143 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:41, 06:15](1157 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 06:34](1152 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 06:35](1155 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:43, 07:31](1234 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:44, 07:02](1153 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 06:45](1153 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:34, 06:41](1149 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:42, 06:38](1153 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:57, 06:09](1151 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 06:43](1150 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:38, 10:24](1151 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:43, 06:05](1147 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:33, 07:35](1155 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:38, 06:16](1158 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:49, 10:59](1156 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 04:54] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [10:47, 06:33](451 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:21, 31:21] ( 3 warnings 1027 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:59, 07:53](1085 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:04, 12:20](904 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:28, 06:44](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:32, 11:32](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:32, 07:13](916 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:28, 07:24](855 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:00, 09:38](905 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:28, 02:46](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:20, 07:44] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [15:18, 02:59](1102 MB) +PASS -- TEST 'conus13km_2threads_intel' [10:59, 01:30](1048 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [10:58, 01:42](1023 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:15, 31:11] ( 3 warnings 1047 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:56, 08:06](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:13, 05:57] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:32, 06:22](1030 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:35, 06:07](1029 MB) +PASS -- TEST 'conus13km_debug_intel' [23:16, 18:34](1148 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:20, 19:32](859 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:05, 11:51](1092 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:06, 18:32](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:21] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:06, 06:34](1071 MB) + +PASS -- COMPILE 'hafsw_intel' [40:17, 39:36] ( 1 warnings 1426 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [54:58, 07:15](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:50, 10:50](1090 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [04:32, 09:22](754 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [10:08, 16:23](804 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:37, 18:21](822 MB) +PASS -- TEST 'gnv1_nested_intel' [54:08, 05:49](770 MB) + +PASS -- COMPILE 'hafs_all_intel' [36:16, 35:11] ( 1267 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [21:46, 11:36](772 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:58, 09:57](752 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:43] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 04:04](1065 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:32, 03:16](1030 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:34, 03:55](928 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 04:09](920 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 04:12](921 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:34, 04:21](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:26, 04:10](1082 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:34, 04:19](931 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:40, 09:19](892 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:44, 08:33](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:26, 04:18](1063 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 06:01](2332 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:31, 07:04](2297 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:59] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:27, 08:23](1005 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:37] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [10:35, 03:56](1066 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:11, 02:16] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:10, 02:54](234 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 02:24](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [25:51, 01:05](252 MB) + +PASS -- COMPILE 'atml_intel' [49:19, 42:49] ( 8 warnings 1185 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [26:58, 08:26](1606 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [27:04, 08:27](1609 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:44, 04:36](872 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:13, 07:47] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [29:13, 08:23](1627 MB) + +FAILED: UNABLE TO COMPILE -- COMPILE 'atmw_intel' [, ] +FAILED: UNABLE TO START RUN -- TEST 'atmwav_control_noaero_p8_intel' [, ]( MB) + +PASS -- COMPILE 'atmaero_intel' [35:16, 34:27] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [26:46, 05:19](1701 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [27:45, 06:26](1731 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:25, 06:30](1731 MB) SYNOPSIS: -Starting Date/Time: 20240516 20:51:38 -Ending Date/Time: 20240517 00:25:18 -Total Time: 03h:34m:17s -Compiles Completed: 34/34 -Tests Completed: 162/162 +Starting Date/Time: 20240520 17:18:39 +Ending Date/Time: 20240521 00:51:01 +Total Time: 07h:33m:04s +Compiles Completed: 33/34 +Tests Completed: 161/162 +Failed Compiles: +* COMPILE atmw_intel: FAILED: UNABLE TO COMPILE +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2205/ufs-weather-model/tests/logs/log_jet/compile_atmw_intel.log +Failed Tests: +* TEST atmwav_control_noaero_p8_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +f911c00436f15ee4ba9f6fd0ef951b8d543d287f + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) + c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) + 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_535370 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-n) - RUN SINGLE TEST: atmwav_control_noaero_p8 +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atmw_intel' [36:13, 35:24] ( 1259 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:05, 02:35](1592 MB) + +SYNOPSIS: +Starting Date/Time: 20240521 03:46:08 +Ending Date/Time: 20240521 04:29:59 +Total Time: 00h:44m:14s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index d4e6cc7309..37f038bdcb 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -53ca93c48b032207b4d90354b56c0dbc6c8c4316 +a07258abd88d803c7ffa89a8fef9657780d579df Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,24 +9,24 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) - cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) + c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) + 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) NOTES: @@ -36,293 +36,287 @@ 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-20240516 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_400334 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221858 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:52, 05:32](3179 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 18:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:01, 17:16](1750 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:04, 18:25](2023 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:59, 08:24](1116 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:58, 19:37](1639 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 17:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:44, 17:19](1675 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:45] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:56, 22:55](1690 MB) - -PASS -- COMPILE 's2swa_intel' [15:11, 14:32] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:46, 05:51](3148 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:08, 05:43](3211 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:56, 03:26](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:47, 05:54](3238 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:54, 03:31](3278 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:42, 06:16](3557 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:43, 05:50](3205 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:50, 04:48](3074 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:03, 05:49](3215 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:22, 10:40](3337 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:20, 06:37](3628 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:52, 11:28](4115 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:04, 07:18](4368 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:52, 05:35](3174 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 14:24] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:30, 04:47](1728 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:49, 04:27](1782 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:07] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:47, 08:51](3250 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:49] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:18, 05:56](1742 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:34] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:29, 04:27](1784 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 13:27] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:53, 08:16](2834 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 02:26](2830 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:05, 01:19](2301 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:54] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:50, 05:25](3209 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:16] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:24, 17:19](1756 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:33, 08:59](1173 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:17, 19:40](1619 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:12] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:07, 24:48](1713 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:26, 03:26](698 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 02:56](1598 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:58, 03:02](1606 MB) -PASS -- TEST 'control_latlon_intel' [05:46, 03:00](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:58, 02:59](1587 MB) -PASS -- TEST 'control_c48_intel' [08:48, 07:12](1756 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 05:59](881 MB) -PASS -- TEST 'control_c192_intel' [13:03, 10:35](1752 MB) -PASS -- TEST 'control_c384_intel' [15:11, 11:46](1996 MB) -PASS -- TEST 'control_c384gdas_intel' [13:03, 09:12](1352 MB) -PASS -- TEST 'control_stochy_intel' [02:23, 01:39](657 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:25, 01:00](498 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:35](658 MB) -PASS -- TEST 'control_iovr4_intel' [03:22, 02:29](652 MB) -PASS -- TEST 'control_iovr5_intel' [03:27, 02:31](653 MB) -PASS -- TEST 'control_p8_intel' [05:10, 02:58](1625 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:16, 03:00](1633 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 02:51](1638 MB) -PASS -- TEST 'control_restart_p8_intel' [03:14, 01:43](893 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:17, 02:58](1624 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:03, 01:37](931 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:16, 03:04](1609 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:06](1728 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:48, 05:15](1629 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:33, 04:04](1693 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:27, 03:02](1590 MB) -PASS -- TEST 'merra2_thompson_intel' [05:56, 03:23](1575 MB) -PASS -- TEST 'regional_control_intel' [06:39, 05:10](855 MB) -PASS -- TEST 'regional_restart_intel' [03:42, 02:49](1021 MB) -PASS -- TEST 'regional_decomp_intel' [06:38, 05:33](851 MB) -PASS -- TEST 'regional_2threads_intel' [04:38, 03:42](844 MB) -PASS -- TEST 'regional_noquilt_intel' [06:37, 05:09](1364 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:46, 05:10](860 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:39, 05:18](850 MB) -PASS -- TEST 'regional_wofs_intel' [07:33, 06:43](1921 MB) - -PASS -- COMPILE 'rrfs_intel' [14:10, 11:47] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:25, 07:51](1041 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 04:47](1239 MB) -PASS -- TEST 'rap_decomp_intel' [10:04, 08:11](1027 MB) -PASS -- TEST 'rap_2threads_intel' [09:11, 07:52](1178 MB) -PASS -- TEST 'rap_restart_intel' [06:27, 04:11](1099 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:50](1099 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:03, 08:13](1027 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:26, 05:54](1129 MB) -PASS -- TEST 'hrrr_control_intel' [06:11, 04:04](1039 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:06](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:59, 03:23](1113 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:23, 02:15](988 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:20, 07:36](1099 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:12](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:58](2073 MB) - -PASS -- COMPILE 'csawmg_intel' [13:10, 11:18] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:44, 06:02](747 MB) -PASS -- TEST 'control_ras_intel' [04:22, 03:21](742 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 10:00] -PASS -- TEST 'control_wam_intel' [03:21, 02:08](654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 11:58] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:29, 02:48](1632 MB) -PASS -- TEST 'regional_control_faster_intel' [06:40, 04:42](850 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:40] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:55, 02:47](1613 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:59, 02:42](1614 MB) -PASS -- TEST 'control_stochy_debug_intel' [09:28, 03:07](813 MB) -PASS -- TEST 'control_lndp_debug_intel' [09:26, 02:48](818 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:50, 04:09](864 MB) -PASS -- TEST 'control_ras_debug_intel' [09:27, 02:57](810 MB) -PASS -- TEST 'control_diag_debug_intel' [08:57, 02:51](1673 MB) -PASS -- TEST 'control_debug_p8_intel' [08:57, 02:58](1637 MB) -PASS -- TEST 'regional_debug_intel' [24:51, 17:22](846 MB) -PASS -- TEST 'rap_control_debug_intel' [11:25, 05:05](1200 MB) -PASS -- TEST 'hrrr_control_debug_intel' [11:28, 05:00](1189 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [11:28, 05:04](1199 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [12:24, 04:57](1198 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:22, 04:53](1204 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:36, 05:03](1293 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:03](1200 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:09](1192 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:22, 05:01](1199 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:58](1202 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'rap_noah_debug_intel' [, ]( MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:15](1206 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:17](1202 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:48](1158 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 06:16](1202 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:22](1199 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:29](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 03:10] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:21, 04:56](509 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 11:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 04:49](1173 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:27, 06:29](1053 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:27](979 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:25, 06:51](1099 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:24, 03:02](962 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 03:48](913 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 05:00](1032 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:25, 01:57](929 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:11, 14:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:58, 02:12](1200 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:51, 01:00](1117 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:19](1111 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 04:23](985 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:24] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 05:01](1079 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:22, 05:00](1078 MB) -PASS -- TEST 'conus13km_debug_intel' [15:50, 14:18](1221 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 14:21](926 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:48, 08:16](1152 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:56, 14:12](1298 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:20] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:41, 04:53](1125 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 13:05] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:55](741 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [, ]( MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:58](832 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:23](812 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 15:16](886 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 06:37](501 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 07:44](515 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 03:10](372 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_global_multiple_4nests_atm_intel' [, ]( MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:17](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:49, 03:58](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 05:27](585 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_global_storm_following_1nest_atm_intel' [, ]( MB) -PASS -- TEST 'gnv1_nested_intel' [05:55, 04:34](803 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:01] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 13:22](633 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 13:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:58, 09:43](672 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [, ]( MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 13:05] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:03, 07:07](735 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 12:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:53](828 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:00, 15:56](1210 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:03] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:38](1136 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:38](1094 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:29](1014 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:34](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:34](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:41](1132 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1142 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:36](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:16, 05:56](1060 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:02](1040 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:40](1128 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:43](2431 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 03:39](2434 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:02] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:17](1056 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 07:06] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:40](1138 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:07] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:47](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:48](326 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:33](320 MB) - -PASS -- COMPILE 'atml_intel' [14:10, 14:07] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:33, 04:16](1610 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:20](1611 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:47, 02:21](900 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:48] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:38](1628 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 12:07] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:22, 01:51](1664 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 12:24] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:21, 04:03](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:17, 04:57](3094 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:02, 05:04](3101 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:31] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:42, 20:46](4579 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:11, 14:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:24, 05:26](3178 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:54, 17:17](1749 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:17, 18:14](2020 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:16, 08:22](1120 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:05, 19:37](1652 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 18:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:46, 17:01](1746 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 06:00] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:03, 23:03](1688 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 15:41] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:44, 05:47](3210 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:10, 05:52](3215 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:02, 03:25](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:44, 05:51](3239 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:02, 03:28](3278 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:46, 06:09](3555 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:36, 05:46](3207 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:38, 04:45](3074 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:10, 05:40](3215 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:04, 10:29](3340 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:30](3633 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'cpld_bmark_p8_intel' [, ]( MB) +FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:59, 05:27](3175 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 13:15] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:12, 04:44](1742 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:34, 04:27](1780 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:02] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:43, 08:38](3262 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 06:13](1756 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:23] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:34, 04:20](1781 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 13:08] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:54, 08:16](2832 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:57, 02:27](2837 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:04, 01:20](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:11, 23:45] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:45, 05:20](3212 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:59] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 17:14](1772 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:30, 08:28](1170 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:22, 19:33](1674 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:30] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:21, 24:21](1715 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:22, 03:28](692 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:42, 02:52](1596 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:45, 03:01](1593 MB) +PASS -- TEST 'control_latlon_intel' [03:41, 02:53](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 02:58](1594 MB) +PASS -- TEST 'control_c48_intel' [07:49, 07:08](1769 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:30, 06:08](829 MB) +PASS -- TEST 'control_c192_intel' [11:59, 10:30](1741 MB) +PASS -- TEST 'control_c384_intel' [14:20, 11:37](2016 MB) +PASS -- TEST 'control_c384gdas_intel' [13:19, 09:09](1347 MB) +PASS -- TEST 'control_stochy_intel' [02:27, 01:43](654 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:01](500 MB) +PASS -- TEST 'control_lndp_intel' [02:25, 01:36](658 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:35](648 MB) +PASS -- TEST 'control_iovr5_intel' [03:26, 02:29](651 MB) +PASS -- TEST 'control_p8_intel' [04:16, 03:02](1636 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:15, 02:59](1628 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:30, 02:53](1627 MB) +PASS -- TEST 'control_restart_p8_intel' [03:04, 01:37](889 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:13, 02:53](1613 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:05, 01:38](927 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:06, 03:00](1621 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:06, 03:04](1715 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:47, 05:15](1630 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:26, 04:01](1691 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:22, 03:02](1640 MB) +PASS -- TEST 'merra2_thompson_intel' [05:40, 03:16](1644 MB) +PASS -- TEST 'regional_control_intel' [06:46, 05:13](855 MB) +PASS -- TEST 'regional_restart_intel' [03:34, 02:49](1018 MB) +PASS -- TEST 'regional_decomp_intel' [06:42, 05:33](847 MB) +PASS -- TEST 'regional_2threads_intel' [04:41, 03:46](840 MB) +PASS -- TEST 'regional_noquilt_intel' [06:42, 05:10](1369 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:40, 05:09](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:34, 05:10](863 MB) +PASS -- TEST 'regional_wofs_intel' [07:35, 06:39](1924 MB) + +PASS -- COMPILE 'rrfs_intel' [14:10, 13:56] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:41, 07:47](1105 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:02, 04:51](1245 MB) +PASS -- TEST 'rap_decomp_intel' [09:08, 08:07](1037 MB) +PASS -- TEST 'rap_2threads_intel' [09:07, 07:55](1187 MB) +PASS -- TEST 'rap_restart_intel' [05:26, 04:02](1104 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:37, 07:41](1114 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:20, 08:12](1029 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 05:49](1131 MB) +PASS -- TEST 'hrrr_control_intel' [05:30, 04:02](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:07](1023 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:26](1111 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:29, 02:11](1003 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:20, 07:38](1101 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:19](2003 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 08:57](2069 MB) + +PASS -- COMPILE 'csawmg_intel' [11:10, 11:07] +PASS -- TEST 'control_csawmg_intel' [07:40, 06:08](748 MB) +PASS -- TEST 'control_ras_intel' [04:23, 03:23](745 MB) + +PASS -- COMPILE 'wam_intel' [10:10, 10:03] +PASS -- TEST 'control_wam_intel' [03:21, 02:09](652 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:58] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:33, 02:42](1624 MB) +PASS -- TEST 'regional_control_faster_intel' [05:34, 04:42](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 07:01] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:09, 02:40](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:12, 02:39](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:34, 03:05](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:48](820 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:05, 04:15](860 MB) +PASS -- TEST 'control_ras_debug_intel' [03:33, 02:55](828 MB) +PASS -- TEST 'control_diag_debug_intel' [04:12, 02:47](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [04:10, 02:57](1647 MB) +PASS -- TEST 'regional_debug_intel' [19:08, 17:26](877 MB) +PASS -- TEST 'rap_control_debug_intel' [05:37, 04:58](1212 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:38, 04:45](1199 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 04:49](1200 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:38, 04:53](1197 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:47](1211 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:50, 05:05](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:28, 05:01](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:01](1202 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:24, 05:00](1211 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:58](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:46](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:58](1199 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:57](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:47](1207 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 06:01](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:27, 04:58](1208 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:23](1204 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:49] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:35, 04:56](508 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:10, 11:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:08, 04:47](1167 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 06:26](1052 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:16, 03:24](992 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 06:44](1095 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:45, 02:58](964 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:41](926 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:19, 04:57](1041 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:22, 01:52](927 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 17:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:03, 02:05](1201 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:42, 01:00](1118 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:16](1109 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:51, 04:15](997 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:57] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:59](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:46](1073 MB) +PASS -- TEST 'conus13km_debug_intel' [15:55, 14:26](1234 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:53, 14:07](923 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:24](1153 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:38, 14:26](1303 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:38] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 05:04](1128 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 13:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:12, 05:27](743 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:54](835 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 13:22](865 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:23, 14:50](886 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:06, 07:08](505 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:26, 07:35](516 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:50, 03:12](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:27, 08:15](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 04:14](533 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:50, 03:59](533 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 05:17](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:23](407 MB) +PASS -- TEST 'gnv1_nested_intel' [05:58, 04:34](800 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 04:46] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:53, 13:06](580 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:11, 21:43] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:02, 09:50](638 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:06, 09:56](712 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 15:08] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 07:06](694 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:10, 13:17] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:15, 06:30](835 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:23](816 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 15:58](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:33] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:38](1127 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:37](1083 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:33](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:46](978 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:41](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:40](1128 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:38](1139 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:37](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:25, 05:57](1057 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 05:55](1043 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:49](1097 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:36](2444 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:41](2489 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:34] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:18](1065 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:34] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:40](1136 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 00:49](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:49](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:31](320 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 12:29] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:43, 04:13](1613 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:37, 04:14](1607 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:26](895 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 04:52] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 05:39](1620 MB) + +PASS -- COMPILE 'atmw_intel' [13:10, 12:21] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:46](1665 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 11:46] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:21, 03:58](3029 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:21, 04:55](3100 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:07, 04:59](3104 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 04:00] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:52, 21:26](4586 MB) SYNOPSIS: -Starting Date/Time: 20240516 23:25:54 -Ending Date/Time: 20240517 00:56:53 -Total Time: 01h:31m:46s +Starting Date/Time: 20240521 07:46:11 +Ending Date/Time: 20240521 09:09:02 +Total Time: 01h:23m:38s Compiles Completed: 39/39 -Tests Completed: 177/183 +Tests Completed: 180/183 Failed Tests: -* TEST rap_noah_debug_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_rap_noah_debug_intel.log -* TEST hafs_regional_atm_thompson_gfdlsf_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_regional_atm_thompson_gfdlsf_intel.log -* TEST hafs_global_multiple_4nests_atm_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_global_multiple_4nests_atm_intel.log -* TEST hafs_global_storm_following_1nest_atm_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_global_storm_following_1nest_atm_intel.log -* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel.log -* TEST hafs_regional_docn_oisst_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_regional_docn_oisst_intel.log +* TEST cpld_bmark_p8_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2205/tests/logs/log_orion/run_cpld_bmark_p8_intel.log +* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO START RUN +-- LOG: N/A +* TEST hafs_regional_atm_thompson_gfdlsf_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2205/tests/logs/log_orion/run_hafs_regional_atm_thompson_gfdlsf_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -335,7 +329,7 @@ Result: FAILURE ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -53ca93c48b032207b4d90354b56c0dbc6c8c4316 +a07258abd88d803c7ffa89a8fef9657780d579df Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -343,24 +337,24 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) - cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) + c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) + 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) NOTES: @@ -370,33 +364,91 @@ 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-20240516 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_226415 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_397584 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:15] ( 885 warnings 9 remarks ) -PASS -- TEST 'rap_noah_debug_intel' [05:29, 04:55](1200 MB) +PASS -- COMPILE 's2swa_intel' [16:11, 15:36] ( 8 remarks ) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'cpld_bmark_p8_intel' [, ]( MB) -PASS -- COMPILE 'hafsw_intel' [15:11, 14:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:27, 06:22](1122 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 08:28](481 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:31](402 MB) +PASS -- COMPILE 'hafsw_intel' [15:11, 14:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:49, 06:52](1118 MB) -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:37] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:17, 10:03](735 MB) +SYNOPSIS: +Starting Date/Time: 20240521 09:36:50 +Ending Date/Time: 20240521 10:01:51 +Total Time: 00h:25m:12s +Compiles Completed: 2/2 +Tests Completed: 1/2 +Failed Tests: +* TEST cpld_bmark_p8_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2205/tests/logs/log_orion/run_cpld_bmark_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +a07258abd88d803c7ffa89a8fef9657780d579df + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) + c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) + 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240516 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_292972 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW -PASS -- COMPILE 'hafs_all_intel' [13:11, 12:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:15, 06:45](770 MB) +PASS -- COMPILE 's2swa_intel' [15:11, 14:49] ( 8 remarks ) +PASS -- TEST 'cpld_bmark_p8_intel' [19:00, 11:23](4129 MB) SYNOPSIS: -Starting Date/Time: 20240517 08:22:40 -Ending Date/Time: 20240517 08:50:39 -Total Time: 00h:28m:14s -Compiles Completed: 4/4 -Tests Completed: 6/6 +Starting Date/Time: 20240521 11:03:10 +Ending Date/Time: 20240521 11:38:48 +Total Time: 00h:35m:51s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 68af301cc9..9e57b45f80 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -53ca93c48b032207b4d90354b56c0dbc6c8c4316 +3e15eaa45553e76c6aa00a66b999b6b85d2b5fb3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,24 +9,24 @@ Submodule hashes used in testing: 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g453e59e) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) - cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (remotes/origin/HEAD-507-gbe05ec28) + 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (201912_public_release-393-g630022f) + c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) + 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (EP4-807-g7e59eba2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) + 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10058-g86585c08d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (v3.7.1-433-g1dbf99a) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (ufs-v2.0.0-218-gecdff7c) NOTES: @@ -36,325 +36,241 @@ 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-20240516 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_220987 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50681 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [26:45, 26:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:33, 01:17](2980 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:32, 01:40](1597 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [05:26, 01:34](1710 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [04:11, 02:03](847 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:33, 02:11](1571 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:43, 23:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [10:57, 00:28](1591 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:32, 15:00] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [20:29, 01:28](1600 MB) - -PASS -- COMPILE 's2swa_intel' [22:40, 21:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:20, 01:23](3008 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:20, 01:36](3002 MB) -PASS -- TEST 'cpld_restart_p8_intel' [02:55, 01:54](3063 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:20, 01:21](3025 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [02:55, 01:50](3080 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:20, 01:07](3314 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:20, 01:25](2997 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:21, 01:26](2929 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:20, 01:42](3004 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [13:29, 04:00](3953 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [52:10, 03:59](4253 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:20, 01:55](2971 MB) - -PASS -- COMPILE 's2sw_intel' [11:29, 10:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [24:31, 00:50](1592 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:31, 01:02](1638 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:50] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:37, 02:00](1632 MB) - -PASS -- COMPILE 's2s_intel' [14:31, 13:27] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [48:40, 00:52](2658 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [48:34, 00:39](2667 MB) -PASS -- TEST 'cpld_restart_c48_intel' [44:31, 00:52](2109 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:34, 16:03] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:26, 01:39](3004 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:30, 11:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:30, 00:48](1611 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:05, 01:27](902 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [06:02, 01:44](1582 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:31, 17:49] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [07:03, 01:39](1627 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [13:05, 00:33](573 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [13:05, 00:31](1475 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:05, 00:26](1477 MB) -PASS -- TEST 'control_latlon_intel' [13:05, 00:23](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:05, 00:32](1473 MB) -PASS -- TEST 'control_c48_intel' [13:04, 01:01](1594 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:04, 01:10](719 MB) -PASS -- TEST 'control_c192_intel' [13:05, 00:30](1591 MB) -PASS -- TEST 'control_c384_intel' [13:09, 01:50](1901 MB) -PASS -- TEST 'control_c384gdas_intel' [13:09, 02:38](1096 MB) -PASS -- TEST 'control_stochy_intel' [13:05, 00:33](530 MB) -PASS -- TEST 'control_stochy_restart_intel' [08:32, 01:00](331 MB) -PASS -- TEST 'control_lndp_intel' [13:05, 00:43](527 MB) -PASS -- TEST 'control_iovr4_intel' [13:05, 00:51](523 MB) -PASS -- TEST 'control_iovr5_intel' [13:05, 00:55](523 MB) -PASS -- TEST 'control_p8_intel' [13:05, 02:06](1507 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:05, 01:56](1513 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:29, 01:59](1500 MB) -PASS -- TEST 'control_restart_p8_intel' [05:27, 00:51](695 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:28, 01:48](1495 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:10, 01:04](698 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:12, 01:40](1498 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:09, 01:07](1594 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:06, 01:05](1501 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:30, 02:06](1558 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:28, 01:52](1512 MB) -PASS -- TEST 'merra2_thompson_intel' [03:47, 01:40](1512 MB) -PASS -- TEST 'regional_control_intel' [03:46, 01:09](609 MB) -PASS -- TEST 'regional_restart_intel' [57:03, 00:23](777 MB) -PASS -- TEST 'regional_decomp_intel' [02:54, 00:51](607 MB) -PASS -- TEST 'regional_2threads_intel' [02:55, 00:51](665 MB) -PASS -- TEST 'regional_noquilt_intel' [02:45, 00:23](1148 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [02:44, 01:18](607 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [02:37, 01:13](610 MB) -PASS -- TEST 'regional_wofs_intel' [02:36, 00:43](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [21:37, 20:07] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [01:51, 02:15](921 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [00:58, 01:04](1096 MB) -PASS -- TEST 'rap_decomp_intel' [00:14, 01:22](918 MB) -PASS -- TEST 'rap_2threads_intel' [00:00, 01:31](1005 MB) -PASS -- TEST 'rap_restart_intel' [52:09, 01:15](787 MB) -PASS -- TEST 'rap_sfcdiff_intel' [59:57, 02:16](918 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [59:53, 01:57](915 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [50:18, 01:39](791 MB) -PASS -- TEST 'hrrr_control_intel' [58:54, 01:21](907 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [58:38, 01:06](910 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [58:25, 01:17](992 MB) -PASS -- TEST 'hrrr_control_restart_intel' [53:27, 01:05](741 MB) -PASS -- TEST 'rrfs_v1beta_intel' [58:15, 02:20](913 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [58:10, 00:57](1878 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:01, 01:18](1861 MB) - -PASS -- COMPILE 'csawmg_intel' [27:44, 26:48] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [55:37, 00:35](600 MB) -PASS -- TEST 'control_ras_intel' [54:52, 00:51](559 MB) - -PASS -- COMPILE 'wam_intel' [11:24, 10:10] -PASS -- TEST 'control_wam_intel' [02:24, 00:53](272 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:31, 15:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [02:10, 02:02](1511 MB) -PASS -- TEST 'regional_control_faster_intel' [02:01, 00:24](607 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 06:15] ( 870 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [57:00, 01:17](1491 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [56:30, 00:26](1489 MB) -PASS -- TEST 'control_stochy_debug_intel' [56:15, 00:50](694 MB) -PASS -- TEST 'control_lndp_debug_intel' [56:07, 01:10](693 MB) -PASS -- TEST 'control_csawmg_debug_intel' [56:06, 00:42](729 MB) -PASS -- TEST 'control_ras_debug_intel' [56:06, 01:04](704 MB) -PASS -- TEST 'control_diag_debug_intel' [55:53, 01:15](1554 MB) -PASS -- TEST 'control_debug_p8_intel' [55:51, 01:01](1524 MB) -PASS -- TEST 'regional_debug_intel' [54:47, 00:28](636 MB) -PASS -- TEST 'rap_control_debug_intel' [53:53, 00:50](1075 MB) -PASS -- TEST 'hrrr_control_debug_intel' [53:27, 00:59](1066 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [53:27, 00:50](1078 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [53:15, 00:49](1077 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [53:11, 00:49](1076 MB) -PASS -- TEST 'rap_diag_debug_intel' [53:09, 00:44](1164 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:38, 00:50](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [52:07, 00:41](1073 MB) -PASS -- TEST 'rap_lndp_debug_intel' [51:47, 00:48](1082 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:43, 00:52](1074 MB) -PASS -- TEST 'rap_noah_debug_intel' [51:41, 00:56](1076 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [51:39, 00:45](1071 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [51:13, 00:40](1073 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [51:09, 00:55](1073 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [51:04, 01:00](1078 MB) -PASS -- TEST 'rap_flake_debug_intel' [50:23, 00:49](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [50:18, 02:04](1081 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:28, 07:49] ( 842 warnings ) -PASS -- TEST 'control_wam_debug_intel' [50:11, 00:30](298 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:32, 14:39] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:58, 01:10](958 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [47:49, 01:33](793 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [47:19, 02:00](786 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [47:19, 01:31](849 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [46:57, 01:51](845 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [46:56, 01:38](786 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [39:48, 02:00](687 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:42, 01:05](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:32, 16:49] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [46:46, 01:00](1002 MB) -PASS -- TEST 'conus13km_2threads_intel' [42:54, 01:18](1009 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [42:47, 00:16](881 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:32, 12:11] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [46:45, 01:20](807 MB) - -FAILED: UNABLE TO COMPILE -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [, ] -FAILED: UNABLE TO START RUN -- TEST 'rap_control_debug_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'conus13km_debug_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'conus13km_debug_qr_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:35, 11:03] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [46:44, 00:57](977 MB) - -PASS -- COMPILE 'hafsw_intel' [17:50, 16:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [45:07, 02:13](616 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [45:07, 01:12](969 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [45:05, 02:09](660 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [45:05, 01:52](697 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [45:06, 01:35](713 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [45:04, 01:28](388 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [44:41, 01:33](402 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [43:52, 01:19](306 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [43:42, 02:06](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [43:35, 01:09](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [41:45, 01:31](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [41:45, 01:34](498 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [41:44, 01:06](312 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:30, 14:45] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [46:37, 01:36](504 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:48, 13:35] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [46:06, 01:43](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [46:04, 01:22](710 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:36, 18:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:13, 01:28](708 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:31, 12:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [41:37, 02:00](662 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [41:23, 02:09](650 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [40:58, 00:31](881 MB) - -PASS -- COMPILE 'atml_intel' [17:51, 16:38] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [36:54, 01:25](1553 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [36:54, 01:48](1549 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [29:09, 01:10](740 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:26, 10:39] ( 868 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [40:15, 02:04](1562 MB) - -PASS -- COMPILE 'atmaero_intel' [13:28, 12:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [38:50, 01:14](2850 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [38:50, 01:46](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:50, 01:31](2922 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:21, 07:36] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [40:06, 00:59](4438 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:36, 12:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:36, 02:07](2975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:52, 27:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [43:31, 01:52](1596 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:15, 01:56](1718 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [24:33, 02:13](848 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:31, 02:02](1570 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:35, 12:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [58:47, 01:05](1590 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:30, 09:25] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [01:53, 01:53](1609 MB) + +PASS -- COMPILE 's2swa_intel' [12:33, 11:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [59:48, 01:25](3010 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [59:48, 01:43](3004 MB) +PASS -- TEST 'cpld_restart_p8_intel' [46:20, 01:29](3064 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [59:48, 01:43](3027 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [47:23, 01:47](3085 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [59:48, 01:19](3318 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [59:48, 01:02](3004 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [59:49, 01:29](2931 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [59:48, 01:44](3008 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [59:57, 04:27](3958 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [33:26, 05:32](4248 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [59:48, 01:21](2972 MB) + +PASS -- COMPILE 's2sw_intel' [46:14, 45:08] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [26:03, 02:06](1592 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [26:03, 02:12](1639 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:30, 09:52] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:52, 01:57](1635 MB) + +PASS -- COMPILE 's2s_intel' [20:42, 19:39] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [51:40, 01:31](2649 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [51:40, 01:14](2676 MB) +PASS -- TEST 'cpld_restart_c48_intel' [45:30, 01:10](2108 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:39, 18:18] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [53:43, 01:16](3007 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:43, 21:19] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:40, 01:45](1613 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:02, 01:25](907 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:03, 01:24](1589 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:36, 18:00] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:17, 01:21](1620 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [25:44, 24:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [36:08, 00:28](574 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [36:08, 01:07](1473 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [36:08, 00:54](1481 MB) +PASS -- TEST 'control_latlon_intel' [36:08, 01:10](1466 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [36:08, 01:13](1469 MB) +PASS -- TEST 'control_c48_intel' [36:07, 00:42](1591 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [36:07, 00:52](714 MB) +PASS -- TEST 'control_c192_intel' [36:08, 01:33](1590 MB) +PASS -- TEST 'control_c384_intel' [36:12, 01:48](1900 MB) +PASS -- TEST 'control_c384gdas_intel' [36:12, 02:43](1091 MB) +PASS -- TEST 'control_stochy_intel' [36:08, 00:27](530 MB) +PASS -- TEST 'control_stochy_restart_intel' [33:36, 00:48](331 MB) +PASS -- TEST 'control_lndp_intel' [36:08, 00:27](528 MB) +PASS -- TEST 'control_iovr4_intel' [36:08, 00:49](523 MB) +PASS -- TEST 'control_iovr5_intel' [36:08, 00:46](523 MB) +PASS -- TEST 'control_p8_intel' [36:08, 01:07](1503 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [36:08, 01:29](1501 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [36:08, 01:33](1509 MB) +PASS -- TEST 'control_restart_p8_intel' [30:44, 01:57](689 MB) +PASS -- TEST 'control_noqr_p8_intel' [36:08, 01:24](1490 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [30:44, 01:42](695 MB) +PASS -- TEST 'control_decomp_p8_intel' [36:08, 01:13](1497 MB) +PASS -- TEST 'control_2threads_p8_intel' [36:08, 01:24](1599 MB) +PASS -- TEST 'control_p8_lndp_intel' [36:08, 00:40](1508 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [36:08, 01:37](1559 MB) +PASS -- TEST 'control_p8_mynn_intel' [35:28, 01:04](1513 MB) +PASS -- TEST 'merra2_thompson_intel' [34:36, 01:59](1507 MB) +PASS -- TEST 'regional_control_intel' [33:36, 01:09](608 MB) +PASS -- TEST 'regional_restart_intel' [26:45, 00:14](779 MB) +PASS -- TEST 'regional_decomp_intel' [32:30, 00:43](606 MB) +PASS -- TEST 'regional_2threads_intel' [32:29, 00:43](664 MB) +PASS -- TEST 'regional_noquilt_intel' [31:34, 01:18](1145 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [31:08, 01:18](608 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [31:08, 01:06](608 MB) +PASS -- TEST 'regional_wofs_intel' [31:03, 00:44](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [31:51, 29:36] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [27:52, 02:18](914 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [27:46, 01:17](1098 MB) +PASS -- TEST 'rap_decomp_intel' [27:40, 01:52](914 MB) +PASS -- TEST 'rap_2threads_intel' [26:10, 01:13](1000 MB) +PASS -- TEST 'rap_restart_intel' [18:03, 02:09](783 MB) +PASS -- TEST 'rap_sfcdiff_intel' [26:09, 02:11](909 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [26:02, 01:35](913 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [16:32, 01:26](787 MB) +PASS -- TEST 'hrrr_control_intel' [26:02, 01:20](906 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [25:54, 01:07](906 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [25:43, 01:20](991 MB) +PASS -- TEST 'hrrr_control_restart_intel' [20:42, 00:49](741 MB) +PASS -- TEST 'rrfs_v1beta_intel' [24:20, 02:09](910 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [24:13, 00:42](1872 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:56, 01:07](1859 MB) + +PASS -- COMPILE 'csawmg_intel' [19:38, 13:54] +PASS -- TEST 'control_csawmg_intel' [39:08, 00:38](600 MB) +PASS -- TEST 'control_ras_intel' [39:08, 00:50](562 MB) + +PASS -- COMPILE 'wam_intel' [11:26, 09:16] +PASS -- TEST 'control_wam_intel' [42:16, 00:52](272 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [42:01, 39:13] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:13, 02:04](1502 MB) +PASS -- TEST 'regional_control_faster_intel' [08:53, 00:43](607 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:28, 13:24] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [31:01, 01:19](1490 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [30:58, 01:22](1490 MB) +PASS -- TEST 'control_stochy_debug_intel' [30:44, 00:47](692 MB) +PASS -- TEST 'control_lndp_debug_intel' [30:44, 00:55](693 MB) +PASS -- TEST 'control_csawmg_debug_intel' [30:25, 01:20](733 MB) +PASS -- TEST 'control_ras_debug_intel' [30:24, 01:00](703 MB) +PASS -- TEST 'control_diag_debug_intel' [29:53, 01:11](1556 MB) +PASS -- TEST 'control_debug_p8_intel' [29:22, 01:18](1526 MB) +PASS -- TEST 'regional_debug_intel' [29:19, 01:05](634 MB) +PASS -- TEST 'rap_control_debug_intel' [29:02, 01:16](1074 MB) +PASS -- TEST 'hrrr_control_debug_intel' [23:38, 00:48](1074 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [23:29, 00:45](1079 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [23:12, 01:02](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [22:57, 01:14](1073 MB) +PASS -- TEST 'rap_diag_debug_intel' [22:38, 01:22](1159 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [22:31, 01:24](1076 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [21:21, 00:32](1072 MB) +PASS -- TEST 'rap_lndp_debug_intel' [21:17, 00:37](1077 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [20:55, 00:48](1074 MB) +PASS -- TEST 'rap_noah_debug_intel' [20:42, 00:50](1075 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [20:42, 00:43](1071 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:41, 00:29](1074 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [20:13, 00:48](1066 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [18:25, 00:44](1077 MB) +PASS -- TEST 'rap_flake_debug_intel' [18:13, 00:39](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:05, 02:06](1078 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:24, 07:11] ( 842 warnings ) +PASS -- TEST 'control_wam_debug_intel' [18:01, 00:42](302 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:33, 17:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [17:10, 01:05](960 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:33, 01:24](794 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [16:05, 01:45](790 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [15:57, 01:22](857 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:41, 01:48](841 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [15:34, 01:13](793 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:30, 01:38](692 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:29, 01:12](675 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:44, 25:17] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [15:25, 00:55](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [11:12, 00:45](1010 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [11:05, 00:43](885 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:40, 20:05] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:59, 01:29](814 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:41, 18:04] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [14:56, 00:28](956 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:53, 00:50](956 MB) +PASS -- TEST 'conus13km_debug_intel' [14:39, 00:40](1046 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:37, 00:27](715 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:35, 00:53](1043 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:16, 00:42](1107 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [19:40, 18:32] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:14, 01:17](978 MB) + +PASS -- COMPILE 'hafsw_intel' [18:38, 16:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [14:15, 01:47](619 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:13, 00:27](968 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:44, 01:59](668 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:09, 02:17](698 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [12:39, 02:23](714 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:26, 01:51](391 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:26, 01:50](401 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [10:49, 01:01](284 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:52, 03:10](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:30, 00:49](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:30, 01:31](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:14, 01:38](493 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:32, 00:41](333 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [23:45, 22:43] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:12, 01:01](512 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [26:51, 25:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [59:18, 01:52](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [59:18, 00:58](711 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:40, 20:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [04:05, 01:29](719 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:33, 16:12] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [01:51, 02:14](658 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:51, 02:14](649 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:49, 00:37](879 MB) + +PASS -- COMPILE 'atml_intel' [19:34, 18:00] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [57:51, 02:02](1545 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [57:51, 01:29](1548 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [44:23, 00:59](746 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:26, 10:04] ( 868 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:07, 02:18](1562 MB) + +PASS -- COMPILE 'atmaero_intel' [10:24, 09:05] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:02, 01:43](2854 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 01:25](2914 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:02, 01:18](2927 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:24, 09:48] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [05:06, 01:30](4437 MB) SYNOPSIS: -Starting Date/Time: 20240516 20:23:31 -Ending Date/Time: 20240516 21:46:09 -Total Time: 01h:23m:17s -Compiles Completed: 31/32 -Tests Completed: 153/159 -Failed Compiles: -* COMPILE rrfs_dyn32_phy32_debug_intel: FAILED: UNABLE TO COMPILE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_rrfs_dyn32_phy32_debug_intel.log -Failed Tests: -* TEST rap_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST hrrr_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST conus13km_debug_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO START RUN --- LOG: N/A - -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: -53ca93c48b032207b4d90354b56c0dbc6c8c4316 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g453e59e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503) - cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (remotes/origin/HEAD-507-gbe05ec28) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (v3.7.1-433-g1dbf99a) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) - - -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-20240516 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_23536 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:15, 02:59] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:36, 01:00](952 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:36, 01:09](951 MB) -PASS -- TEST 'conus13km_debug_intel' [26:36, 01:15](1036 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:36, 01:08](707 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:37, 00:23](1037 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:36, 01:16](1103 MB) - -SYNOPSIS: -Starting Date/Time: 20240517 12:29:57 -Ending Date/Time: 20240517 12:51:45 -Total Time: 00h:22m:10s -Compiles Completed: 1/1 -Tests Completed: 6/6 +Starting Date/Time: 20240520 18:47:07 +Ending Date/Time: 20240520 20:36:22 +Total Time: 01h:50m:06s +Compiles Completed: 32/32 +Tests Completed: 159/159 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/MOM_input_025.IN b/tests/parm/MOM_input_025.IN index 58ad534ab3..0898e1def4 100644 --- a/tests/parm/MOM_input_025.IN +++ b/tests/parm/MOM_input_025.IN @@ -509,9 +509,10 @@ USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. -KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 - ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. - ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. +KV_ML_INVZ2 = 1.0E-04 ! [m2 s-1] default = 0.0 + ! An extra kinematic viscosity in a mixed layer of thickness HMIX_FIXED, with + ! the actual viscosity scaling as 1/(z*HMIX_FIXED)^2, where z is the distance + ! from the surface, to allow for finite wind stresses to be transmitted through. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. diff --git a/tests/parm/MOM_input_050.IN b/tests/parm/MOM_input_050.IN index ece8b95416..3974f87cfe 100644 --- a/tests/parm/MOM_input_050.IN +++ b/tests/parm/MOM_input_050.IN @@ -539,9 +539,10 @@ USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. -KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 - ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. - ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. +KV_ML_INVZ2 = 1.0E-04 ! [m2 s-1] default = 0.0 + ! An extra kinematic viscosity in a mixed layer of thickness HMIX_FIXED, with + ! the actual viscosity scaling as 1/(z*HMIX_FIXED)^2, where z is the distance + ! from the surface, to allow for finite wind stresses to be transmitted through. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. diff --git a/tests/parm/MOM_input_100.IN b/tests/parm/MOM_input_100.IN index 3c58b0cdf5..70efc8da9d 100644 --- a/tests/parm/MOM_input_100.IN +++ b/tests/parm/MOM_input_100.IN @@ -505,9 +505,10 @@ USE_KH_BG_2D = True ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. -KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 - ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. - ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. +KV_ML_INVZ2 = 1.0E-04 ! [m2 s-1] default = 0.0 + ! An extra kinematic viscosity in a mixed layer of thickness HMIX_FIXED, with + ! the actual viscosity scaling as 1/(z*HMIX_FIXED)^2, where z is the distance + ! from the surface, to allow for finite wind stresses to be transmitted through. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. diff --git a/tests/parm/MOM_input_500.IN b/tests/parm/MOM_input_500.IN index 16f9b59f14..bf474652ee 100644 --- a/tests/parm/MOM_input_500.IN +++ b/tests/parm/MOM_input_500.IN @@ -350,9 +350,10 @@ USE_LAND_MASK_FOR_HVISC = True ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. -KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 - ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. - ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. +KV_ML_INVZ2 = 1.0E-04 ! [m2 s-1] default = 0.0 + ! An extra kinematic viscosity in a mixed layer of thickness HMIX_FIXED, with + ! the actual viscosity scaling as 1/(z*HMIX_FIXED)^2, where z is the distance + ! from the surface, to allow for finite wind stresses to be transmitted through. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. diff --git a/tests/test_changes.list b/tests/test_changes.list index a18012880b..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,4 +0,0 @@ -control_diag_debug intel -rap_diag_debug intel -control_diag_debug gnu -rap_diag_debug gnu From 3a48a64728b20780dbc9f2e2e9b846d9a49409a0 Mon Sep 17 00:00:00 2001 From: AnningCheng-NOAA <48297505+AnningCheng-NOAA@users.noreply.github.com> Date: Fri, 24 May 2024 13:56:59 -0400 Subject: [PATCH 13/16] upgrade MERRA2 climatology from 2003-2014 mean to 2014 to 2024 mean (#2273) * MERRA2 climatology upgraded to 2014 to 2024 mean --- tests/bl_date.conf | 2 +- tests/fv3_conf/control_run.IN | 2 +- tests/fv3_conf/cpld_control_run.IN | 2 +- tests/fv3_conf/fv3_gocart.IN | 3 +- tests/fv3_conf/lake_control_run.IN | 2 +- tests/fv3_conf/regional_rrfs_a_run.IN | 15 +- tests/fv3_conf/regional_run.IN | 16 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 226 +++-- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 588 +++++++------ tests/logs/RegressionTests_derecho.log | 543 ++++++------ tests/logs/RegressionTests_gaea.log | 549 ++++++------ tests/logs/RegressionTests_hera.log | 786 ++++++++++-------- tests/logs/RegressionTests_hercules.log | 785 +++++++++-------- tests/logs/RegressionTests_jet.log | 532 ++++++------ tests/logs/RegressionTests_orion.log | 685 ++++++--------- tests/logs/RegressionTests_wcoss2.log | 470 +++++------ tests/rt_utils.sh | 2 +- tests/test_changes.list | 74 ++ 20 files changed, 2780 insertions(+), 2602 deletions(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 1e9296108e..10f90f6d96 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240516 +export BL_DATE=20240522 diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 30634250d8..fd8482ee57 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -133,7 +133,7 @@ fi #merra2 if [ $USE_MERRA2 = .true. ]; then for n in 01 02 03 04 05 06 07 08 09 10 11 12; do - cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc done cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index d497771d0b..ec731d9f4a 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -173,7 +173,7 @@ fi #merra2 if [ $IAER = 1011 ]; then for n in 01 02 03 04 05 06 07 08 09 10 11 12; do - cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc done cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat diff --git a/tests/fv3_conf/fv3_gocart.IN b/tests/fv3_conf/fv3_gocart.IN index da32ceb4a1..81bb264948 100644 --- a/tests/fv3_conf/fv3_gocart.IN +++ b/tests/fv3_conf/fv3_gocart.IN @@ -7,9 +7,8 @@ else cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do -ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc done cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc diff --git a/tests/fv3_conf/lake_control_run.IN b/tests/fv3_conf/lake_control_run.IN index 7d34e82e23..a84ee5dc35 100644 --- a/tests/fv3_conf/lake_control_run.IN +++ b/tests/fv3_conf/lake_control_run.IN @@ -123,7 +123,7 @@ fi #merra2 if [ $USE_MERRA2 = .true. ]; then for n in 01 02 03 04 05 06 07 08 09 10 11 12; do - cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc done cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat diff --git a/tests/fv3_conf/regional_rrfs_a_run.IN b/tests/fv3_conf/regional_rrfs_a_run.IN index d41ea9cee1..41c0ab2f62 100644 --- a/tests/fv3_conf/regional_rrfs_a_run.IN +++ b/tests/fv3_conf/regional_rrfs_a_run.IN @@ -5,18 +5,9 @@ mkdir INPUT RESTART rsync -arv @[INPUTDATA_ROOT]/FV3_regional_rrfs_a/INPUT/. INPUT/. -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m01.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m02.nc aeroclim.m02.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m03.nc aeroclim.m03.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m04.nc aeroclim.m04.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m05.nc aeroclim.m05.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m06.nc aeroclim.m06.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m07.nc aeroclim.m07.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m08.nc aeroclim.m08.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m09.nc aeroclim.m09.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m10.nc aeroclim.m10.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m11.nc aeroclim.m11.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m12.nc aeroclim.m12.nc +for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc +done cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat diff --git a/tests/fv3_conf/regional_run.IN b/tests/fv3_conf/regional_run.IN index 6f4a8a6aaa..09aed8a45e 100644 --- a/tests/fv3_conf/regional_run.IN +++ b/tests/fv3_conf/regional_run.IN @@ -5,18 +5,10 @@ rsync -arv @[INPUTDATA_ROOT]/FV3_regional/INPUT/. INPUT/. cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m01.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m02.nc aeroclim.m02.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m03.nc aeroclim.m03.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m04.nc aeroclim.m04.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m05.nc aeroclim.m05.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m06.nc aeroclim.m06.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m07.nc aeroclim.m07.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m08.nc aeroclim.m08.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m09.nc aeroclim.m09.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m10.nc aeroclim.m10.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m12.nc aeroclim.m11.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m12.nc aeroclim.m12.nc +for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc +done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 439af1928e..343011c8f6 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon May 20 18:51:03 UTC 2024 +Thu May 23 02:18:32 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.086219 - 0: The maximum resident set size (KB) = 1266612 + 0: The total amount of wall time = 204.782273 + 0: The maximum resident set size (KB) = 1918420 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/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 = 967.204562 - 0: The maximum resident set size (KB) = 1252256 + 0: The total amount of wall time = 2007.430306 + 0: The maximum resident set size (KB) = 1871000 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/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 = 244.057605 - 0: The maximum resident set size (KB) = 1245204 + 0: The total amount of wall time = 177.403984 + 0: The maximum resident set size (KB) = 1878948 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/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 = 242.281799 - 0: The maximum resident set size (KB) = 1245960 + 0: The total amount of wall time = 174.810235 + 0: The maximum resident set size (KB) = 1874436 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/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 = 242.457949 - 0: The maximum resident set size (KB) = 1245616 + 0: The total amount of wall time = 177.301718 + 0: The maximum resident set size (KB) = 1878152 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/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 = 247.352735 - 0: The maximum resident set size (KB) = 1245076 + 0: The total amount of wall time = 176.738736 + 0: The maximum resident set size (KB) = 1878320 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1703729/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/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 = 242.402115 - 0: The maximum resident set size (KB) = 1245280 + 0: The total amount of wall time = 176.752293 + 0: The maximum resident set size (KB) = 1876656 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon May 20 21:14:11 UTC 2024 -Elapsed time: 02h:23m:09s. Have a nice day! +Thu May 23 04:05:32 UTC 2024 +Elapsed time: 01h:47m:00s. 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 41bbda59b0..19d7b7298e 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,79 +1,77 @@ -Tue May 21 16:24:30 UTC 2024 +Thu May 23 05:36:16 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/cpld/FV3_OPNREQ_TEST/opnReqTest_21842/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Moving RESTART/20210323.060000.MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving sfcf021.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile1.nc + Moving sfcf021.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile2.nc + Moving sfcf021.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile3.nc + Moving sfcf021.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile4.nc + Moving sfcf021.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile5.nc + Moving sfcf021.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile6.nc + Moving atmf021.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile1.nc + Moving atmf021.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile2.nc + Moving atmf021.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile3.nc + Moving atmf021.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile4.nc + Moving atmf021.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile5.nc + Moving atmf021.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile6.nc + Moving sfcf024.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile1.nc + Moving sfcf024.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile2.nc + Moving sfcf024.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile3.nc + Moving sfcf024.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile4.nc + Moving sfcf024.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile5.nc + Moving sfcf024.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile6.nc + Moving atmf024.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile1.nc + Moving atmf024.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile2.nc + Moving atmf024.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile3.nc + Moving atmf024.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile4.nc + Moving atmf024.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile5.nc + Moving atmf024.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile6.nc + Moving RESTART/20210323.060000.coupler.res .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.coupler.res + Moving RESTART/20210323.060000.fv_core.res.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.nc + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile1.nc + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile2.nc + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile3.nc + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile4.nc + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile5.nc + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile6.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile1.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile2.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile3.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile4.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile5.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile6.nc + Moving RESTART/20210323.060000.phy_data.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile1.nc + Moving RESTART/20210323.060000.phy_data.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile2.nc + Moving RESTART/20210323.060000.phy_data.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile3.nc + Moving RESTART/20210323.060000.phy_data.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile4.nc + Moving RESTART/20210323.060000.phy_data.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile5.nc + Moving RESTART/20210323.060000.phy_data.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile6.nc + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile1.nc + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile2.nc + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile3.nc + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile4.nc + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile5.nc + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile6.nc + Moving RESTART/20210323.060000.MOM.res.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.MOM.res.nc + Moving RESTART/iced.2021-03-23-21600.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/iced.2021-03-23-21600.nc + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc - 0: The total amount of wall time = 1578.173654 - 0: The maximum resident set size (KB) = 1343768 -Test dbg_base PASS +Test dbg_base FAIL -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/cpld/FV3_OPNREQ_TEST/opnReqTest_21842/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +133,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 = 550.910855 - 0: The maximum resident set size (KB) = 1339328 + 0: The total amount of wall time = 258.637903 + 0: The maximum resident set size (KB) = 2032152 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/cpld/FV3_OPNREQ_TEST/opnReqTest_21842/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +203,89 @@ 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 = 608.236433 - 0: The maximum resident set size (KB) = 1338792 + 0: The total amount of wall time = 258.716858 + 0: The maximum resident set size (KB) = 2039936 Test std_base PASS +FAILED TESTS: +Test dbg_base failed in check_result failed +OPERATION REQUIREMENT TEST FAILED +Thu May 23 06:32:02 UTC 2024 +Elapsed time: 00h:55m:46s. Have a nice day! +Thu May 23 13:55:24 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1494048/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 1345.304106 + 0: The maximum resident set size (KB) = 1531684 + +Test dbg_base PASS + OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue May 21 17:39:42 UTC 2024 -Elapsed time: 01h:15m:12s. Have a nice day! +Thu May 23 14:22:27 UTC 2024 +Elapsed time: 00h:27m:04s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 0eeb455541..42e7c07e21 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Tue May 21 16:03:46 UTC 2024 +Thu May 23 04:24:55 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4148204/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2270461/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 = 1256.367157 - 0: The maximum resident set size (KB) = 575888 + 0: The total amount of wall time = 411.087582 + 0: The maximum resident set size (KB) = 1241744 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4148204/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2270461/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 = 2182.888769 - 0: The maximum resident set size (KB) = 543284 + 0: The total amount of wall time = 307.933520 + 0: The maximum resident set size (KB) = 1091112 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4148204/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2270461/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 = 2087.568729 - 0: The maximum resident set size (KB) = 540656 + 0: The total amount of wall time = 314.245377 + 0: The maximum resident set size (KB) = 1087020 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4148204/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2270461/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 = 2251.752676 - 0: The maximum resident set size (KB) = 543636 + 0: The total amount of wall time = 312.493346 + 0: The maximum resident set size (KB) = 1081560 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue May 21 18:31:11 UTC 2024 -Elapsed time: 02h:27m:25s. Have a nice day! +Thu May 23 05:25:42 UTC 2024 +Elapsed time: 01h:00m:48s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 8c5464b8f5..03b23ee8b5 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -3e15eaa45553e76c6aa00a66b999b6b85d2b5fb3 +ac5a2eec5d0bdec070df19c3d3cb405bb32eb867 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,22 +11,22 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) - 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) - c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) - 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (70810f1) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5254-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -35,270 +35,342 @@ 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-20240516 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_190946 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113352 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:29] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [00:55, 01:18](3037 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:30] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:56, 01:19](3166 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:46] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [55:50, 01:35](1655 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:57, 01:21](1779 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:38, 01:17](910 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [55:51, 01:56](1633 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:54] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [40:51, 01:28](1886 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:02, 01:20](1912 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [21:39, 01:33](1034 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:52, 01:11](1861 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:14] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [55:50, 00:32](1658 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 15:53] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [40:50, 00:47](1886 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:14] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [07:02, 01:53](1683 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:18] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [52:03, 01:45](1906 MB) PASS -- COMPILE 's2swa_intel' [11:24, 10:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [00:55, 01:27](3074 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [00:55, 01:41](3071 MB) -PASS -- TEST 'cpld_restart_p8_intel' [52:28, 01:33](3132 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [00:55, 01:25](3099 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [52:28, 01:23](3148 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [00:55, 01:05](3386 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [00:55, 01:36](3068 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [00:56, 00:58](2997 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [00:55, 01:03](3073 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [00:55, 00:49](3042 MB) - -PASS -- COMPILE 's2sw_intel' [10:23, 09:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [01:56, 00:49](1646 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [01:56, 00:54](1692 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:56, 00:55](1698 MB) - -PASS -- COMPILE 's2s_intel' [10:23, 09:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [01:55, 00:41](2676 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [01:55, 00:25](2692 MB) -PASS -- TEST 'cpld_restart_c48_intel' [58:54, 00:57](2127 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:30, 17:12] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [54:49, 00:47](3079 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:29, 15:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:50, 01:06](1666 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:08, 01:11](964 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:08, 00:42](1643 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:55] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [02:45, 00:28](1682 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:40] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [52:21, 00:36](643 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [52:21, 01:00](1535 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [52:21, 01:00](1540 MB) -PASS -- TEST 'control_latlon_intel' [52:21, 00:57](1535 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:21, 01:06](1541 MB) -PASS -- TEST 'control_c48_intel' [52:20, 00:39](1623 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [52:20, 00:16](742 MB) -PASS -- TEST 'control_c192_intel' [52:21, 01:07](1656 MB) -PASS -- TEST 'control_c384_intel' [52:25, 01:15](1961 MB) -PASS -- TEST 'control_c384gdas_intel' [52:25, 01:31](1154 MB) -PASS -- TEST 'control_stochy_intel' [51:46, 01:03](597 MB) -PASS -- TEST 'control_stochy_restart_intel' [24:54, 00:27](401 MB) -PASS -- TEST 'control_lndp_intel' [47:20, 00:46](596 MB) -PASS -- TEST 'control_iovr4_intel' [46:53, 00:23](589 MB) -PASS -- TEST 'control_iovr5_intel' [46:52, 00:24](590 MB) -PASS -- TEST 'control_p8_intel' [41:00, 01:10](1565 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [36:24, 01:04](1574 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [36:08, 01:16](1569 MB) -PASS -- TEST 'control_restart_p8_intel' [20:45, 01:12](755 MB) -PASS -- TEST 'control_noqr_p8_intel' [32:24, 00:55](1555 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [20:57, 01:27](761 MB) -PASS -- TEST 'control_decomp_p8_intel' [30:00, 01:23](1563 MB) -PASS -- TEST 'control_2threads_p8_intel' [29:57, 01:12](1650 MB) -PASS -- TEST 'control_p8_lndp_intel' [29:49, 00:27](1575 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [27:47, 01:14](1623 MB) -PASS -- TEST 'control_p8_mynn_intel' [26:31, 01:12](1573 MB) -PASS -- TEST 'merra2_thompson_intel' [25:51, 01:18](1577 MB) -PASS -- TEST 'regional_control_intel' [24:22, 00:27](636 MB) -PASS -- TEST 'regional_restart_intel' [18:41, 00:11](802 MB) -PASS -- TEST 'regional_decomp_intel' [24:03, 00:24](635 MB) -PASS -- TEST 'regional_2threads_intel' [23:56, 00:34](727 MB) -PASS -- TEST 'regional_noquilt_intel' [23:53, 00:53](1167 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [23:48, 00:19](635 MB) -PASS -- TEST 'regional_wofs_intel' [23:46, 00:52](1606 MB) - -PASS -- COMPILE 'ifi_intel' [08:21, 08:11] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [53:34, 00:55](635 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [53:34, 00:37](632 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [53:35, 01:06](729 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 09:19] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [23:33, 01:41](976 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:13, 00:41](1156 MB) -PASS -- TEST 'rap_decomp_intel' [22:11, 01:31](975 MB) -PASS -- TEST 'rap_2threads_intel' [22:05, 01:17](1067 MB) -PASS -- TEST 'rap_restart_intel' [13:10, 01:32](843 MB) -PASS -- TEST 'rap_sfcdiff_intel' [22:03, 01:51](976 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:52, 01:36](975 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:39, 01:09](845 MB) -PASS -- TEST 'hrrr_control_intel' [20:39, 01:18](969 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [20:25, 01:18](968 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [20:15, 01:32](1050 MB) -PASS -- TEST 'hrrr_control_restart_intel' [14:23, 00:15](799 MB) -PASS -- TEST 'rrfs_v1beta_intel' [19:53, 00:48](968 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:52, 00:53](1935 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:14, 01:00](1921 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:36] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [52:33, 00:47](658 MB) - -PASS -- COMPILE 'wam_intel' [08:21, 07:56] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [52:33, 00:59](331 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:31, 15:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [18:12, 01:15](1562 MB) -PASS -- TEST 'regional_control_faster_intel' [17:55, 00:53](630 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 05:24] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [17:34, 01:03](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [17:18, 00:39](1561 MB) -PASS -- TEST 'control_stochy_debug_intel' [17:17, 00:36](765 MB) -PASS -- TEST 'control_lndp_debug_intel' [15:35, 00:14](764 MB) -PASS -- TEST 'control_csawmg_debug_intel' [15:35, 01:05](805 MB) -PASS -- TEST 'control_ras_debug_intel' [15:27, 00:28](777 MB) -PASS -- TEST 'control_diag_debug_intel' [13:29, 00:46](1618 MB) -PASS -- TEST 'control_debug_p8_intel' [13:19, 01:00](1596 MB) -PASS -- TEST 'regional_debug_intel' [13:08, 00:33](675 MB) -PASS -- TEST 'rap_control_debug_intel' [12:55, 00:10](1145 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:51, 00:18](1141 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [12:49, 00:10](1143 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [12:27, 00:14](1143 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:13, 00:37](1146 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:12, 00:31](1227 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:09, 00:29](1148 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:59, 00:21](1148 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:43, 00:48](1147 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:39, 00:52](1148 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:19, 00:41](1140 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:56, 00:39](1145 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:43, 00:25](1143 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:15, 01:04](1144 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:01, 00:14](1148 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:59, 00:14](1144 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [06:49, 01:35](1157 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 02:59] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:49, 00:06](384 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:26, 08:31] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:47, 00:34](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:37, 01:18](853 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:27, 02:05](848 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:41, 01:04](911 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 01:25](901 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [01:46, 01:41](846 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [44:10, 01:19](741 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:38, 00:28](726 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:37, 14:00] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [01:19, 01:11](1055 MB) -PASS -- TEST 'conus13km_2threads_intel' [44:18, 00:52](1039 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [44:17, 00:48](939 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:33, 08:23] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [01:17, 00:55](870 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:31, 03:27] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [42:02, 00:11](1028 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [42:02, 00:18](1023 MB) -PASS -- TEST 'conus13km_debug_intel' [42:02, 00:50](1120 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [42:02, 00:49](800 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [42:03, 00:22](1100 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [42:02, 00:45](1185 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:31, 03:13] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [42:01, 01:01](1046 MB) - -PASS -- COMPILE 'hafsw_intel' [17:34, 09:59] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [34:50, 02:12](675 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [34:50, 01:07](1026 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [34:48, 01:24](718 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [34:48, 01:22](757 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:49, 01:21](776 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [34:48, 01:03](442 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [34:49, 01:20](462 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [32:13, 00:50](338 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [31:43, 02:24](400 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:38, 00:41](480 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [31:38, 00:42](480 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [31:39, 00:37](545 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [31:38, 01:08](371 MB) -PASS -- TEST 'gnv1_nested_intel' [31:38, 01:31](737 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:30, 03:52] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [41:05, 00:32](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:37, 16:42] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:20, 01:10](580 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:05, 01:21](752 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:29, 09:45] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [35:01, 00:58](747 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:24, 09:09] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [35:00, 01:42](713 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [35:00, 02:01](697 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [34:58, 00:46](897 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:23, 08:22] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [34:59, 00:45](749 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [31:35, 00:33](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [34:59, 00:54](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [34:59, 00:51](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [34:59, 00:50](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [34:59, 00:45](750 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [34:59, 00:44](762 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [34:59, 00:51](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [35:00, 00:53](647 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [35:00, 01:08](631 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [34:59, 00:42](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [34:59, 00:49](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [34:59, 00:48](2015 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [00:14, 08:40] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [34:47, 00:20](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [49:02, 00:42] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [41:09, 00:51](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [41:09, 00:55](413 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [38:41, 00:15](409 MB) - -PASS -- COMPILE 'atml_intel' [10:23, 10:01] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [31:37, 01:37](1598 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [29:36, 01:28](1595 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [59:47, 00:30](801 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:18, 04:22] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [36:44, 01:18](1636 MB) - -PASS -- COMPILE 'atmw_intel' [09:22, 08:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [29:34, 01:12](1612 MB) - -PASS -- COMPILE 'atmaero_intel' [09:22, 08:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [29:25, 00:55](2915 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [28:17, 00:48](2976 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [28:12, 00:43](2987 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:17, 03:21] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:58, 01:40](4500 MB) +PASS -- TEST 'cpld_control_p8_intel' [45:56, 01:26](3203 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [45:56, 01:16](3196 MB) +PASS -- TEST 'cpld_restart_p8_intel' [37:37, 01:31](3129 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [45:56, 01:27](3217 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [33:38, 00:42](3149 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [45:56, 01:01](3428 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [45:56, 01:18](3192 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [45:57, 01:09](3141 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [45:56, 01:34](3201 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [45:56, 00:43](3178 MB) + +PASS -- COMPILE 's2sw_intel' [10:23, 09:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [46:57, 00:46](1890 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [46:57, 00:59](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [46:57, 00:57](1951 MB) + +PASS -- COMPILE 's2s_intel' [10:23, 09:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [46:56, 00:34](2930 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [46:56, 01:24](2936 MB) +PASS -- TEST 'cpld_restart_c48_intel' [43:02, 01:08](2328 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:33, 17:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [38:47, 01:49](3198 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:33, 17:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:47, 00:36](1894 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:02, 01:17](1069 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:51, 00:49](1864 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 04:02] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:46, 01:27](1917 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:37] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [36:07, 00:57](640 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [34:35, 01:06](1535 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:27, 01:12](1545 MB) +PASS -- TEST 'control_latlon_intel' [33:39, 00:36](1544 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:06, 00:44](1545 MB) +PASS -- TEST 'control_c48_intel' [31:23, 00:32](1621 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [30:47, 00:36](741 MB) +PASS -- TEST 'control_c192_intel' [30:30, 01:12](1651 MB) +PASS -- TEST 'control_c384_intel' [29:34, 01:14](1971 MB) +PASS -- TEST 'control_c384gdas_intel' [26:13, 01:47](1155 MB) +PASS -- TEST 'control_stochy_intel' [25:54, 01:08](598 MB) +PASS -- TEST 'control_stochy_restart_intel' [16:24, 00:32](400 MB) +PASS -- TEST 'control_lndp_intel' [25:54, 01:15](596 MB) +PASS -- TEST 'control_iovr4_intel' [25:07, 01:09](588 MB) +PASS -- TEST 'control_iovr5_intel' [24:07, 00:23](590 MB) +PASS -- TEST 'control_p8_intel' [23:25, 01:12](1836 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:07, 00:58](1833 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [22:54, 01:08](1837 MB) +PASS -- TEST 'control_restart_p8_intel' [13:13, 00:51](966 MB) +PASS -- TEST 'control_noqr_p8_intel' [22:40, 00:56](1829 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [12:41, 01:09](976 MB) +PASS -- TEST 'control_decomp_p8_intel' [22:16, 01:08](1824 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:50, 01:23](1919 MB) +PASS -- TEST 'control_p8_lndp_intel' [20:28, 01:07](1838 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [20:04, 00:59](1890 MB) +PASS -- TEST 'control_p8_mynn_intel' [19:36, 01:11](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [18:53, 01:42](1838 MB) +PASS -- TEST 'regional_control_intel' [18:47, 00:13](877 MB) +PASS -- TEST 'regional_restart_intel' [13:07, 01:06](881 MB) +PASS -- TEST 'regional_decomp_intel' [18:34, 01:03](880 MB) +PASS -- TEST 'regional_2threads_intel' [18:30, 00:32](970 MB) +PASS -- TEST 'regional_noquilt_intel' [17:55, 00:14](1203 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [16:23, 00:38](877 MB) +PASS -- TEST 'regional_wofs_intel' [16:20, 00:34](1609 MB) + +PASS -- COMPILE 'ifi_intel' [09:23, 08:12] ( 1 warnings ) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'regional_ifi_control_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'regional_ifi_decomp_intel' [, ]( MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'regional_ifi_2threads_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 09:09] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [37:34, 01:50](977 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [37:35, 00:34](1156 MB) +PASS -- TEST 'rap_decomp_intel' [37:34, 01:19](976 MB) +PASS -- TEST 'rap_2threads_intel' [37:34, 01:16](1059 MB) +PASS -- TEST 'rap_restart_intel' [12:59, 01:23](843 MB) +PASS -- TEST 'rap_sfcdiff_intel' [37:34, 00:41](972 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [37:34, 01:03](973 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [12:53, 01:24](844 MB) +PASS -- TEST 'hrrr_control_intel' [37:34, 01:38](969 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [37:34, 01:59](971 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [37:35, 01:07](1051 MB) +PASS -- TEST 'hrrr_control_restart_intel' [12:40, 00:41](800 MB) +PASS -- TEST 'rrfs_v1beta_intel' [37:34, 01:17](971 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [37:34, 00:25](1935 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [37:33, 00:52](1923 MB) + +PASS -- COMPILE 'csawmg_intel' [09:24, 08:33] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [11:07, 00:43](929 MB) + +PASS -- COMPILE 'wam_intel' [08:21, 08:06] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [37:35, 00:54](333 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:29, 15:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:59, 01:15](1835 MB) +PASS -- TEST 'regional_control_faster_intel' [10:56, 00:13](874 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:22, 05:17] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:47, 00:22](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:24, 01:20](1560 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:14, 00:34](766 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:51, 01:11](766 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:46, 00:37](1077 MB) +PASS -- TEST 'control_ras_debug_intel' [08:29, 00:49](774 MB) +PASS -- TEST 'control_diag_debug_intel' [08:25, 01:07](1628 MB) +PASS -- TEST 'control_debug_p8_intel' [08:12, 00:34](1857 MB) +PASS -- TEST 'regional_debug_intel' [08:00, 00:09](924 MB) +PASS -- TEST 'rap_control_debug_intel' [07:43, 00:35](1148 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:29, 00:33](1143 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:54, 01:03](1143 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:44, 01:10](1143 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:10, 00:33](1148 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:47, 00:53](1230 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:51, 00:53](1148 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:49, 00:50](1146 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:45, 00:56](1145 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:43, 00:21](1146 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:40, 00:28](1149 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:36, 00:53](1145 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [04:26, 00:16](1150 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:05, 00:33](1144 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [03:40, 00:51](1148 MB) +PASS -- TEST 'rap_flake_debug_intel' [03:11, 01:14](1146 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:45, 01:41](1151 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 03:07] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [02:35, 00:30](384 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:27] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:25, 00:48](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:22, 01:20](851 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [00:43, 01:45](848 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [00:16, 01:19](909 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:03, 02:22](905 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [59:45, 01:26](846 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [52:10, 01:37](748 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:11, 00:50](728 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:41, 14:05] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [59:27, 01:20](1058 MB) +PASS -- TEST 'conus13km_2threads_intel' [29:12, 00:25](1038 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [29:11, 00:48](940 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:36, 08:37] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [59:19, 00:42](872 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [19:35, 03:31] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:16, 01:08](1019 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [59:13, 00:30](1023 MB) +PASS -- TEST 'conus13km_debug_intel' [58:51, 01:09](1114 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [58:32, 01:00](797 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [58:26, 00:39](1097 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:23, 01:03](1186 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:34, 03:24] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:17, 00:27](1047 MB) + +PASS -- COMPILE 'hafsw_intel' [25:42, 09:55] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [57:19, 01:16](675 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:16, 00:59](1028 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:04, 01:52](723 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [56:31, 01:43](760 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:10, 02:09](772 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [54:37, 01:05](444 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [54:09, 01:57](464 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [53:45, 01:26](341 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [53:15, 02:35](403 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [53:09, 00:39](478 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [52:46, 01:22](478 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [52:44, 00:49](546 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [52:01, 00:20](372 MB) +PASS -- TEST 'gnv1_nested_intel' [51:56, 01:26](733 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [21:37, 03:42] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [51:28, 01:30](580 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [55:10, 17:16] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [39:22, 01:19](581 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [39:22, 01:07](753 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [48:02, 09:36] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [44:29, 01:25](750 MB) + +PASS -- COMPILE 'hafs_all_intel' [50:03, 09:09] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [39:23, 01:17](708 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:23, 01:41](695 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:21, 00:31](897 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [52:06, 08:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [37:15, 00:58](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [26:46, 01:06](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [37:15, 00:13](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [37:15, 00:35](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [37:15, 00:57](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [37:15, 00:36](762 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [35:50, 01:06](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [35:23, 00:40](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [35:21, 00:42](648 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [33:56, 01:02](631 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [33:24, 00:45](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [33:20, 00:50](2019 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [32:34, 00:46](2018 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [42:59, 08:38] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [32:30, 00:41](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [34:48, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [43:11, 00:37](268 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [43:11, 00:50](411 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [32:11, 01:10](410 MB) + +PASS -- COMPILE 'atml_intel' [41:55, 10:08] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [32:05, 01:52](1854 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [31:52, 01:22](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [23:33, 00:27](998 MB) + +PASS -- COMPILE 'atml_debug_intel' [39:53, 03:57] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:52, 01:33](1896 MB) + +PASS -- COMPILE 'atmw_intel' [56:13, 09:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [15:37, 00:54](1868 MB) + +PASS -- COMPILE 'atmaero_intel' [56:10, 08:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [14:55, 01:25](3092 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:55, 00:55](2980 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:55, 00:51](2991 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [23:36, 03:21] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:50, 01:27](4510 MB) SYNOPSIS: -Starting Date/Time: 20240520 18:47:23 -Ending Date/Time: 20240520 21:20:47 -Total Time: 02h:33m:41s +Starting Date/Time: 20240524 12:02:22 +Ending Date/Time: 20240524 14:05:14 +Total Time: 02h:03m:09s Compiles Completed: 37/37 -Tests Completed: 177/177 +Tests Completed: 174/177 +Failed Tests: +* TEST regional_ifi_control_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/AnningCheng-NOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_control_intel.log +* TEST regional_ifi_decomp_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/AnningCheng-NOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_decomp_intel.log +* TEST regional_ifi_2threads_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/AnningCheng-NOAA/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: +ac5a2eec5d0bdec070df19c3d3cb405bb32eb867 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (70810f1) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5254-g16a1d881) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78862 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-l) - USE CONFIG FILE: rt.test +* (-e) - USE ECFLOW + +PASS -- COMPILE 'ifi_intel' [09:21, 08:11] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [34:45, 00:50](874 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [34:45, 00:36](874 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [34:46, 00:45](967 MB) + +SYNOPSIS: +Starting Date/Time: 20240524 15:15:44 +Ending Date/Time: 20240524 15:33:11 +Total Time: 00h:17m:30s +Compiles Completed: 1/1 +Tests Completed: 3/3 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 9dfb63b154..3c04e48a41 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -f911c00436f15ee4ba9f6fd0ef951b8d543d287f +f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,22 +11,22 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) - 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) - c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) - 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -35,278 +35,277 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240516 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_59871 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_58631 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:21, 20:54] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:25, 04:58](3077 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:21, 22:10] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:33, 13:50](1686 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:05, 15:05](1829 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:58, 07:15](957 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:46, 15:44](1658 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:22, 22:04] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:40, 13:39](1686 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:20, 10:44] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:47, 21:20](1710 MB) - -PASS -- COMPILE 's2swa_intel' [21:22, 20:46] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:58, 05:41](3095 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:47, 05:46](3094 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:29, 03:17](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:58, 05:42](3126 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:29, 03:20](3183 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:38, 05:16](3680 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:54, 05:37](3095 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:34, 04:38](3401 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:47, 05:37](3103 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:59, 08:55](3639 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:00, 06:19](3620 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:21, 09:58](4345 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:10, 07:16](4653 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:36, 05:19](3070 MB) - -PASS -- COMPILE 's2sw_intel' [21:21, 20:14] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:26, 04:13](1676 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:36, 04:23](1730 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:20, 10:48] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:03, 07:48](3161 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:20, 09:51] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:30, 05:13](1707 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:22, 15:16] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:01, 04:18](1737 MB) - -PASS -- COMPILE 's2s_intel' [19:21, 15:24] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:13, 06:40](2670 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:12, 01:59](2688 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:39, 01:08](2129 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:21, 25:27] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:15, 05:36](3103 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:16, 20:49] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:58, 14:05](1708 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:29, 07:23](1024 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:56, 16:05](1678 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:19, 09:55] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:44, 23:06](1720 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:14, 15:05] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:36, 03:27](668 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:15, 02:29](1563 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:35, 02:33](1569 MB) -PASS -- TEST 'control_latlon_intel' [04:15, 02:30](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:30](1571 MB) -PASS -- TEST 'control_c48_intel' [08:26, 06:14](1615 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:35, 05:18](732 MB) -PASS -- TEST 'control_c192_intel' [12:02, 08:46](1687 MB) -PASS -- TEST 'control_c384_intel' [16:52, 09:00](2010 MB) -PASS -- TEST 'control_c384gdas_intel' [21:21, 07:26](1199 MB) -PASS -- TEST 'control_stochy_intel' [03:42, 01:29](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:48, 00:53](436 MB) -PASS -- TEST 'control_lndp_intel' [03:49, 01:24](624 MB) -PASS -- TEST 'control_iovr4_intel' [04:43, 02:07](622 MB) -PASS -- TEST 'control_iovr5_intel' [04:37, 02:07](619 MB) -PASS -- TEST 'control_p8_intel' [05:41, 02:32](1599 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 02:28](1597 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:47, 02:31](1600 MB) -PASS -- TEST 'control_restart_p8_intel' [04:39, 01:26](797 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:33, 02:29](1592 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:22](804 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:37, 02:32](1594 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:25, 02:23](1692 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:31, 04:23](1596 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:06, 03:23](1650 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:00, 02:33](1604 MB) -PASS -- TEST 'merra2_thompson_intel' [06:04, 02:53](1603 MB) -PASS -- TEST 'regional_control_intel' [07:25, 04:32](625 MB) -PASS -- TEST 'regional_restart_intel' [03:55, 02:31](797 MB) -PASS -- TEST 'regional_decomp_intel' [07:25, 04:46](628 MB) -PASS -- TEST 'regional_noquilt_intel' [07:31, 04:32](1155 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:30, 04:33](624 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:14, 04:35](625 MB) -PASS -- TEST 'regional_wofs_intel' [08:09, 05:38](1598 MB) - -PASS -- COMPILE 'rrfs_intel' [14:13, 12:56] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:35, 06:10](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 03:49](1209 MB) -PASS -- TEST 'rap_decomp_intel' [09:41, 06:23](1007 MB) -PASS -- TEST 'rap_2threads_intel' [09:35, 05:40](1092 MB) -PASS -- TEST 'rap_restart_intel' [05:25, 03:13](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:38, 06:10](1008 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:38, 06:26](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:07, 04:36](881 MB) -PASS -- TEST 'hrrr_control_intel' [06:15, 03:20](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:15, 03:21](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:15, 02:53](1092 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:50, 01:46](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:41, 06:01](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:11, 07:27](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:10, 07:08](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [12:13, 11:03] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:28, 05:48](693 MB) -PASS -- TEST 'control_ras_intel' [04:48, 02:53](656 MB) - -PASS -- COMPILE 'wam_intel' [11:13, 10:11] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:25, 01:54](386 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:15, 16:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:51, 02:29](1602 MB) -PASS -- TEST 'regional_control_faster_intel' [06:09, 04:25](622 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:14, 12:22] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:16, 02:35](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:14, 02:34](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:35, 02:51](800 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:40, 02:36](798 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:18, 04:06](839 MB) -PASS -- TEST 'control_ras_debug_intel' [04:33, 02:45](804 MB) -PASS -- TEST 'control_diag_debug_intel' [05:16, 02:36](1659 MB) -PASS -- TEST 'control_debug_p8_intel' [04:09, 02:36](1628 MB) -PASS -- TEST 'regional_debug_intel' [18:05, 15:51](665 MB) -PASS -- TEST 'rap_control_debug_intel' [05:31, 04:39](1181 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:31, 04:31](1178 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 04:40](1178 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:41, 04:44](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 04:42](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:55, 05:00](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:43, 04:48](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:42, 04:48](1186 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:42, 04:50](1180 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 04:47](1180 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:34](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:40, 04:44](1179 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:34, 07:29](1175 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:38, 04:41](1173 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:45, 05:52](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:42, 04:47](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 08:02](1182 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:13, 06:13] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:45, 04:38](431 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:18, 10:58] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:03, 03:39](1058 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:15, 05:10](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:23, 02:49](886 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:09, 04:49](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:27, 02:27](942 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 02:57](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:04, 03:56](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:44, 01:32](782 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 14:45] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:00, 01:59](1087 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:36, 01:01](1090 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:27, 01:08](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 10:53] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:09, 03:40](914 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:14, 06:39] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:39](1058 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:31, 04:26](1055 MB) -PASS -- TEST 'conus13km_debug_intel' [15:58, 13:24](1140 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:37](826 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:50, 07:44](1139 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 13:17](1228 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:13, 06:37] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:40, 04:35](1083 MB) - -PASS -- COMPILE 'hafsw_intel' [19:15, 17:49] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:33, 04:41](718 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:13, 05:20](1069 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:19, 06:31](784 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:45, 10:59](803 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:42, 12:00](822 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:25, 04:42](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:41, 05:46](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:06, 02:24](391 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:21, 06:18](462 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:01, 03:21](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:30, 03:05](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:21, 03:57](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:31, 01:17](431 MB) -PASS -- TEST 'gnv1_nested_intel' [07:17, 03:27](785 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:19, 08:15] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:17, 12:01](620 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:19, 26:27] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:25, 07:08](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:29, 07:12](685 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:16, 18:37] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:34, 05:22](677 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:20, 15:25] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:30, 05:39](749 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:37, 05:40](736 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:11, 16:13](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:13, 08:30] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:30, 02:32](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:33, 01:34](749 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:29, 02:24](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:31, 02:27](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:40, 02:24](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:34, 02:29](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:25, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:27, 02:23](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:30, 05:43](689 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:32, 05:44](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:23, 02:35](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:38, 03:54](2016 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:34, 03:55](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:18, 05:41] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:22, 05:10](736 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:13, 08:29] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:28, 02:31](760 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:12, 02:41] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 01:13](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:10](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:49](452 MB) - -PASS -- COMPILE 'atml_intel' [17:19, 14:47] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:44, 06:50](1639 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:54, 06:18](1633 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:06, 03:31](853 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:17, 09:43] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:41, 05:36](1660 MB) - -PASS -- COMPILE 'atmw_intel' [14:19, 13:25] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:30, 01:35](1633 MB) - -PASS -- COMPILE 'atmaero_intel' [13:19, 12:08] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:39, 03:41](2949 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:49, 04:17](2994 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:16, 04:22](3011 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:18, 07:24] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:54, 22:09](4532 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:16, 19:31] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:28, 05:35](3202 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:17, 20:32] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:07, 14:14](1911 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:08, 15:18](1942 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:52, 07:43](1085 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:47, 16:25](1884 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:17, 20:41] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:18, 14:17](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:14, 09:23] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:49, 21:58](1935 MB) + +PASS -- COMPILE 's2swa_intel' [20:16, 19:25] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:30, 06:12](3219 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:47, 06:16](3217 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:05, 03:55](3151 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:31, 06:04](3251 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:04, 03:50](3184 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:27, 06:00](3724 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:27, 06:20](3216 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:21, 04:56](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:49, 06:18](3227 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:43, 09:37](3812 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:22, 06:17](3614 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:51, 10:25](4495 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:27, 07:02](4650 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:14, 05:52](3211 MB) + +PASS -- COMPILE 's2sw_intel' [19:15, 18:48] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:32, 04:54](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:44, 04:47](1985 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:13, 09:19] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:24, 08:39](3286 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:14, 08:36] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:18, 05:55](1951 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:26] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:38, 04:47](1987 MB) + +PASS -- COMPILE 's2s_intel' [15:15, 14:23] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:03, 06:57](2931 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:17](2928 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:08, 01:29](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:23, 24:05] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:18, 06:04](3229 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:14, 19:43] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:53, 14:35](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:05, 07:34](1105 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:41, 16:38](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:19, 08:49] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:27, 23:44](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:19, 14:22] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:31, 03:22](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 02:24](1564 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:20, 02:27](1573 MB) +PASS -- TEST 'control_latlon_intel' [04:08, 02:24](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:18, 02:25](1561 MB) +PASS -- TEST 'control_c48_intel' [08:06, 06:11](1610 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:38, 05:15](733 MB) +PASS -- TEST 'control_c192_intel' [10:40, 08:39](1691 MB) +PASS -- TEST 'control_c384_intel' [15:18, 08:52](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [15:56, 07:07](1198 MB) +PASS -- TEST 'control_stochy_intel' [02:43, 01:25](629 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:45, 00:52](441 MB) +PASS -- TEST 'control_lndp_intel' [02:48, 01:19](623 MB) +PASS -- TEST 'control_iovr4_intel' [03:42, 02:03](622 MB) +PASS -- TEST 'control_iovr5_intel' [03:38, 02:04](620 MB) +PASS -- TEST 'control_p8_intel' [05:20, 02:59](1872 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:37, 03:16](1859 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:05, 03:06](1865 MB) +PASS -- TEST 'control_restart_p8_intel' [04:20, 01:56](1012 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:01, 03:01](1860 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 02:02](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:52, 03:09](1863 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:00](1958 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:36, 04:56](1865 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:59, 04:01](1915 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:55, 03:10](1870 MB) +PASS -- TEST 'merra2_thompson_intel' [05:54, 03:22](1868 MB) +PASS -- TEST 'regional_control_intel' [07:16, 04:55](879 MB) +PASS -- TEST 'regional_restart_intel' [04:46, 02:51](871 MB) +PASS -- TEST 'regional_decomp_intel' [07:03, 05:09](861 MB) +PASS -- TEST 'regional_noquilt_intel' [05:51, 04:47](1187 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:51, 04:42](877 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:56, 04:54](868 MB) +PASS -- TEST 'regional_wofs_intel' [06:50, 05:34](1598 MB) + +PASS -- COMPILE 'rrfs_intel' [13:18, 12:13] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:28, 06:07](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:49, 03:40](1207 MB) +PASS -- TEST 'rap_decomp_intel' [08:28, 06:21](1006 MB) +PASS -- TEST 'rap_2threads_intel' [07:20, 05:36](1093 MB) +PASS -- TEST 'rap_restart_intel' [05:00, 03:11](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:29, 06:04](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:29, 06:21](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:06, 04:37](884 MB) +PASS -- TEST 'hrrr_control_intel' [05:12, 03:11](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:11, 03:17](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:12, 02:45](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:38, 01:45](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:31, 05:57](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:21, 07:18](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:24, 07:07](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [11:17, 10:18] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:12, 06:29](966 MB) +PASS -- TEST 'control_ras_intel' [04:35, 02:52](656 MB) + +PASS -- COMPILE 'wam_intel' [10:18, 09:30] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:32, 01:53](386 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:19, 16:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:17, 02:53](1859 MB) +PASS -- TEST 'regional_control_faster_intel' [05:47, 04:38](876 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:18, 11:23] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:11, 02:32](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:26](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:34, 02:49](805 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:34](800 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:02, 04:25](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [03:36, 02:41](810 MB) +PASS -- TEST 'control_diag_debug_intel' [04:53, 02:35](1659 MB) +PASS -- TEST 'control_debug_p8_intel' [04:54, 03:11](1896 MB) +PASS -- TEST 'regional_debug_intel' [17:57, 16:18](914 MB) +PASS -- TEST 'rap_control_debug_intel' [05:38, 04:44](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:30, 04:30](1173 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:42](1182 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:28, 04:36](1179 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:38, 04:37](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:23, 04:48](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:35, 04:51](1177 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:35, 04:46](1187 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:28, 04:38](1179 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:44, 04:37](1183 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:42, 04:34](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:36, 04:36](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 07:47](1181 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:39, 04:34](1173 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:37, 05:54](1182 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:34, 04:35](1183 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:55, 08:04](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:17, 05:27] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:28, 04:33](425 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:18, 10:16] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 03:26](1064 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:57, 05:05](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:50, 02:45](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:03, 04:44](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:04, 02:26](943 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:53, 02:52](888 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:57, 03:52](802 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:31](783 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:20, 14:14] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:45, 01:50](1090 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:13, 00:54](1090 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:13, 01:08](978 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:20, 10:17] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:49, 03:36](915 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:43, 06:05] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:37](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:28, 04:23](1053 MB) +PASS -- TEST 'conus13km_debug_intel' [15:44, 13:18](1138 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 13:20](827 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:31, 07:54](1138 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:21, 13:15](1208 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:17, 05:46] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:34, 04:31](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [17:23, 16:32] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:19, 04:26](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:42, 04:58](1066 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:46, 06:19](788 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:35, 10:47](805 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:46, 11:52](823 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:04, 04:36](482 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:29, 05:41](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:53, 02:17](396 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:39, 06:09](460 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:57, 03:16](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:14, 03:01](517 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:19, 03:44](586 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:15](430 MB) +PASS -- TEST 'gnv1_nested_intel' [05:06, 03:19](788 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:19, 06:59] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:08, 12:23](625 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [26:21, 25:29] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:14, 07:03](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:18, 07:05](685 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:20, 17:54] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:25, 05:18](678 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:18, 14:17] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:28, 05:28](749 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:32, 05:41](740 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:12](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:12, 07:36] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:27](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:26, 01:31](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:21, 02:20](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:22, 02:22](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:28, 02:23](637 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:29, 02:30](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:21, 02:28](750 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:23, 02:20](637 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:23, 05:38](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:16, 05:34](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:30](759 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:30, 03:50](2016 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:36, 03:51](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:17, 04:51] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:09](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 07:38] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:27](747 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:20] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:02](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:36, 00:59](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:40](454 MB) + +PASS -- COMPILE 'atml_intel' [15:20, 14:08] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:33, 06:21](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:28, 06:06](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 04:01](1045 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:20, 08:44] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:34, 06:03](1922 MB) + +PASS -- COMPILE 'atmw_intel' [13:20, 12:46] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:23](1892 MB) + +PASS -- COMPILE 'atmaero_intel' [12:18, 11:14] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:29, 04:04](3124 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:25, 04:15](3003 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:17](3011 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:29] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:27, 21:43](4540 MB) SYNOPSIS: -Starting Date/Time: 20240520 21:55:09 -Ending Date/Time: 20240520 23:37:30 -Total Time: 01h:43m:26s +Starting Date/Time: 20240523 07:08:30 +Ending Date/Time: 20240523 08:38:45 +Total Time: 01h:31m:05s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 7da93ec909..1f3bdb048a 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -3e15eaa45553e76c6aa00a66b999b6b85d2b5fb3 +f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,22 +11,22 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) - 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) - c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) - 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -35,279 +35,278 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240516 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_203583 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_186373 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:12] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:52, 07:04](3073 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:16, 20:49] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [13:29, 13:38](1696 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:54, 17:06](1808 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:47, 08:54](943 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:46, 14:59](1668 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:16, 21:06] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:09, 13:20](1684 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:11, 10:49] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:11, 23:47](1709 MB) - -PASS -- COMPILE 's2swa_intel' [17:11, 15:54] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:34, 07:55](3101 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:25, 07:49](3099 MB) -PASS -- TEST 'cpld_restart_p8_intel' [54:56, 04:59](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:34, 08:05](3123 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [54:56, 05:05](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:29, 06:32](3412 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:29, 07:40](3098 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:29, 07:01](3022 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:40, 07:52](3100 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:30, 10:33](3266 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:44, 08:59](3604 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:37, 12:57](4036 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:27, 09:12](4344 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:32, 07:57](3067 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 14:44] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:06, 04:45](1686 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:04, 05:29](1735 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:11, 10:42] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:56, 09:32](3138 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 09:19] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:16, 05:46](1701 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:16] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:55, 05:11](1733 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 13:06] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [25:04, 06:55](2658 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:39, 02:00](2682 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:04, 01:06](2113 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:16, 22:59] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [52:44, 07:49](3098 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:13, 21:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [58:37, 15:04](1701 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:42, 07:18](1002 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:51, 16:56](1683 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:16, 12:50] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:29, 26:15](1709 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:12, 15:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [54:00, 03:42](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [53:23, 02:57](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [52:59, 03:12](1581 MB) -PASS -- TEST 'control_latlon_intel' [51:55, 03:06](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:04, 03:02](1570 MB) -PASS -- TEST 'control_c48_intel' [36:05, 06:36](1608 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:48, 05:38](727 MB) -PASS -- TEST 'control_c192_intel' [58:16, 09:40](1694 MB) -PASS -- TEST 'control_c384_intel' [00:18, 18:04](1987 MB) -PASS -- TEST 'control_c384gdas_intel' [51:41, 14:13](1185 MB) -PASS -- TEST 'control_stochy_intel' [33:36, 01:42](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:26](433 MB) -PASS -- TEST 'control_lndp_intel' [14:29, 01:41](629 MB) -PASS -- TEST 'control_iovr4_intel' [03:33, 02:36](624 MB) -PASS -- TEST 'control_iovr5_intel' [03:50, 02:56](625 MB) -PASS -- TEST 'control_p8_intel' [06:50, 03:44](1608 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:53, 03:24](1608 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:50, 03:29](1611 MB) -PASS -- TEST 'control_restart_p8_intel' [03:43, 02:00](792 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:12](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:06, 02:17](796 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:14, 03:16](1596 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:59, 02:39](1691 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:10, 05:23](1608 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:04, 04:21](1659 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:57, 03:55](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [05:47, 03:49](1614 MB) -PASS -- TEST 'regional_control_intel' [06:13, 04:49](622 MB) -PASS -- TEST 'regional_restart_intel' [03:52, 02:35](790 MB) -PASS -- TEST 'regional_decomp_intel' [06:06, 04:56](620 MB) -PASS -- TEST 'regional_2threads_intel' [04:52, 03:09](762 MB) -PASS -- TEST 'regional_noquilt_intel' [06:01, 05:05](1157 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:31, 05:09](617 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:47, 04:59](621 MB) -PASS -- TEST 'regional_wofs_intel' [08:43, 06:25](1594 MB) - -PASS -- COMPILE 'rrfs_intel' [15:13, 14:51] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [58:40, 06:53](1013 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [55:36, 04:00](1187 MB) -PASS -- TEST 'rap_decomp_intel' [58:40, 07:03](1009 MB) -PASS -- TEST 'rap_2threads_intel' [57:59, 05:57](1094 MB) -PASS -- TEST 'rap_restart_intel' [06:29, 03:42](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [58:46, 06:47](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [58:46, 06:56](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:30, 05:14](883 MB) -PASS -- TEST 'hrrr_control_intel' [55:44, 03:41](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [55:44, 03:50](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [54:36, 03:06](1085 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:22, 01:57](839 MB) -PASS -- TEST 'rrfs_v1beta_intel' [58:47, 06:41](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [59:22, 08:01](1967 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:47, 07:42](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [13:13, 12:10] -PASS -- TEST 'control_csawmg_intel' [10:09, 06:54](694 MB) -PASS -- TEST 'control_ras_intel' [04:33, 03:31](655 MB) - -PASS -- COMPILE 'wam_intel' [12:13, 11:34] -PASS -- TEST 'control_wam_intel' [03:43, 02:35](368 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:14, 17:44] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:38, 03:19](1608 MB) -PASS -- TEST 'regional_control_faster_intel' [07:11, 04:40](619 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 12:44] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:35, 03:02](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:56](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:49, 03:07](787 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:53](789 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:24](828 MB) -PASS -- TEST 'control_ras_debug_intel' [03:39, 02:53](799 MB) -PASS -- TEST 'control_diag_debug_intel' [05:33, 03:18](1648 MB) -PASS -- TEST 'control_debug_p8_intel' [05:34, 03:24](1622 MB) -PASS -- TEST 'regional_debug_intel' [18:35, 16:23](642 MB) -PASS -- TEST 'rap_control_debug_intel' [06:16, 05:02](1172 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:44, 05:20](1170 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:42, 05:02](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:42, 05:36](1176 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 05:41](1172 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:45, 05:42](1255 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:39, 05:38](1172 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 05:43](1172 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:39, 05:40](1174 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:37, 05:37](1172 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:40, 05:55](1172 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 06:25](1170 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:37, 09:25](1171 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:34, 06:15](1169 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:23, 06:22](1174 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:20, 05:21](1172 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:59, 08:44](1173 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:12, 09:37] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [08:57, 05:15](400 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:16, 11:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 03:51](1049 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:41, 06:11](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:31, 03:40](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 05:20](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:08, 02:46](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 03:44](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:05, 04:06](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 01:42](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:08, 02:14](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:18, 01:20](1079 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:41, 01:17](977 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:18] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:13, 04:28](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 05:13](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:52](1050 MB) -PASS -- TEST 'conus13km_debug_intel' [16:12, 14:24](1134 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:12, 14:00](810 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:03, 08:12](1120 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 14:21](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 07:36] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 05:08](1069 MB) - -PASS -- COMPILE 'hafsw_intel' [15:12, 13:55] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:35, 05:20](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:57, 04:40](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:36](741 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:56, 11:53](792 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:32, 13:03](799 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:20, 05:24](475 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 06:48](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:25, 03:39](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:40, 08:10](436 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 03:46](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:14, 03:31](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:17, 04:54](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:53, 02:24](404 MB) -PASS -- TEST 'gnv1_nested_intel' [06:29, 04:13](770 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:55] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:07, 13:18](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [25:14, 24:06] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:03, 07:45](613 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:07, 08:20](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:12, 15:04] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:10, 05:56](786 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:16, 13:02] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:06, 06:12](747 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:29, 06:20](732 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:13, 20:12](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:12, 12:31] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:31, 02:37](759 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:33, 01:36](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:26, 02:30](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 02:28](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:28, 02:30](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:29, 02:36](759 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:28, 02:35](762 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:25, 02:28](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:03, 05:58](689 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:08, 05:56](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:36](747 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:34, 04:34](2021 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:31, 04:35](2019 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 06:32] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:37, 05:24](743 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:16, 11:52] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:59, 02:34](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 02:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:37, 01:50](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:50, 02:36](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:58, 01:10](456 MB) - -PASS -- COMPILE 'atml_intel' [18:12, 17:45] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:01, 09:17](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:58, 08:39](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 03:47](835 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:12, 12:31] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:37, 07:11](1656 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 14:01] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:19, 03:07](1649 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 13:50] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:57, 06:26](2943 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:56, 06:57](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:11, 07:20](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:28] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:56, 18:30](4489 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [23:43, 23:43] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:35, 07:31](3199 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:00, 26:00] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:50, 13:58](1924 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:20, 14:30](1942 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:37, 06:45](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:42, 14:52](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:24, 27:24] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:24, 14:05](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:18, 17:18] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:25, 24:50](1939 MB) + +PASS -- COMPILE 's2swa_intel' [22:56, 22:56] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:45, 08:33](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:37, 08:22](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:53, 05:05](3159 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:12, 08:17](3248 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:24, 05:35](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:42, 06:57](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:10, 08:18](3224 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:56, 07:14](3172 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:23, 08:17](3228 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:45, 10:17](3440 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:54, 07:53](3607 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:56, 13:14](4194 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:51, 09:27](4351 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:24, 08:15](3210 MB) + +PASS -- COMPILE 's2sw_intel' [20:25, 20:25] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:14, 06:05](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:02, 05:43](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:59, 16:58] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:47, 10:52](3260 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:38, 15:37] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:12, 06:15](1943 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:18, 19:11] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:44, 05:39](1991 MB) + +PASS -- COMPILE 's2s_intel' [19:46, 19:46] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:31, 07:00](2912 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:56, 02:12](2919 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:55, 01:10](2312 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:44, 26:44] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:15, 08:08](3223 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:48, 22:48] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:40, 15:30](1931 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:55, 07:52](1091 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:04, 17:57](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:47, 14:47] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:19, 27:03](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:14, 16:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:13, 04:03](672 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 03:44](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:10, 03:42](1579 MB) +PASS -- TEST 'control_latlon_intel' [03:52, 03:37](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:06, 03:37](1568 MB) +PASS -- TEST 'control_c48_intel' [07:03, 06:37](1601 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:04, 05:42](726 MB) +PASS -- TEST 'control_c192_intel' [10:22, 10:02](1685 MB) +PASS -- TEST 'control_c384_intel' [19:02, 18:24](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [16:31, 14:37](1187 MB) +PASS -- TEST 'control_stochy_intel' [02:13, 01:58](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:29](431 MB) +PASS -- TEST 'control_lndp_intel' [02:00, 01:49](627 MB) +PASS -- TEST 'control_iovr4_intel' [03:18, 03:05](623 MB) +PASS -- TEST 'control_iovr5_intel' [03:24, 03:04](623 MB) +PASS -- TEST 'control_p8_intel' [03:59, 03:23](1873 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:02, 03:51](1870 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:37, 03:58](1875 MB) +PASS -- TEST 'control_restart_p8_intel' [03:30, 02:53](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:35, 04:11](1865 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:19, 02:26](1010 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:36, 04:42](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:37, 03:41](1951 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:08, 05:44](1872 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:04, 04:45](1924 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:08, 04:02](1879 MB) +PASS -- TEST 'merra2_thompson_intel' [05:04, 04:18](1873 MB) +PASS -- TEST 'regional_control_intel' [05:22, 05:03](869 MB) +PASS -- TEST 'regional_restart_intel' [02:57, 02:42](862 MB) +PASS -- TEST 'regional_decomp_intel' [05:17, 05:00](862 MB) +PASS -- TEST 'regional_2threads_intel' [03:25, 03:07](1010 MB) +PASS -- TEST 'regional_noquilt_intel' [05:21, 05:01](1187 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:52, 05:10](861 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:05, 05:50](869 MB) +PASS -- TEST 'regional_wofs_intel' [06:23, 06:05](1592 MB) + +PASS -- COMPILE 'rrfs_intel' [14:06, 14:06] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:36, 07:00](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:38, 04:09](1193 MB) +PASS -- TEST 'rap_decomp_intel' [07:55, 07:20](1010 MB) +PASS -- TEST 'rap_2threads_intel' [07:02, 06:24](1098 MB) +PASS -- TEST 'rap_restart_intel' [04:24, 03:31](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:53, 07:17](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:30, 07:58](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:58, 05:21](882 MB) +PASS -- TEST 'hrrr_control_intel' [04:47, 04:12](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:48, 04:03](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:36, 03:12](1082 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:39, 02:26](840 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:13, 07:09](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:37, 08:23](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:39, 08:27](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [14:49, 14:49] +PASS -- TEST 'control_csawmg_intel' [07:03, 06:48](965 MB) +PASS -- TEST 'control_ras_intel' [03:40, 03:29](655 MB) + +PASS -- COMPILE 'wam_intel' [13:46, 13:45] +PASS -- TEST 'control_wam_intel' [02:24, 02:13](368 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [24:05, 24:05] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:57, 03:20](1874 MB) +PASS -- TEST 'regional_control_faster_intel' [04:59, 04:43](869 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:10, 15:10] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:45, 03:16](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:37, 03:15](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:28, 03:18](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:03, 02:53](786 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:46, 04:31](1098 MB) +PASS -- TEST 'control_ras_debug_intel' [03:15, 03:05](796 MB) +PASS -- TEST 'control_diag_debug_intel' [03:16, 02:58](1645 MB) +PASS -- TEST 'control_debug_p8_intel' [03:49, 03:30](1886 MB) +PASS -- TEST 'regional_debug_intel' [16:25, 16:11](886 MB) +PASS -- TEST 'rap_control_debug_intel' [05:30, 05:18](1170 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:25, 05:13](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:32, 05:20](1175 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:33, 05:21](1174 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 05:16](1170 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:43, 05:24](1254 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:39, 05:25](1170 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:50, 05:36](1171 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:36, 05:25](1172 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:48, 05:21](1170 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:30, 05:07](1171 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:45, 05:32](1168 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:12, 07:58](1170 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:18, 05:06](1167 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:41, 06:28](1172 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:24, 05:12](1171 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:13, 08:39](1173 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:31, 09:30] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:18, 05:05](402 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:34, 13:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:25, 03:52](1052 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:27, 05:48](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:01, 03:25](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:46, 05:18](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:15, 02:46](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:12, 03:38](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:40, 04:10](785 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 02:16](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:49, 17:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:09, 02:33](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:46, 01:26](1078 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:53, 01:35](977 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:50, 12:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 04:46](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:45, 09:43] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:08, 04:54](1049 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:09, 04:55](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [15:09, 14:46](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:43, 14:18](807 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:30, 08:11](1114 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:31, 14:14](1200 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:14, 11:14] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:08, 04:56](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [17:00, 17:00] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:05, 05:18](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:47, 04:33](1058 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:38, 07:41](743 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [12:24, 11:38](787 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:11, 13:15](805 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:13, 05:25](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 06:46](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:07, 03:04](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:36, 08:00](446 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:13, 03:42](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:14, 03:33](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:29, 04:50](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:00, 01:43](404 MB) +PASS -- TEST 'gnv1_nested_intel' [05:45, 04:15](768 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:22, 12:22] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:47, 12:51](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:17, 24:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:20, 07:39](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [08:25, 07:45](784 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:29, 17:26] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:41, 06:00](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [30:56, 30:54] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:56, 06:07](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:14, 06:24](730 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:33, 20:02](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:37, 13:36] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:44, 02:34](758 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:44, 01:35](746 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:36, 02:27](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:36, 02:26](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:41, 02:32](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:42, 02:33](759 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:46, 02:36](759 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:32, 02:23](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:37, 06:04](690 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:44, 06:12](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:43, 02:36](759 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:44, 04:34](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:47, 04:37](2019 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:21, 09:21] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:10, 06:00](741 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:00, 12:59] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:44, 02:34](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:05, 04:02] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:07, 01:45](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:39, 01:18](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:19, 00:59](456 MB) + +PASS -- COMPILE 'atml_intel' [16:28, 16:24] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:20, 07:08](1897 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:14, 07:57](1897 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 04:25](1040 MB) + +PASS -- COMPILE 'atml_debug_intel' [18:15, 18:12] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 06:36](1909 MB) + +PASS -- COMPILE 'atmw_intel' [17:08, 17:03] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 02:53](1903 MB) + +PASS -- COMPILE 'atmaero_intel' [15:55, 15:55] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:58, 06:14](3117 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 06:29](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:14, 06:38](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:01, 11:01] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:06, 18:20](4488 MB) SYNOPSIS: -Starting Date/Time: 20240520 14:31:01 -Ending Date/Time: 20240520 16:53:32 -Total Time: 02h:23m:33s +Starting Date/Time: 20240523 10:48:23 +Ending Date/Time: 20240523 14:32:13 +Total Time: 03h:45m:28s Compiles Completed: 39/39 Tests Completed: 183/183 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index a5b7b7bdd5..b08d35c7b4 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -3e15eaa45553e76c6aa00a66b999b6b85d2b5fb3 +740041579e51120ea3749d5d868d838a4baeb7f2 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,13 +9,13 @@ Submodule hashes used in testing: 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -24,373 +24,427 @@ 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-20240516 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2036849 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1631238 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [13:40, 13:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:44, 05:46](3171 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:41, 16:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:46, 17:57](1744 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:58, 17:58](1987 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:03, 08:06](1130 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:08, 20:25](1630 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:13, 16:12] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:34, 18:01](1713 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:30, 05:29] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:04, 23:13](1696 MB) - -PASS -- COMPILE 's2swa_intel' [13:21, 13:21] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [06:49, 05:51](3189 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:58, 06:01](3202 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:35, 03:31](3253 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:56, 06:05](3218 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:38, 03:30](3267 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:34, 05:46](3550 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:45, 05:54](3205 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:41, 04:51](3062 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:03, 06:59](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:50, 10:03](3343 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:34, 06:12](3632 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:25, 10:05](4106 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:01, 06:20](4353 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:37, 06:43](3152 MB) - -PASS -- COMPILE 's2sw_intel' [12:52, 12:51] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:36, 04:47](1756 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:18, 04:24](1794 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:28, 05:27] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:31, 08:39](3231 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:00, 04:59] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:39, 05:51](1747 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:04, 12:03] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:20, 04:26](1722 MB) - -PASS -- COMPILE 's2s_intel' [12:06, 12:05] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:11, 09:36](2827 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:10, 02:37](2836 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:52, 01:24](2303 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:28, 21:27] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:32](3209 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:07, 16:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:03, 17:12](1736 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:09, 09:05](1180 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:46, 20:53](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:04, 05:04] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:56, 25:06](1714 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:04, 12:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:32, 03:19](708 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 02:54](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:32, 02:58](1594 MB) -PASS -- TEST 'control_latlon_intel' [03:24, 02:56](1581 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:58](1597 MB) -PASS -- TEST 'control_c48_intel' [08:13, 07:44](1762 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:39, 06:26](870 MB) -PASS -- TEST 'control_c192_intel' [11:19, 10:37](1743 MB) -PASS -- TEST 'control_c384_intel' [12:19, 10:45](2022 MB) -PASS -- TEST 'control_c384gdas_intel' [10:38, 08:04](1411 MB) -PASS -- TEST 'control_stochy_intel' [01:50, 01:37](665 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:20, 00:58](511 MB) -PASS -- TEST 'control_lndp_intel' [01:47, 01:34](661 MB) -PASS -- TEST 'control_iovr4_intel' [02:42, 02:28](663 MB) -PASS -- TEST 'control_iovr5_intel' [02:42, 02:28](659 MB) -PASS -- TEST 'control_p8_intel' [03:43, 02:59](1629 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:46, 03:00](1625 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:46, 03:05](1627 MB) -PASS -- TEST 'control_restart_p8_intel' [02:15, 01:38](896 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:37, 02:57](1610 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 02:30](928 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:44, 03:06](1608 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:24, 02:47](1719 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:58, 06:18](1630 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:07, 05:17](1632 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:02, 04:11](1640 MB) -PASS -- TEST 'merra2_thompson_intel' [05:54, 05:06](1612 MB) -PASS -- TEST 'regional_control_intel' [07:07, 06:34](858 MB) -PASS -- TEST 'regional_restart_intel' [03:23, 02:52](1020 MB) -PASS -- TEST 'regional_decomp_intel' [07:30, 06:56](846 MB) -PASS -- TEST 'regional_2threads_intel' [04:08, 03:34](871 MB) -PASS -- TEST 'regional_noquilt_intel' [05:57, 05:24](1366 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:52, 05:20](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:58, 05:25](856 MB) -PASS -- TEST 'regional_wofs_intel' [07:34, 07:04](1904 MB) - -PASS -- COMPILE 'rrfs_intel' [11:08, 11:08] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:08, 08:41](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:11, 04:17](1303 MB) -PASS -- TEST 'rap_decomp_intel' [08:34, 08:10](1030 MB) -PASS -- TEST 'rap_2threads_intel' [07:48, 07:21](1189 MB) -PASS -- TEST 'rap_restart_intel' [04:33, 04:04](1107 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:15, 07:46](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:34, 08:11](1043 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:24, 05:52](1139 MB) -PASS -- TEST 'hrrr_control_intel' [04:30, 04:02](1039 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:30, 04:06](1041 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:02, 03:39](1113 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:37, 02:13](1013 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:10, 07:39](1107 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:40, 09:23](2001 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:24, 09:08](2058 MB) - -PASS -- COMPILE 'csawmg_intel' [10:38, 10:37] -PASS -- TEST 'control_csawmg_intel' [06:38, 06:07](750 MB) -PASS -- TEST 'control_ras_intel' [03:30, 03:16](748 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:28, 04:28] -PASS -- TEST 'control_csawmg_gnu' [08:51, 08:21](545 MB) - -PASS -- COMPILE 'wam_intel' [10:16, 10:16] -PASS -- TEST 'control_wam_intel' [02:19, 02:05](652 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:46, 18:45] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:21, 02:42](1620 MB) -PASS -- TEST 'regional_control_faster_intel' [05:11, 04:44](853 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:51, 06:51] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:48, 03:14](1616 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:20, 02:43](1622 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:15, 03:02](821 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:01, 02:48](823 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:45, 04:18](870 MB) -PASS -- TEST 'control_ras_debug_intel' [03:03, 02:52](834 MB) -PASS -- TEST 'control_diag_debug_intel' [03:26, 02:51](1665 MB) -PASS -- TEST 'control_debug_p8_intel' [03:30, 02:59](1626 MB) -PASS -- TEST 'regional_debug_intel' [17:45, 17:17](852 MB) -PASS -- TEST 'rap_control_debug_intel' [05:06, 04:53](1210 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:03, 04:52](1210 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:08, 04:55](1213 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:05, 04:52](1220 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:02, 04:50](1211 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:32, 05:09](1290 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:08, 04:56](1212 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 05:01](1207 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:05, 04:53](1214 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 04:59](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:02, 04:50](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:02, 04:50](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:06, 07:55](1207 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:07, 04:55](1207 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:06, 05:53](1215 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:07, 04:55](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:29, 11:00](1212 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:08, 05:07] -PASS -- TEST 'control_csawmg_debug_gnu' [02:46, 02:14](529 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:47, 03:46] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:10, 05:00](527 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:33, 10:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:41, 03:54](1164 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:51, 06:27](1048 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:48, 03:23](995 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 06:09](1089 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:37, 03:11](968 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:00, 03:37](930 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:24, 04:50](1044 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:17, 01:53](945 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:40, 16:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:51, 02:06](1203 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:54](1120 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:48, 01:14](1115 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:51, 10:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:41, 04:10](990 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:07, 04:06] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:07, 04:53](1092 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:10, 04:56](1084 MB) -PASS -- TEST 'conus13km_debug_intel' [15:16, 14:36](1236 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 15:03](936 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:42, 08:10](1159 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:59, 14:24](1297 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:02, 04:01] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:13, 04:58](1130 MB) - -PASS -- COMPILE 'hafsw_intel' [12:24, 12:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:05, 05:05](744 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:40, 06:17](1118 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:17, 07:04](830 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:29, 13:26](865 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:29, 15:12](883 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 05:32](499 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:00, 06:54](517 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:15, 02:41](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:10, 07:25](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:23, 03:46](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:16, 03:33](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:57, 04:10](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:34, 01:13](410 MB) -PASS -- TEST 'gnv1_nested_intel' [04:44, 04:08](805 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:25, 04:23] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:17, 13:28](586 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:23, 20:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:40, 08:49](653 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:44, 08:50](738 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:15, 12:14] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:31, 07:36](733 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:31, 11:30] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:36, 07:35](832 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:40, 06:36](823 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:57, 16:16](1221 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:08, 06:08] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:55, 02:43](1143 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:49, 01:39](1106 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:39, 02:32](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:46, 02:38](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:45, 02:37](1012 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:53, 02:44](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:53, 02:45](1128 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:39, 02:32](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:16, 06:11](1057 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:10, 06:08](1046 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:46, 02:41](1144 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:06, 03:56](2493 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 04:03](2488 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [02:53, 02:52] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 06:25](1076 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:19, 06:18] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:46, 02:37](1163 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:07, 01:06] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:49](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:11, 00:55](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:33](323 MB) - -PASS -- COMPILE 'atml_intel' [12:28, 12:28] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:15, 04:16](1622 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:18, 04:19](1615 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:59, 02:18](902 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 05:10] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:30, 05:44](1596 MB) - -PASS -- COMPILE 'atmw_intel' [11:32, 11:31] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:22, 01:41](1685 MB) - -PASS -- COMPILE 'atmaero_intel' [11:12, 11:11] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:52, 04:04](3006 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:59, 04:54](3087 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:38, 04:59](3112 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:18, 04:16] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:44, 41:00](4461 MB) - -PASS -- COMPILE 'atm_gnu' [05:01, 05:00] -PASS -- TEST 'control_c48_gnu' [11:49, 11:15](1541 MB) -PASS -- TEST 'control_stochy_gnu' [03:42, 03:24](503 MB) -PASS -- TEST 'control_ras_gnu' [05:04, 04:50](514 MB) -PASS -- TEST 'control_p8_gnu' [05:33, 04:43](1263 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:21, 04:36](1266 MB) -PASS -- TEST 'control_flake_gnu' [10:47, 10:33](544 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:58, 04:56] -PASS -- TEST 'rap_control_gnu' [11:21, 10:53](867 MB) -PASS -- TEST 'rap_decomp_gnu' [11:30, 11:03](862 MB) -PASS -- TEST 'rap_2threads_gnu' [10:30, 09:57](944 MB) -PASS -- TEST 'rap_restart_gnu' [06:05, 05:26](589 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:33, 10:56](860 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:39, 11:11](863 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:35, 07:58](593 MB) -PASS -- TEST 'hrrr_control_gnu' [06:05, 05:34](860 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:05, 05:35](848 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 04:58](934 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:11, 05:38](861 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:15, 02:50](573 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:15, 02:48](668 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:19, 10:40](858 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:41, 08:40] -PASS -- TEST 'control_diag_debug_gnu' [02:29, 01:39](1284 MB) -PASS -- TEST 'regional_debug_gnu' [11:50, 11:08](566 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:54, 02:37](867 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:50, 02:34](871 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:49, 02:33](871 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:53, 02:35](871 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:53](953 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 04:03](864 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:54, 02:38](870 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:54, 02:39](829 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:57, 01:40](510 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:00, 01:45](494 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:20, 01:43](1253 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:52, 02:37](870 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:10, 02:54](869 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:10, 04:30](875 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:43, 02:41] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:39, 04:38] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:08, 09:32](719 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:06](718 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:07, 08:36](769 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:15, 04:40](759 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:38, 05:10](722 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:41, 07:05](564 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:02, 02:34](549 MB) -PASS -- TEST 'conus13km_control_gnu' [04:15, 03:17](888 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:34, 05:47](893 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:32, 01:51](570 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:31, 12:29] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:29, 05:49](740 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:24, 08:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:53, 02:35](719 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:52, 02:34](719 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:34, 06:52](905 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:48, 07:12](595 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:24, 07:49](917 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:45, 07:11](972 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:28, 08:27] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:54, 02:38](746 MB) - -PASS -- COMPILE 's2swa_gnu' [14:50, 14:46] - -PASS -- COMPILE 's2s_gnu' [14:29, 14:28] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:24, 07:14](1355 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:29, 03:28] - -PASS -- COMPILE 's2sw_pdlib_gnu' [14:31, 14:29] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:12, 22:14](1325 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 03:09] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [16:36, 15:34](1326 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [14:14, 14:13] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:26, 03:14](696 MB) +* (-a) - HPC PROJECT ACCOUNT: nems +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:13, 05:46](3287 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:11, 16:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:01, 17:23](1961 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:17, 18:05](2133 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:14, 08:13](1223 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 19:27](1851 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:41, 16:56](1955 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:23] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 22:49](1883 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 13:25] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:14, 06:11](3310 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:19, 06:02](3304 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:30, 03:40](3215 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:14, 06:06](3328 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:30, 03:36](3254 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:08, 05:49](3591 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:08, 06:02](3298 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:16, 04:58](3177 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:18, 06:14](3309 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:05, 10:38](3494 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:55, 06:30](3594 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:05, 10:21](4245 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:24, 06:47](4339 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:10, 05:39](3285 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 12:37] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:54, 05:01](1980 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:01, 04:36](2033 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:22] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:02, 08:38](3323 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 05:03] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:59, 05:46](1964 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 12:00] ( 1 remarks ) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'cpld_control_noaero_p8_agrid_intel' [, ]( MB) + +PASS -- COMPILE 's2s_intel' [12:11, 11:54] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:42, 09:43](3067 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:56](3034 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:38](2465 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:11, 20:36] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:19, 05:45](3312 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:11, 14:58] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:25](1983 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 08:16](1241 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:03, 20:01](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:42] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:52, 25:15](1912 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:23, 03:21](684 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:39, 02:54](1582 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:46, 02:59](1589 MB) +PASS -- TEST 'control_latlon_intel' [03:43, 02:56](1575 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:48, 02:57](1576 MB) +PASS -- TEST 'control_c48_intel' [08:44, 07:38](1749 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:25, 06:23](856 MB) +PASS -- TEST 'control_c192_intel' [11:57, 10:34](1727 MB) +PASS -- TEST 'control_c384_intel' [13:03, 10:43](1997 MB) +PASS -- TEST 'control_c384gdas_intel' [11:54, 08:18](1367 MB) +PASS -- TEST 'control_stochy_intel' [02:23, 01:41](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:00](484 MB) +PASS -- TEST 'control_lndp_intel' [02:22, 02:00](638 MB) +PASS -- TEST 'control_iovr4_intel' [03:25, 02:35](635 MB) +PASS -- TEST 'control_iovr5_intel' [03:24, 02:30](635 MB) +PASS -- TEST 'control_p8_intel' [03:57, 03:07](1879 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 03:07](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:51, 03:03](1881 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:48](1116 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:50, 03:04](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:42](1128 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:11](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:50, 02:55](1965 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:25](1878 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 04:04](1946 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:53, 03:06](1888 MB) +PASS -- TEST 'merra2_thompson_intel' [04:50, 03:26](1881 MB) +PASS -- TEST 'regional_control_intel' [06:42, 05:27](1076 MB) +PASS -- TEST 'regional_restart_intel' [03:37, 02:54](1076 MB) +PASS -- TEST 'regional_decomp_intel' [06:39, 05:44](1071 MB) +PASS -- TEST 'regional_2threads_intel' [04:43, 03:31](1086 MB) +PASS -- TEST 'regional_noquilt_intel' [06:43, 05:17](1374 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 05:24](1069 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:21](1078 MB) +PASS -- TEST 'regional_wofs_intel' [07:40, 06:53](1894 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 11:03] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:41, 07:48](1091 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:10, 04:12](1280 MB) +PASS -- TEST 'rap_decomp_intel' [09:42, 08:10](1019 MB) +PASS -- TEST 'rap_2threads_intel' [08:41, 07:20](1160 MB) +PASS -- TEST 'rap_restart_intel' [05:51, 04:06](1085 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:46, 07:46](1088 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:48, 08:14](1027 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:49, 05:52](1112 MB) +PASS -- TEST 'hrrr_control_intel' [04:45, 04:00](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:41, 04:56](1020 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:45, 03:43](1092 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:35, 02:11](990 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:52, 07:37](1081 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:28, 09:21](1981 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:28, 09:05](2059 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:26] +PASS -- TEST 'control_csawmg_intel' [06:41, 06:08](1001 MB) +PASS -- TEST 'control_ras_intel' [04:26, 03:21](719 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:31] +PASS -- TEST 'control_csawmg_gnu' [09:43, 08:27](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:10] +PASS -- TEST 'control_wam_intel' [03:21, 02:08](639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:11, 18:13] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:50, 02:47](1879 MB) +PASS -- TEST 'regional_control_faster_intel' [05:38, 04:56](1075 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:17] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:45, 02:36](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:47, 02:34](1581 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:01](783 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:44](789 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:38, 04:15](1103 MB) +PASS -- TEST 'control_ras_debug_intel' [03:23, 02:43](789 MB) +PASS -- TEST 'control_diag_debug_intel' [03:44, 02:49](1642 MB) +PASS -- TEST 'control_debug_p8_intel' [03:40, 03:04](1876 MB) +PASS -- TEST 'regional_debug_intel' [18:37, 17:51](1049 MB) +PASS -- TEST 'rap_control_debug_intel' [05:21, 04:54](1169 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:38](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:22, 04:54](1169 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 05:00](1160 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:51](1174 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:06](1253 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:02](1162 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:26, 04:54](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:56](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:54](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:59](1171 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:05](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:52](1165 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:49](1172 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:49](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:39, 08:21](1176 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:37] +PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 02:18](714 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:49] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:24, 04:55](465 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:32] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 04:00](1143 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:32](1034 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:29](968 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:33, 06:15](1071 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 03:14](945 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:40](921 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:45, 04:53](1018 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:52](926 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:10, 16:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:56, 02:10](1188 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:45, 00:56](1101 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:16](1100 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 10:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 04:14](974 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:00] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:50](1050 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:26, 04:47](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [15:50, 14:18](1216 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:46, 14:46](884 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:49, 08:08](1103 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:24](1244 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:56](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 12:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:20, 05:04](722 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 06:15](1096 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:33, 07:02](804 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:16, 13:39](850 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:29, 15:11](873 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:43](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 08:02](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:43, 02:47](352 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:06, 07:37](460 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:48](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:37](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:56, 04:10](568 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:12](380 MB) +PASS -- TEST 'gnv1_nested_intel' [07:02, 04:07](781 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:18] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:44](537 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:11, 20:25] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:01, 08:59](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:05, 08:52](721 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 12:21] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:03, 06:40](673 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:42] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:34](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:35](797 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 16:02](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:15] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:42](1124 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:41](1096 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:39](1003 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:20, 02:36](1002 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:41](1001 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:44](1133 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:44](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:36](1006 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:27, 06:37](1049 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:17, 06:21](1030 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:45](1139 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:55](2477 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:53](2435 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:27](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:49] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:48](1143 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:13] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:54](259 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 01:02](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:36](312 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 12:41] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:24](1840 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:04, 04:30](1836 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:22](1089 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:10, 05:20] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:00, 05:46](1840 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:25] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 02:00](1891 MB) + +PASS -- COMPILE 'atmaero_intel' [11:10, 11:04] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:03, 04:10](3166 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:03, 04:56](3066 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:48, 05:04](3086 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:58] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:02, 22:54](4450 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:58] +PASS -- TEST 'control_c48_gnu' [12:42, 11:17](1531 MB) +PASS -- TEST 'control_stochy_gnu' [04:25, 03:22](489 MB) +PASS -- TEST 'control_ras_gnu' [05:21, 04:46](498 MB) +PASS -- TEST 'control_p8_gnu' [05:53, 04:50](1450 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:40](1452 MB) +PASS -- TEST 'control_flake_gnu' [11:23, 10:18](534 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 04:52] +PASS -- TEST 'rap_control_gnu' [11:34, 10:50](845 MB) +PASS -- TEST 'rap_decomp_gnu' [11:34, 10:44](850 MB) +PASS -- TEST 'rap_2threads_gnu' [10:37, 09:46](933 MB) +PASS -- TEST 'rap_restart_gnu' [06:43, 05:32](572 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 10:49](845 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:32, 11:07](848 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:48, 08:01](572 MB) +PASS -- TEST 'hrrr_control_gnu' [06:36, 05:35](845 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:31](831 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:35, 05:03](925 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:36, 05:32](844 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:53](556 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:52](652 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:44, 10:29](841 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 08:05] +PASS -- TEST 'control_diag_debug_gnu' [02:49, 01:35](1268 MB) +PASS -- TEST 'regional_debug_gnu' [10:39, 09:49](750 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:38](851 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:32](848 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:34](854 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:37](852 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:36, 02:45](935 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:23, 04:02](848 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:34](858 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:31](843 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:32](482 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:21, 01:44](474 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:40, 01:46](1435 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:37](850 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:52](854 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:36, 04:14](857 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:30] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:41] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:32, 09:24](703 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:02](703 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:35, 08:41](753 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:35](745 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:30, 05:07](702 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:39, 07:05](544 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:34](536 MB) +PASS -- TEST 'conus13km_control_gnu' [04:55, 03:10](871 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:45, 05:44](875 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:47, 01:51](547 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:11, 12:24] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:39, 05:46](732 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 08:02] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:32](702 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:23, 02:26](704 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:49, 06:50](875 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:45, 07:02](573 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:42, 07:11](880 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:42, 06:51](942 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 08:06] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:25, 02:41](725 MB) + +PASS -- COMPILE 's2swa_gnu' [15:12, 14:50] + +PASS -- COMPILE 's2s_gnu' [15:12, 14:43] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:04, 06:48](1518 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:23] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:35] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:03, 22:35](1449 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 03:18] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:57, 13:32](1451 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:12] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:02](698 MB) SYNOPSIS: -Starting Date/Time: 20240520 17:14:56 -Ending Date/Time: 20240521 01:54:37 -Total Time: 08h:40m:04s +Starting Date/Time: 20240523 12:48:03 +Ending Date/Time: 20240523 14:21:49 +Total Time: 01h:35m:37s Compiles Completed: 55/55 -Tests Completed: 243/243 +Tests Completed: 242/243 +Failed Tests: +* TEST cpld_control_noaero_p8_agrid_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/rt-2273/tests/logs/log_hera/run_cpld_control_noaero_p8_agrid_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 HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +740041579e51120ea3749d5d868d838a4baeb7f2 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1869542 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nems +* (-n) - RUN SINGLE TEST: cpld_control_noaero_p8_agrid +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:20] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:31](2028 MB) + +SYNOPSIS: +Starting Date/Time: 20240523 14:57:08 +Ending Date/Time: 20240523 15:18:48 +Total Time: 00h:21m:48s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 03711e7e21..081a61eb80 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -f911c00436f15ee4ba9f6fd0ef951b8d543d287f +f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,22 +11,22 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) - 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) - c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) - 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -35,368 +35,433 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240516 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2353347 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1942192 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:17, 12:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:30, 07:47](1894 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:18, 20:45] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:24, 13:26](1758 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:50, 14:01](2174 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:25, 06:44](1185 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:24, 15:12](1690 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:18, 20:35] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:39, 13:02](1760 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:16, 04:11] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:49, 20:56](1735 MB) - -PASS -- COMPILE 's2swa_intel' [14:17, 13:26] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:20, 07:45](2084 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:35, 07:38](2077 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:22, 04:12](1969 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:14, 07:44](1991 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:29, 04:25](1732 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 08:56](2495 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:13, 07:38](2072 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:26, 06:25](1878 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:33, 07:42](2091 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:20, 15:19](2809 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:53, 05:44](2929 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:50, 09:06](3639 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:28, 05:21](3622 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:21, 05:06](2024 MB) - -PASS -- COMPILE 's2sw_intel' [12:16, 11:45] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:16, 07:18](1776 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:23, 04:16](1822 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:17, 07:30] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:33, 06:59](2067 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:17, 06:40] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:19, 04:55](1786 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:16, 10:45] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:31, 04:06](1822 MB) - -PASS -- COMPILE 's2s_intel' [11:17, 10:52] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:02, 07:17](2819 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:59, 02:05](2828 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:05, 01:07](2307 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:13, 14:05] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:31, 07:24](2060 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:11, 13:54](1807 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:24, 06:40](1291 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:22, 15:19](1739 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:24] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:10, 21:46](1772 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:18, 09:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:38, 02:52](710 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:55, 02:30](1609 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:59, 02:34](1611 MB) -PASS -- TEST 'control_latlon_intel' [03:50, 02:30](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:57, 02:32](1604 MB) -PASS -- TEST 'control_c48_intel' [07:59, 07:02](1751 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:46, 05:43](865 MB) -PASS -- TEST 'control_c192_intel' [10:11, 09:06](1750 MB) -PASS -- TEST 'control_c384_intel' [11:55, 09:11](2039 MB) -PASS -- TEST 'control_c384gdas_intel' [10:50, 07:13](1539 MB) -PASS -- TEST 'control_stochy_intel' [02:41, 01:24](667 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:28, 00:53](549 MB) -PASS -- TEST 'control_lndp_intel' [02:37, 01:26](664 MB) -PASS -- TEST 'control_iovr4_intel' [02:36, 02:06](677 MB) -PASS -- TEST 'control_iovr5_intel' [02:28, 02:07](678 MB) -PASS -- TEST 'control_p8_intel' [04:00, 02:35](1641 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:07, 02:36](1642 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:06, 02:28](1650 MB) -PASS -- TEST 'control_restart_p8_intel' [03:01, 01:28](927 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:52, 02:33](1631 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:00, 01:25](984 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:46, 02:40](1627 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:25](1725 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:39, 04:25](1642 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:04, 03:29](1715 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:01, 02:37](1655 MB) -PASS -- TEST 'merra2_thompson_intel' [04:06, 02:50](1652 MB) -PASS -- TEST 'regional_control_intel' [05:36, 04:39](961 MB) -PASS -- TEST 'regional_restart_intel' [03:40, 02:33](1106 MB) -PASS -- TEST 'regional_decomp_intel' [05:34, 04:59](951 MB) -PASS -- TEST 'regional_2threads_intel' [03:34, 02:56](924 MB) -PASS -- TEST 'regional_noquilt_intel' [05:41, 04:28](1495 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:41, 04:29](955 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:32, 04:32](962 MB) -PASS -- TEST 'regional_wofs_intel' [06:32, 05:38](2100 MB) - -PASS -- COMPILE 'rrfs_intel' [09:20, 08:21] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:42, 06:41](1205 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 03:31](1401 MB) -PASS -- TEST 'rap_decomp_intel' [07:41, 06:49](1128 MB) -PASS -- TEST 'rap_2threads_intel' [07:03, 06:06](1372 MB) -PASS -- TEST 'rap_restart_intel' [05:08, 03:30](1144 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:54, 06:39](1203 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:46, 06:51](1146 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:03, 04:56](1222 MB) -PASS -- TEST 'hrrr_control_intel' [04:48, 03:25](1061 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:41, 03:31](1047 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:49, 03:03](1127 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:24, 01:53](1026 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:18](1196 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:28, 07:37](2012 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:30, 07:28](2180 MB) - -PASS -- COMPILE 'csawmg_intel' [08:10, 07:31] -PASS -- TEST 'control_csawmg_intel' [06:58, 05:21](806 MB) -PASS -- TEST 'control_ras_intel' [03:46, 02:57](810 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:16, 04:25] -PASS -- TEST 'control_csawmg_gnu' [07:55, 06:27](811 MB) - -PASS -- COMPILE 'wam_intel' [07:12, 07:00] -PASS -- TEST 'control_wam_intel' [02:35, 01:51](782 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 14:18] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:09, 02:17](1639 MB) -PASS -- TEST 'regional_control_faster_intel' [04:40, 04:07](963 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:13] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:12](1643 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:40, 02:07](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:24, 02:30](839 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:23, 02:16](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:34, 03:26](883 MB) -PASS -- TEST 'control_ras_debug_intel' [03:21, 02:25](843 MB) -PASS -- TEST 'control_diag_debug_intel' [03:41, 02:16](1692 MB) -PASS -- TEST 'control_debug_p8_intel' [03:40, 02:24](1654 MB) -PASS -- TEST 'regional_debug_intel' [15:41, 14:19](881 MB) -PASS -- TEST 'rap_control_debug_intel' [04:23, 04:01](1225 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:23, 03:56](1213 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:25, 04:00](1216 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:22, 04:00](1217 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:27, 04:00](1224 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:31, 04:10](1309 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:23, 04:02](1224 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:20, 04:07](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:04](1212 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:23, 04:04](1223 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:24, 03:58](1212 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:02](1221 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:32](1228 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 03:55](1219 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:16](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:23, 04:04](1231 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:00, 06:48](1223 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 05:07] -PASS -- TEST 'control_csawmg_debug_gnu' [02:39, 01:45](793 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:40] ( 855 warnings ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:13, 07:37] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:54, 03:17](1279 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:42, 05:30](1134 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:54, 02:56](1026 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:53, 04:59](1288 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:51, 02:43](1039 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:46, 03:06](974 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:02, 04:10](1099 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:38](966 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:48, 01:47](1313 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:39, 00:46](1206 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:36, 01:05](1158 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 07:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 03:44](1101 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:23] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:22, 03:57](1094 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 03:53](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [12:50, 11:59](1341 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:43, 12:02](1001 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:38, 06:38](1248 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:46, 11:35](1424 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:25, 04:00](1159 MB) - -PASS -- COMPILE 'hafsw_intel' [11:11, 10:20] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:10, 05:26](878 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:25, 04:58](1281 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:17](958 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 14:02](979 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 15:10](997 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:57, 05:23](604 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:32, 06:52](616 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:52, 02:41](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 07:45](576 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:48, 03:47](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:43, 03:47](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:55, 04:52](679 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:34](454 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:54] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:48, 11:16](637 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:16, 16:08] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:17, 16:42](743 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:29, 16:52](848 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:12, 10:16] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:58, 10:14](838 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:10, 10:09] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:11, 05:20](958 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:07, 05:25](927 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:52, 16:24](1365 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:16, 06:46] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:20, 02:09](1146 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:24](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:19, 02:06](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:20, 02:09](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:18, 02:06](1007 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:11](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:13](1135 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:19, 02:04](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:03, 05:04](1150 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:01, 04:55](1147 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:15, 02:09](1159 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:18, 03:03](2384 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:21, 03:03](2378 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 04:00] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:20, 05:17](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:45] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:14](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:55] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:38, 00:50](338 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:29, 00:47](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:32](570 MB) - -PASS -- COMPILE 'atml_intel' [09:11, 09:09] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:28, 05:05](1654 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:27, 05:09](1646 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:41](947 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:15] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:23, 04:36](1657 MB) - -PASS -- COMPILE 'atmw_intel' [10:12, 10:09] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:13, 01:35](1684 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 08:00] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:02, 03:32](1786 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:07, 04:20](1814 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:56, 04:20](1813 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:23] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:52, 16:37](4601 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 05:31] -PASS -- TEST 'control_c48_gnu' [11:11, 09:31](1572 MB) -PASS -- TEST 'control_stochy_gnu' [03:28, 02:18](729 MB) -PASS -- TEST 'control_ras_gnu' [04:23, 03:36](731 MB) -PASS -- TEST 'control_p8_gnu' [05:04, 03:38](1519 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:00, 03:27](1516 MB) -PASS -- TEST 'control_flake_gnu' [05:22, 04:21](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [07:10, 06:21] -PASS -- TEST 'rap_control_gnu' [09:27, 07:40](1086 MB) -PASS -- TEST 'rap_decomp_gnu' [08:56, 07:46](1081 MB) -PASS -- TEST 'rap_2threads_gnu' [08:07, 07:05](1157 MB) -PASS -- TEST 'rap_restart_gnu' [04:57, 03:52](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:05, 07:39](1083 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:25, 07:52](1093 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:26, 05:40](882 MB) -PASS -- TEST 'hrrr_control_gnu' [05:05, 04:07](1067 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:50, 03:56](1134 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:49, 03:38](1048 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:49, 03:56](1069 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:32, 02:04](876 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:35, 02:02](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:28, 07:38](1079 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [13:13, 12:49] -PASS -- TEST 'control_diag_debug_gnu' [02:43, 01:16](1627 MB) -PASS -- TEST 'regional_debug_gnu' [08:04, 06:25](934 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:23, 02:02](1098 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:23, 02:00](1093 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:25, 02:06](1094 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:24, 02:04](1099 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:28, 02:10](1272 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:24, 03:07](1097 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:22, 02:04](1101 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:23, 02:04](1094 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:29, 01:11](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:22, 01:23](726 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:23](1506 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:44, 02:12](1100 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:14, 02:12](1103 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 03:21](1105 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:59] -PASS -- TEST 'control_wam_debug_gnu' [02:45, 02:01](498 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:30] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:40, 07:14](965 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:37, 03:44](954 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:59, 06:39](997 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:16, 03:32](877 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:58, 04:01](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:09, 05:28](861 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:27, 02:00](856 MB) -PASS -- TEST 'conus13km_control_gnu' [04:26, 02:30](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:32, 01:03](1172 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:34, 01:27](930 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:13, 13:51] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:44, 04:24](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:11, 11:17] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:49, 01:59](979 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:37, 01:51](971 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:42, 05:27](1280 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:42, 05:31](974 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:55, 05:21](1196 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:50, 05:27](1360 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:13, 12:10] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:46, 01:56](1003 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 17:08] - -PASS -- COMPILE 's2s_gnu' [17:12, 17:01] - -PASS -- COMPILE 's2swa_debug_gnu' [12:11, 11:37] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 17:50] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:16, 10:33] - -PASS -- COMPILE 'datm_cdeps_gnu' [15:16, 14:24] +PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 08:02](2129 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:43] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:10, 14:10](2003 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:43, 14:20](2298 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:36, 06:43](1310 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:10, 15:28](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:33, 13:37](1983 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 06:02] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:17, 20:32](1958 MB) + +PASS -- COMPILE 's2swa_intel' [12:11, 11:24] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:50, 07:57](2189 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:02, 07:40](2181 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:15, 05:11](1972 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:54, 08:05](2214 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:06, 05:38](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:55, 09:19](2555 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:52](2178 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:09, 06:45](2088 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:02, 08:01](2188 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:36, 15:31](2983 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:06, 06:05](2924 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:40, 09:02](3784 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:57, 06:11](3627 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:53, 05:20](2155 MB) + +PASS -- COMPILE 's2sw_intel' [11:11, 10:36] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:58, 07:21](2028 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:00, 04:09](2089 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 06:03] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [08:09, 06:59](2198 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:41] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:54, 04:48](2039 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:11, 09:42] ( 3 remarks ) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'cpld_control_noaero_p8_agrid_intel' [, ]( MB) + +PASS -- COMPILE 's2s_intel' [10:11, 09:32] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:39, 07:23](3087 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:13](3069 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:41, 01:17](2500 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 17:09] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 07:23](2182 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:26] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:50, 13:59](2038 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:00, 06:50](1388 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:48, 15:41](1960 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:30] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:45, 21:39](2016 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:20, 02:58](719 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:36, 02:38](1621 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:39, 02:39](1612 MB) +PASS -- TEST 'control_latlon_intel' [03:30, 02:43](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:38, 02:37](1611 MB) +PASS -- TEST 'control_c48_intel' [07:32, 07:00](1750 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:27, 05:48](861 MB) +PASS -- TEST 'control_c192_intel' [09:39, 09:03](1764 MB) +PASS -- TEST 'control_c384_intel' [12:28, 09:47](2052 MB) +PASS -- TEST 'control_c384gdas_intel' [10:01, 07:15](1531 MB) +PASS -- TEST 'control_stochy_intel' [02:20, 01:31](667 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:54](553 MB) +PASS -- TEST 'control_lndp_intel' [02:20, 01:30](678 MB) +PASS -- TEST 'control_iovr4_intel' [05:19, 02:09](666 MB) +PASS -- TEST 'control_iovr5_intel' [04:24, 02:10](661 MB) +PASS -- TEST 'control_p8_intel' [05:42, 03:16](1910 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 03:24](1909 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 03:25](1911 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:35](1157 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:39, 03:30](1905 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:44, 01:38](1207 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:44, 03:13](1902 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:41, 03:18](1988 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:30, 05:05](1909 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 04:02](1989 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:50, 03:09](1908 MB) +PASS -- TEST 'merra2_thompson_intel' [04:53, 03:43](1916 MB) +PASS -- TEST 'regional_control_intel' [06:29, 05:25](1203 MB) +PASS -- TEST 'regional_restart_intel' [03:26, 02:45](1185 MB) +PASS -- TEST 'regional_decomp_intel' [05:27, 04:54](1190 MB) +PASS -- TEST 'regional_2threads_intel' [04:24, 03:36](1162 MB) +PASS -- TEST 'regional_noquilt_intel' [05:31, 04:33](1526 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:39](1210 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:38](1203 MB) +PASS -- TEST 'regional_wofs_intel' [06:24, 05:33](2088 MB) + +PASS -- COMPILE 'rrfs_intel' [09:11, 08:20] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:33, 06:30](1216 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:44, 03:25](1452 MB) +PASS -- TEST 'rap_decomp_intel' [07:32, 06:53](1172 MB) +PASS -- TEST 'rap_2threads_intel' [06:45, 06:02](1380 MB) +PASS -- TEST 'rap_restart_intel' [04:51, 03:24](1148 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:45, 06:28](1217 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:37, 06:58](1158 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:54, 05:02](1196 MB) +PASS -- TEST 'hrrr_control_intel' [04:36, 03:19](1080 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:33, 03:22](1046 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:46, 03:04](1124 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:18, 01:51](1030 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:53, 06:21](1202 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:43](2016 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:30](2195 MB) + +PASS -- COMPILE 'csawmg_intel' [08:11, 07:29] +PASS -- TEST 'control_csawmg_intel' [06:26, 05:57](1064 MB) +PASS -- TEST 'control_ras_intel' [03:18, 02:50](807 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:11, 04:01] +PASS -- TEST 'control_csawmg_gnu' [07:34, 06:44](1061 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 06:39] +PASS -- TEST 'control_wam_intel' [02:24, 01:51](787 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 13:47] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:50, 02:34](1910 MB) +PASS -- TEST 'regional_control_faster_intel' [05:23, 04:17](1204 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 05:08] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:13](1629 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:33, 02:09](1626 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:35](835 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:18](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:24, 04:25](1150 MB) +PASS -- TEST 'control_ras_debug_intel' [03:18, 02:18](852 MB) +PASS -- TEST 'control_diag_debug_intel' [03:26, 02:19](1686 MB) +PASS -- TEST 'control_debug_p8_intel' [04:29, 03:20](1927 MB) +PASS -- TEST 'regional_debug_intel' [15:24, 15:06](1137 MB) +PASS -- TEST 'rap_control_debug_intel' [04:17, 04:03](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:20, 03:55](1213 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 03:58](1220 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 03:59](1230 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:17, 04:02](1220 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:24, 04:18](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:18, 04:05](1222 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:17, 04:04](1227 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:17, 04:03](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 04:02](1218 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:17, 04:00](1215 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:57](1215 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:31](1228 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:18, 03:59](1213 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 05:10](1229 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:19, 03:58](1216 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:48, 06:56](1233 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:30] +PASS -- TEST 'control_csawmg_debug_gnu' [03:32, 02:22](1053 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:14] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 07:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:14](1308 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:32, 05:25](1135 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:43, 02:53](1025 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:42, 05:03](1274 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 02:39](1037 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:36, 03:00](969 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:41, 04:07](1095 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:32, 01:35](961 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 11:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:38, 01:41](1291 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:29, 00:44](1204 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:31, 01:01](1156 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 07:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 03:38](1069 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:28] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 03:57](1097 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:54](1095 MB) +PASS -- TEST 'conus13km_debug_intel' [12:35, 11:53](1355 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:29, 12:08](1002 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:26, 06:39](1247 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:25, 11:34](1425 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:12] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 03:56](1162 MB) + +PASS -- COMPILE 'hafsw_intel' [11:10, 09:41] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:41](871 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:20, 04:57](1279 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:09, 06:14](948 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:02, 13:56](999 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:08, 15:47](1009 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:30](607 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 06:54](615 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:42, 02:44](436 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:01, 07:44](545 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:50](618 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:40, 03:42](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:46, 04:51](681 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 01:26](449 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:29] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:42, 11:24](636 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:56] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:48, 16:24](767 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:48, 16:05](853 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 10:11] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:55, 10:32](810 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:10, 10:08] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:23](959 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:04, 05:24](927 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:50, 16:19](1345 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:13] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:08](1148 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:20](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:15, 02:03](1007 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:06](1009 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:06](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:09](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:06](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:05](1012 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:55, 05:41](1166 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:50, 05:39](1154 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:11](1131 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:16, 03:00](2389 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:05](2380 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 04:05] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:12](1070 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:13, 06:37] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:08](1154 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:25, 00:54](339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:19, 00:47](559 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:22, 00:33](569 MB) + +PASS -- COMPILE 'atml_intel' [10:10, 09:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:05, 06:19](1904 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 06:27](1912 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:35, 02:47](1144 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 04:10] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:51, 05:14](1923 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:33] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:47, 01:37](1946 MB) + +PASS -- COMPILE 'atmaero_intel' [08:11, 07:24] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:45, 03:47](2030 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:47, 04:18](1807 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:34](1821 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:49] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:24, 16:56](4585 MB) + +PASS -- COMPILE 'atm_gnu' [06:10, 05:18] +PASS -- TEST 'control_c48_gnu' [10:37, 09:29](1553 MB) +PASS -- TEST 'control_stochy_gnu' [03:19, 02:22](730 MB) +PASS -- TEST 'control_ras_gnu' [04:17, 03:44](732 MB) +PASS -- TEST 'control_p8_gnu' [04:42, 03:54](1729 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:35, 04:04](1736 MB) +PASS -- TEST 'control_flake_gnu' [05:17, 04:29](811 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 05:03] +PASS -- TEST 'rap_control_gnu' [08:41, 07:43](1081 MB) +PASS -- TEST 'rap_decomp_gnu' [08:33, 07:44](1082 MB) +PASS -- TEST 'rap_2threads_gnu' [08:31, 07:51](1142 MB) +PASS -- TEST 'rap_restart_gnu' [04:46, 03:51](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:41, 08:15](1088 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:33, 08:24](1082 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:52, 05:45](881 MB) +PASS -- TEST 'hrrr_control_gnu' [04:46, 03:56](1071 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:32, 03:58](1135 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:32, 03:36](1027 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:33, 03:58](1069 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:24, 02:01](879 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:23, 01:58](930 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:50, 07:30](1077 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:11, 11:09] +PASS -- TEST 'control_diag_debug_gnu' [01:30, 01:08](1633 MB) +PASS -- TEST 'regional_debug_gnu' [07:26, 06:29](1139 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:17, 01:57](1104 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:16, 01:57](1092 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 01:57](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:17, 01:55](1095 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:23, 02:03](1272 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:06](1098 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:59](1099 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 01:59](1093 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:19, 01:08](732 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:16](727 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:26, 01:24](1724 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:17, 01:56](1101 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:10](1100 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:48, 03:18](1099 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 04:05] +PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:56](497 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 03:53] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:20](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:54, 03:45](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:52, 06:45](970 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:37, 03:24](891 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 03:46](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 05:27](859 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:27, 02:01](857 MB) +PASS -- TEST 'conus13km_control_gnu' [03:37, 02:26](1266 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:24, 01:03](1173 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:26, 01:26](929 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:46] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:19](990 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:10, 09:49] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 01:59](979 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:15, 01:55](974 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:34, 05:30](1283 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:32, 05:33](975 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:12](1192 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:27, 05:36](1350 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [11:10, 10:32] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:17, 01:55](1003 MB) + +PASS -- COMPILE 's2swa_gnu' [15:11, 14:24] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:42] + +PASS -- COMPILE 's2swa_debug_gnu' [10:10, 09:43] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 16:53] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:10, 09:25] + +PASS -- COMPILE 'datm_cdeps_gnu' [18:10, 17:29] SYNOPSIS: -Starting Date/Time: 20240520 23:07:45 -Ending Date/Time: 20240521 00:24:36 -Total Time: 01h:18m:01s +Starting Date/Time: 20240522 21:39:48 +Ending Date/Time: 20240522 23:03:02 +Total Time: 01h:23m:37s Compiles Completed: 55/55 -Tests Completed: 238/238 +Tests Completed: 237/238 +Failed Tests: +* TEST cpld_control_noaero_p8_agrid_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2273/tests/logs/log_hercules/run_cpld_control_noaero_p8_agrid_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 HERCULES REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2295701 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 's2s_aoflux_intel' [09:10, 08:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:37, 04:08](2084 MB) + +SYNOPSIS: +Starting Date/Time: 20240522 23:49:55 +Ending Date/Time: 20240523 00:03:42 +Total Time: 00h:13m:48s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 6eb22c8407..d576c22ec0 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -3e15eaa45553e76c6aa00a66b999b6b85d2b5fb3 +f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,22 +11,22 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) - 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) - c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) - 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -35,256 +35,252 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240516 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3280303 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_947073 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [42:15, 41:40] ( 1 warnings 1382 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:20, 11:44](1754 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:16, 49:28] ( 1 warnings 1426 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [38:25, 24:07](1652 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:37, 26:02](1879 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:31, 12:07](990 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:54, 27:58](1625 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:16, 49:44] ( 1 warnings 1423 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [36:04, 22:35](1647 MB) - -PASS -- COMPILE 's2swa_intel' [42:15, 41:40] ( 1380 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:58, 13:08](1813 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:19, 12:52](1828 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:36, 07:11](1717 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [23:59, 12:40](1815 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:36, 07:31](1749 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:59, 12:30](2249 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [23:58, 12:23](1821 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [23:58, 12:24](1796 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [24:19, 12:46](1839 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [23:13, 11:26](1789 MB) - -PASS -- COMPILE 's2sw_intel' [40:15, 39:00] ( 1278 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:16, 07:54](1660 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:24, 08:59](1710 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:41] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:14, 11:35](1830 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 06:02] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:43, 07:46](1678 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [45:18, 35:07] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:11, 07:35](1674 MB) - -PASS -- COMPILE 's2s_intel' [41:16, 36:04] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [15:25, 13:09](2800 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:27, 04:09](2801 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:29, 02:15](2270 MB) - -PASS -- COMPILE 's2swa_faster_intel' [39:23, 33:59] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:16, 10:15](1812 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [53:17, 48:20] ( 1338 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:11, 25:39](1679 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:41, 13:16](1038 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:05, 28:28](1657 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:11, 07:20] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:13, 32:56](1690 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [40:18, 39:07] ( 1 warnings 1147 remarks ) -PASS -- TEST 'control_flake_intel' [06:44, 05:30](647 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [16:17, 05:10](1548 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:28, 04:51](1547 MB) -PASS -- TEST 'control_latlon_intel' [15:04, 05:03](1540 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:34, 04:39](1548 MB) -PASS -- TEST 'control_c48_intel' [17:16, 11:57](1734 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:07, 10:21](847 MB) -PASS -- TEST 'control_c192_intel' [33:45, 17:21](1680 MB) -PASS -- TEST 'control_c384_intel' [54:25, 26:14](1811 MB) -PASS -- TEST 'control_c384gdas_intel' [42:36, 20:57](1016 MB) -PASS -- TEST 'control_stochy_intel' [10:51, 03:19](601 MB) -PASS -- TEST 'control_stochy_restart_intel' [16:53, 01:42](430 MB) -PASS -- TEST 'control_lndp_intel' [10:51, 03:17](603 MB) -PASS -- TEST 'control_iovr4_intel' [11:51, 04:38](592 MB) -PASS -- TEST 'control_iovr5_intel' [05:49, 04:14](600 MB) -PASS -- TEST 'control_p8_intel' [15:47, 05:31](1567 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [28:39, 06:01](1570 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [15:04, 05:57](1577 MB) -PASS -- TEST 'control_restart_p8_intel' [14:27, 02:46](814 MB) -PASS -- TEST 'control_noqr_p8_intel' [14:54, 05:38](1563 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [15:36, 02:44](841 MB) -PASS -- TEST 'control_decomp_p8_intel' [19:53, 04:35](1564 MB) -PASS -- TEST 'control_2threads_p8_intel' [20:52, 04:25](1664 MB) -PASS -- TEST 'control_p8_lndp_intel' [25:26, 09:45](1563 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [19:10, 05:48](1630 MB) -PASS -- TEST 'control_p8_mynn_intel' [19:08, 04:29](1582 MB) -PASS -- TEST 'merra2_thompson_intel' [17:20, 05:32](1588 MB) -PASS -- TEST 'regional_control_intel' [26:06, 11:15](761 MB) -PASS -- TEST 'regional_restart_intel' [10:07, 04:54](941 MB) -PASS -- TEST 'regional_decomp_intel' [27:14, 11:32](767 MB) -PASS -- TEST 'regional_2threads_intel' [10:07, 06:53](762 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [28:33, 09:46](768 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [27:57, 08:54](764 MB) - -PASS -- COMPILE 'rrfs_intel' [36:14, 35:59] ( 3 warnings 1114 remarks ) -PASS -- TEST 'rap_control_intel' [23:28, 13:48](992 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:58, 06:25](1210 MB) -PASS -- TEST 'rap_decomp_intel' [22:45, 14:15](978 MB) -PASS -- TEST 'rap_2threads_intel' [22:46, 12:44](1082 MB) -PASS -- TEST 'rap_restart_intel' [08:46, 06:59](988 MB) -PASS -- TEST 'rap_sfcdiff_intel' [18:45, 13:06](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:09, 13:56](984 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:06, 09:57](995 MB) -PASS -- TEST 'hrrr_control_intel' [14:28, 05:55](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:27, 06:36](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:24, 05:56](1054 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:02, 04:08](921 MB) -PASS -- TEST 'rrfs_v1beta_intel' [23:23, 13:04](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [21:56, 16:08](1933 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:58, 16:08](1934 MB) - -PASS -- COMPILE 'csawmg_intel' [34:13, 33:21] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [16:16, 10:21](692 MB) -PASS -- TEST 'control_ras_intel' [10:58, 05:35](670 MB) - -PASS -- COMPILE 'wam_intel' [32:15, 31:22] ( 981 remarks ) -PASS -- TEST 'control_wam_intel' [04:29, 04:05](504 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [23:22, 14:18] ( 1298 remarks ) -PASS -- TEST 'control_p8_faster_intel' [14:22, 04:48](1571 MB) -PASS -- TEST 'regional_control_faster_intel' [18:19, 09:42](765 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:41] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:14, 04:30](1561 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:17, 03:24](1560 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:29, 04:06](765 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:38, 03:36](764 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:04, 05:46](810 MB) -PASS -- TEST 'control_ras_debug_intel' [04:28, 03:41](777 MB) -PASS -- TEST 'control_diag_debug_intel' [05:05, 03:37](1629 MB) -PASS -- TEST 'control_debug_p8_intel' [06:23, 03:49](1601 MB) -PASS -- TEST 'regional_debug_intel' [24:07, 22:34](785 MB) -PASS -- TEST 'rap_control_debug_intel' [07:36, 06:24](1152 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:26, 06:36](1143 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:41, 06:15](1157 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 06:34](1152 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 06:35](1155 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:43, 07:31](1234 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:44, 07:02](1153 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 06:45](1153 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:34, 06:41](1149 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:42, 06:38](1153 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:57, 06:09](1151 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 06:43](1150 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:38, 10:24](1151 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:43, 06:05](1147 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:33, 07:35](1155 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:38, 06:16](1158 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:49, 10:59](1156 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 04:54] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [10:47, 06:33](451 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:21, 31:21] ( 3 warnings 1027 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:59, 07:53](1085 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:04, 12:20](904 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:28, 06:44](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:32, 11:32](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:32, 07:13](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:28, 07:24](855 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:00, 09:38](905 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:28, 02:46](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:20, 07:44] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [15:18, 02:59](1102 MB) -PASS -- TEST 'conus13km_2threads_intel' [10:59, 01:30](1048 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [10:58, 01:42](1023 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:15, 31:11] ( 3 warnings 1047 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:56, 08:06](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:13, 05:57] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:32, 06:22](1030 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:35, 06:07](1029 MB) -PASS -- TEST 'conus13km_debug_intel' [23:16, 18:34](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:20, 19:32](859 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:05, 11:51](1092 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:06, 18:32](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:21] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:06, 06:34](1071 MB) - -PASS -- COMPILE 'hafsw_intel' [40:17, 39:36] ( 1 warnings 1426 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [54:58, 07:15](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:50, 10:50](1090 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [04:32, 09:22](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [10:08, 16:23](804 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:37, 18:21](822 MB) -PASS -- TEST 'gnv1_nested_intel' [54:08, 05:49](770 MB) - -PASS -- COMPILE 'hafs_all_intel' [36:16, 35:11] ( 1267 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [21:46, 11:36](772 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:58, 09:57](752 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:43] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 04:04](1065 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:32, 03:16](1030 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:34, 03:55](928 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 04:09](920 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 04:12](921 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:34, 04:21](1066 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:26, 04:10](1082 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:34, 04:19](931 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:40, 09:19](892 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:44, 08:33](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:26, 04:18](1063 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 06:01](2332 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:31, 07:04](2297 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:59] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:27, 08:23](1005 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:37] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [10:35, 03:56](1066 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [10:11, 02:16] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:10, 02:54](234 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 02:24](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [25:51, 01:05](252 MB) - -PASS -- COMPILE 'atml_intel' [49:19, 42:49] ( 8 warnings 1185 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [26:58, 08:26](1606 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [27:04, 08:27](1609 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:44, 04:36](872 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:13, 07:47] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [29:13, 08:23](1627 MB) - -FAILED: UNABLE TO COMPILE -- COMPILE 'atmw_intel' [, ] -FAILED: UNABLE TO START RUN -- TEST 'atmwav_control_noaero_p8_intel' [, ]( MB) - -PASS -- COMPILE 'atmaero_intel' [35:16, 34:27] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [26:46, 05:19](1701 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [27:45, 06:26](1731 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:25, 06:30](1731 MB) +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [41:06, 41:06] ( 1 warnings 1382 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:16, 08:40](2020 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:23, 48:23] ( 1 warnings 1426 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:08, 22:06](1884 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:36, 24:32](1999 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:08, 12:41](1128 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:27, 26:28](1843 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:45, 54:45] ( 1 warnings 1423 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:02, 22:15](1868 MB) + +PASS -- COMPILE 's2swa_intel' [41:27, 41:27] ( 1380 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:11, 09:29](2004 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:09, 09:30](2034 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:54, 05:55](1718 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:58, 09:13](2075 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:27, 07:38](1737 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:16, 09:43](2303 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:46, 09:21](2042 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:27, 08:46](1990 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:11, 10:22](2058 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:11, 09:39](2021 MB) + +PASS -- COMPILE 's2sw_intel' [38:45, 38:45] ( 1278 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:52, 07:26](1886 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:21, 07:50](1970 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:16, 06:16] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:05, 12:15](2056 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:48, 05:48] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:32, 08:23](1923 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:08, 35:08] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:56, 07:13](1954 MB) + +PASS -- COMPILE 's2s_intel' [35:42, 35:42] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:33, 13:47](3049 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 04:06](3027 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:47, 02:12](2471 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:15, 34:15] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:33, 08:05](2046 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:08, 48:08] ( 1338 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:08, 21:57](1915 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:28, 12:01](1139 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:12, 24:51](1878 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:50, 05:50] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:11, 33:01](1922 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:18, 38:18] ( 1 warnings 1147 remarks ) +PASS -- TEST 'control_flake_intel' [05:03, 04:45](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:53, 04:14](1537 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:41, 04:20](1550 MB) +PASS -- TEST 'control_latlon_intel' [06:28, 04:17](1526 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:30, 04:31](1534 MB) +PASS -- TEST 'control_c48_intel' [12:55, 12:04](1740 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:33, 10:11](842 MB) +PASS -- TEST 'control_c192_intel' [15:27, 14:41](1671 MB) +PASS -- TEST 'control_c384_intel' [20:38, 18:50](1810 MB) +PASS -- TEST 'control_c384gdas_intel' [17:12, 13:48](1013 MB) +PASS -- TEST 'control_stochy_intel' [02:41, 02:20](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:57, 01:33](438 MB) +PASS -- TEST 'control_lndp_intel' [02:38, 02:18](606 MB) +PASS -- TEST 'control_iovr4_intel' [03:45, 03:26](594 MB) +PASS -- TEST 'control_iovr5_intel' [03:46, 03:26](595 MB) +PASS -- TEST 'control_p8_intel' [06:07, 04:55](1835 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:01, 04:51](1846 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:03, 04:46](1834 MB) +PASS -- TEST 'control_restart_p8_intel' [04:08, 03:00](1060 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:57, 04:42](1832 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:57, 02:53](1053 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:06, 04:57](1833 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:03, 04:54](1930 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:52, 08:07](1844 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:25, 06:09](1886 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:30, 05:18](1843 MB) +PASS -- TEST 'merra2_thompson_intel' [06:44, 05:17](1842 MB) +PASS -- TEST 'regional_control_intel' [08:40, 08:08](1002 MB) +PASS -- TEST 'regional_restart_intel' [05:22, 04:48](1005 MB) +PASS -- TEST 'regional_decomp_intel' [09:07, 08:34](995 MB) +PASS -- TEST 'regional_2threads_intel' [06:43, 06:11](993 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:47, 08:07](1021 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:32, 08:00](1007 MB) + +PASS -- COMPILE 'rrfs_intel' [35:28, 35:28] ( 3 warnings 1114 remarks ) +PASS -- TEST 'rap_control_intel' [13:04, 11:42](987 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 06:02](1208 MB) +PASS -- TEST 'rap_decomp_intel' [11:44, 10:40](986 MB) +PASS -- TEST 'rap_2threads_intel' [10:55, 09:48](1078 MB) +PASS -- TEST 'rap_restart_intel' [06:37, 05:22](982 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:25, 10:15](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:10, 11:01](969 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:57, 07:47](996 MB) +PASS -- TEST 'hrrr_control_intel' [06:39, 05:21](973 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:44, 05:35](965 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:24, 05:11](1055 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:20, 02:55](916 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:25, 10:08](975 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:13, 12:50](1933 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:54, 12:24](1913 MB) + +PASS -- COMPILE 'csawmg_intel' [32:56, 32:56] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:29, 08:53](968 MB) +PASS -- TEST 'control_ras_intel' [04:58, 04:35](669 MB) + +PASS -- COMPILE 'wam_intel' [30:32, 30:32] ( 981 remarks ) +PASS -- TEST 'control_wam_intel' [03:17, 02:59](503 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:48, 15:48] ( 1298 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:00, 04:43](1837 MB) +PASS -- TEST 'regional_control_faster_intel' [08:16, 07:40](1010 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:20, 08:20] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:04, 03:29](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:17, 03:32](1536 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:06, 03:51](761 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:13, 03:43](761 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:50, 06:06](1081 MB) +PASS -- TEST 'control_ras_debug_intel' [04:00, 03:43](774 MB) +PASS -- TEST 'control_diag_debug_intel' [04:16, 03:40](1618 MB) +PASS -- TEST 'control_debug_p8_intel' [05:47, 04:52](1850 MB) +PASS -- TEST 'regional_debug_intel' [23:32, 22:57](1045 MB) +PASS -- TEST 'rap_control_debug_intel' [06:42, 06:24](1152 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:30, 06:12](1143 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:40, 06:21](1152 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:42, 06:18](1152 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:49, 06:19](1146 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:27, 07:02](1234 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:10, 06:26](1147 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 06:22](1150 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:34, 06:17](1154 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 06:14](1157 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:27, 06:11](1147 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:33, 06:16](1151 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 10:08](1148 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 06:07](1140 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:06, 07:43](1153 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:37, 06:19](1148 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:06, 10:47](1155 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:33, 04:33] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:27, 06:15](447 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:46, 30:46] ( 3 warnings 1027 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 05:49](1087 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 08:33](903 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:01, 04:32](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:21, 08:15](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:41, 04:08](914 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:28, 04:57](861 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:40, 06:24](903 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:52, 02:29](853 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [06:27, 06:27] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:05, 03:20](1088 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:25, 01:45](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:24, 01:40](1002 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:27, 31:27] ( 3 warnings 1047 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:17, 05:37](913 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:55, 04:55] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 06:13](1033 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 06:08](1030 MB) +PASS -- TEST 'conus13km_debug_intel' [19:33, 18:49](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:37, 18:48](857 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:48, 10:58](1113 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:17, 18:34](1213 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:36, 04:36] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 06:12](1073 MB) + +PASS -- COMPILE 'hafsw_intel' [39:40, 39:40] ( 1 warnings 1426 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:52, 07:28](714 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 07:10](1088 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:29, 09:52](773 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:29, 16:58](797 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:01, 18:27](829 MB) +FAILED: UNABLE TO RUN COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafs_all_intel' [34:27, 34:27] ( 1267 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:49, 09:21](767 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:29, 09:04](759 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:08, 08:08] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:59, 03:48](1055 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 02:16](1027 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:04, 03:54](923 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:54, 03:44](924 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:50, 03:38](922 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:47, 03:38](1072 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:56, 03:45](1070 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 03:34](924 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:03, 08:01](888 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:57, 07:57](840 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:46, 03:37](1069 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:40, 05:27](2320 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 06:18](2398 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:35, 03:35] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 08:05](1018 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:14, 08:14] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:51, 03:40](1048 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:50, 01:49] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 01:57](229 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:49, 01:31](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:18, 00:58](251 MB) + +PASS -- COMPILE 'atml_intel' [37:51, 37:51] ( 8 warnings 1185 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:27, 10:43](1845 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:57, 10:32](1842 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:25, 05:44](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:57, 05:57] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:52, 08:22](1831 MB) + +PASS -- COMPILE 'atmw_intel' [34:48, 34:48] ( 1259 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 03:28](1850 MB) + +PASS -- COMPILE 'atmaero_intel' [33:23, 33:22] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:30, 06:15](1928 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:04, 06:39](1727 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:45, 06:49](1724 MB) SYNOPSIS: -Starting Date/Time: 20240520 17:18:39 -Ending Date/Time: 20240521 00:51:01 -Total Time: 07h:33m:04s -Compiles Completed: 33/34 +Starting Date/Time: 20240523 13:43:36 +Ending Date/Time: 20240523 21:31:38 +Total Time: 07h:48m:43s +Compiles Completed: 34/34 Tests Completed: 161/162 -Failed Compiles: -* COMPILE atmw_intel: FAILED: UNABLE TO COMPILE --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2205/ufs-weather-model/tests/logs/log_jet/compile_atmw_intel.log Failed Tests: -* TEST atmwav_control_noaero_p8_intel: FAILED: UNABLE TO START RUN --- LOG: N/A +* TEST gnv1_nested_intel: FAILED: UNABLE TO RUN COMPARISON +-- LOG: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/UFS-RT-TESTs/rt-2273/tests/logs/log_jet/run_gnv1_nested_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -297,7 +293,7 @@ Result: FAILURE ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -f911c00436f15ee4ba9f6fd0ef951b8d543d287f +f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -307,22 +303,22 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) - 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) - c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) - 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -331,21 +327,21 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240516 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_535370 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_548580 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-n) - RUN SINGLE TEST: atmwav_control_noaero_p8 -* (-e) - USE ECFLOW +* (-a) - HPC PROJECT ACCOUNT: epic +* (-n) - RUN SINGLE TEST: gnv1_nested +* (-r) - USE ROCOTO -PASS -- COMPILE 'atmw_intel' [36:13, 35:24] ( 1259 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:05, 02:35](1592 MB) +PASS -- COMPILE 'hafsw_intel' [38:36, 38:36] ( 1 warnings 1426 remarks ) +PASS -- TEST 'gnv1_nested_intel' [07:21, 06:19](767 MB) SYNOPSIS: -Starting Date/Time: 20240521 03:46:08 -Ending Date/Time: 20240521 04:29:59 -Total Time: 00h:44m:14s +Starting Date/Time: 20240524 00:21:53 +Ending Date/Time: 20240524 01:25:08 +Total Time: 01h:03m:35s Compiles Completed: 1/1 Tests Completed: 1/1 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 37f038bdcb..1bd95e3df1 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -a07258abd88d803c7ffa89a8fef9657780d579df +af9c4e9844feeb94d0435a19fa09f171df33f647 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,22 +11,22 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) - 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) - c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) - 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -35,420 +35,281 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240516 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221858 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_441512 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:11, 14:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:24, 05:26](3178 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:54, 17:17](1749 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:17, 18:14](2020 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:16, 08:22](1120 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:05, 19:37](1652 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 18:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:46, 17:01](1746 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 06:00] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:03, 23:03](1688 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 15:41] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:44, 05:47](3210 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:10, 05:52](3215 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:02, 03:25](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:44, 05:51](3239 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:02, 03:28](3278 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:46, 06:09](3555 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:36, 05:46](3207 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:38, 04:45](3074 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:10, 05:40](3215 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:04, 10:29](3340 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:30](3633 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'cpld_bmark_p8_intel' [, ]( MB) -FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:59, 05:27](3175 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 13:15] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:12, 04:44](1742 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:34, 04:27](1780 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:02] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:43, 08:38](3262 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:47] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 06:13](1756 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:23] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:34, 04:20](1781 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 13:08] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:54, 08:16](2832 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:57, 02:27](2837 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:04, 01:20](2307 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:11, 23:45] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:45, 05:20](3212 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:59] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 17:14](1772 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:30, 08:28](1170 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:22, 19:33](1674 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:30] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:21, 24:21](1715 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:22, 03:28](692 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:42, 02:52](1596 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:45, 03:01](1593 MB) -PASS -- TEST 'control_latlon_intel' [03:41, 02:53](1596 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 02:58](1594 MB) -PASS -- TEST 'control_c48_intel' [07:49, 07:08](1769 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:30, 06:08](829 MB) -PASS -- TEST 'control_c192_intel' [11:59, 10:30](1741 MB) -PASS -- TEST 'control_c384_intel' [14:20, 11:37](2016 MB) -PASS -- TEST 'control_c384gdas_intel' [13:19, 09:09](1347 MB) -PASS -- TEST 'control_stochy_intel' [02:27, 01:43](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:01](500 MB) -PASS -- TEST 'control_lndp_intel' [02:25, 01:36](658 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:35](648 MB) -PASS -- TEST 'control_iovr5_intel' [03:26, 02:29](651 MB) -PASS -- TEST 'control_p8_intel' [04:16, 03:02](1636 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:15, 02:59](1628 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:30, 02:53](1627 MB) -PASS -- TEST 'control_restart_p8_intel' [03:04, 01:37](889 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:13, 02:53](1613 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:05, 01:38](927 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:06, 03:00](1621 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:06, 03:04](1715 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:47, 05:15](1630 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:26, 04:01](1691 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:22, 03:02](1640 MB) -PASS -- TEST 'merra2_thompson_intel' [05:40, 03:16](1644 MB) -PASS -- TEST 'regional_control_intel' [06:46, 05:13](855 MB) -PASS -- TEST 'regional_restart_intel' [03:34, 02:49](1018 MB) -PASS -- TEST 'regional_decomp_intel' [06:42, 05:33](847 MB) -PASS -- TEST 'regional_2threads_intel' [04:41, 03:46](840 MB) -PASS -- TEST 'regional_noquilt_intel' [06:42, 05:10](1369 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:40, 05:09](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:34, 05:10](863 MB) -PASS -- TEST 'regional_wofs_intel' [07:35, 06:39](1924 MB) - -PASS -- COMPILE 'rrfs_intel' [14:10, 13:56] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:41, 07:47](1105 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:02, 04:51](1245 MB) -PASS -- TEST 'rap_decomp_intel' [09:08, 08:07](1037 MB) -PASS -- TEST 'rap_2threads_intel' [09:07, 07:55](1187 MB) -PASS -- TEST 'rap_restart_intel' [05:26, 04:02](1104 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:37, 07:41](1114 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:20, 08:12](1029 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 05:49](1131 MB) -PASS -- TEST 'hrrr_control_intel' [05:30, 04:02](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:07](1023 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:26](1111 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:29, 02:11](1003 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:20, 07:38](1101 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:19](2003 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 08:57](2069 MB) - -PASS -- COMPILE 'csawmg_intel' [11:10, 11:07] -PASS -- TEST 'control_csawmg_intel' [07:40, 06:08](748 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:23](745 MB) - -PASS -- COMPILE 'wam_intel' [10:10, 10:03] -PASS -- TEST 'control_wam_intel' [03:21, 02:09](652 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:58] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:33, 02:42](1624 MB) -PASS -- TEST 'regional_control_faster_intel' [05:34, 04:42](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 07:01] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:09, 02:40](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:12, 02:39](1612 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:34, 03:05](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:48](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:05, 04:15](860 MB) -PASS -- TEST 'control_ras_debug_intel' [03:33, 02:55](828 MB) -PASS -- TEST 'control_diag_debug_intel' [04:12, 02:47](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [04:10, 02:57](1647 MB) -PASS -- TEST 'regional_debug_intel' [19:08, 17:26](877 MB) -PASS -- TEST 'rap_control_debug_intel' [05:37, 04:58](1212 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:38, 04:45](1199 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 04:49](1200 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:38, 04:53](1197 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:47](1211 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:50, 05:05](1283 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:28, 05:01](1212 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:01](1202 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:24, 05:00](1211 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:58](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:46](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:58](1199 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:57](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:47](1207 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 06:01](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:27, 04:58](1208 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:23](1204 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:49] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:35, 04:56](508 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:10, 11:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:08, 04:47](1167 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 06:26](1052 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:16, 03:24](992 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 06:44](1095 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:45, 02:58](964 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:41](926 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:19, 04:57](1041 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:22, 01:52](927 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 17:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:03, 02:05](1201 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:42, 01:00](1118 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:16](1109 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:51, 04:15](997 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:57] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:59](1082 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:46](1073 MB) -PASS -- TEST 'conus13km_debug_intel' [15:55, 14:26](1234 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:53, 14:07](923 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:24](1153 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:38, 14:26](1303 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:38] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 05:04](1128 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 13:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:12, 05:27](743 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [, ]( MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:54](835 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 13:22](865 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:23, 14:50](886 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:06, 07:08](505 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:26, 07:35](516 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:50, 03:12](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:27, 08:15](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 04:14](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:50, 03:59](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 05:17](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:23](407 MB) -PASS -- TEST 'gnv1_nested_intel' [05:58, 04:34](800 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 04:46] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:53, 13:06](580 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:11, 21:43] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:02, 09:50](638 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:06, 09:56](712 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 15:08] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 07:06](694 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:10, 13:17] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:15, 06:30](835 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:23](816 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 15:58](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:33] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:38](1127 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:37](1083 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:33](1023 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:46](978 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:41](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:40](1128 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:38](1139 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:37](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:25, 05:57](1057 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 05:55](1043 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:49](1097 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:36](2444 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:41](2489 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:34] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:18](1065 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:34] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:40](1136 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 00:49](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:49](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:31](320 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:29] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:43, 04:13](1613 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:37, 04:14](1607 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:26](895 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 04:52] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 05:39](1620 MB) - -PASS -- COMPILE 'atmw_intel' [13:10, 12:21] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:46](1665 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 11:46] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:21, 03:58](3029 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:21, 04:55](3100 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:07, 04:59](3104 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 04:00] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:52, 21:26](4586 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:45, 05:36](3306 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:12, 21:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:54, 17:28](1971 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:07, 18:25](2148 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 08:35](1247 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:54, 19:45](1875 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 21:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:13](1969 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:26] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:47, 22:52](1919 MB) + +PASS -- COMPILE 's2swa_intel' [17:11, 15:59] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:35, 06:08](3336 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:52, 05:58](3333 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:00, 03:36](3263 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:35, 06:05](3359 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:00, 03:42](3279 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:35, 06:26](3622 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:28, 06:01](3326 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:28, 07:43](3215 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:48, 05:56](3338 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:01, 10:45](3521 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:22, 06:42](3617 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:04, 11:28](4271 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:23, 07:13](4361 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:38, 05:38](3317 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 14:08] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:06, 04:57](1980 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:38](2034 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:11] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:29, 08:54](3383 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 04:56] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:11, 06:19](1985 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 13:02] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:25, 04:39](2036 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 13:29] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:01, 08:32](3086 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:02, 02:41](3069 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:55, 01:34](2502 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:12, 24:25] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:44, 05:28](3339 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:13, 17:37](1988 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:26, 08:41](1252 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:17, 19:40](1889 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:15] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:49](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:23, 03:38](699 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 02:56](1598 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 03:01](1610 MB) +PASS -- TEST 'control_latlon_intel' [03:37, 02:56](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:46, 02:58](1598 MB) +PASS -- TEST 'control_c48_intel' [07:44, 07:09](1773 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:33, 06:05](826 MB) +PASS -- TEST 'control_c192_intel' [12:02, 10:35](1745 MB) +PASS -- TEST 'control_c384_intel' [14:11, 11:34](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [13:06, 09:18](1350 MB) +PASS -- TEST 'control_stochy_intel' [02:28, 01:37](652 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:25, 01:03](504 MB) +PASS -- TEST 'control_lndp_intel' [02:26, 01:37](649 MB) +PASS -- TEST 'control_iovr4_intel' [03:24, 02:30](649 MB) +PASS -- TEST 'control_iovr5_intel' [03:25, 02:27](649 MB) +PASS -- TEST 'control_p8_intel' [05:02, 03:08](1889 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:13, 03:05](1893 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 03:56](1899 MB) +PASS -- TEST 'control_restart_p8_intel' [03:14, 01:47](1134 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:17, 03:00](1894 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:06, 01:47](1153 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:14, 03:08](1879 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:07, 03:12](1977 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:22](1902 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:25, 04:07](1953 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:24, 03:08](1897 MB) +PASS -- TEST 'merra2_thompson_intel' [05:40, 03:24](1899 MB) +PASS -- TEST 'regional_control_intel' [06:37, 05:18](1095 MB) +PASS -- TEST 'regional_restart_intel' [03:37, 02:57](1091 MB) +PASS -- TEST 'regional_decomp_intel' [06:33, 05:41](1094 MB) +PASS -- TEST 'regional_2threads_intel' [04:33, 03:57](1090 MB) +PASS -- TEST 'regional_noquilt_intel' [06:34, 05:17](1391 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:39, 05:19](1101 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 05:23](1087 MB) +PASS -- TEST 'regional_wofs_intel' [07:39, 06:40](1922 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:21] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:29, 07:48](1120 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:41](1305 MB) +PASS -- TEST 'rap_decomp_intel' [09:00, 08:07](1030 MB) +PASS -- TEST 'rap_2threads_intel' [08:59, 07:57](1184 MB) +PASS -- TEST 'rap_restart_intel' [06:30, 04:05](1099 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:31, 07:50](1107 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:16](1035 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:27, 05:53](1132 MB) +PASS -- TEST 'hrrr_control_intel' [06:04, 04:01](1040 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:04, 04:12](1026 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 03:25](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:11](998 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:27, 07:39](1103 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:16](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 08:59](2075 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:00] +PASS -- TEST 'control_csawmg_intel' [07:37, 06:10](1021 MB) +PASS -- TEST 'control_ras_intel' [04:23, 03:22](749 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:53] +PASS -- TEST 'control_wam_intel' [03:22, 02:10](661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:12, 20:55] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:27, 02:52](1897 MB) +PASS -- TEST 'regional_control_faster_intel' [05:35, 04:52](1098 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:10] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:38](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:40](1614 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:07](819 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:51](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:17](1133 MB) +PASS -- TEST 'control_ras_debug_intel' [03:27, 02:51](831 MB) +PASS -- TEST 'control_diag_debug_intel' [04:53, 02:51](1679 MB) +PASS -- TEST 'control_debug_p8_intel' [04:51, 03:08](1915 MB) +PASS -- TEST 'regional_debug_intel' [18:49, 17:20](1090 MB) +PASS -- TEST 'rap_control_debug_intel' [05:32, 04:58](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:30, 04:59](1202 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:31, 05:03](1202 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:31, 05:11](1201 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:01](1202 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:37, 05:29](1230 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 05:09](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 07:27](1207 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:29, 05:05](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 05:07](1199 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:21, 05:09](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:51](1201 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:56](1197 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:50](1190 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:50](1203 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:23, 04:51](1200 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:22](1210 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:48] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:23, 04:56](514 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:05, 04:30](1168 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 06:31](1048 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:18, 03:28](981 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:54, 06:43](1099 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:31, 03:03](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:48, 03:42](940 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:20, 04:58](1040 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:28, 01:55](935 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:11, 18:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:03, 02:04](1202 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:45, 01:01](1123 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:41, 01:16](1108 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 12:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:52, 04:16](1002 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:59] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:02](1088 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 04:40](1075 MB) +PASS -- TEST 'conus13km_debug_intel' [16:57, 13:57](1232 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:52](930 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:25](1156 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:28](1299 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:53] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:55](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 13:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:15, 05:30](747 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:29, 05:52](1123 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:33, 06:51](834 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:12, 13:22](862 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:27, 15:01](884 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:01, 06:12](501 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:26, 07:34](519 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:50, 03:10](378 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:25, 08:03](485 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:49, 04:10](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:55, 03:57](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:59, 05:22](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:28, 01:24](401 MB) +PASS -- TEST 'gnv1_nested_intel' [12:02, 04:33](807 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 04:28] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:53, 13:13](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:11, 23:09] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:08, 09:39](640 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:08, 09:46](745 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:10, 13:09] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:03, 07:08](735 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:10, 12:53] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [19:17, 06:23](834 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:15, 06:28](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:58, 15:53](1210 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:48] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:21, 02:41](1132 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:42](1084 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [13:18, 02:33](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:19, 02:33](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:17, 02:36](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:18, 02:42](1130 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:18, 02:41](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:18, 02:35](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:17, 05:54](1053 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:12, 05:47](1033 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:15, 02:35](1141 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:19, 03:37](2498 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:18, 03:40](2494 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:22] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:18, 06:17](1063 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:19] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:18, 02:39](1116 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:03] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:30, 00:49](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:23, 00:49](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:34](325 MB) + +PASS -- COMPILE 'atml_intel' [13:10, 12:31] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:40, 04:26](1856 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:35, 04:24](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:46, 02:28](1102 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 05:00] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:27, 05:50](1879 MB) + +PASS -- COMPILE 'atmw_intel' [14:12, 11:57] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 01:55](1920 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 11:50] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:13](3197 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:13, 04:53](3092 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:03, 05:05](3107 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:40] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:46, 21:16](4583 MB) SYNOPSIS: -Starting Date/Time: 20240521 07:46:11 -Ending Date/Time: 20240521 09:09:02 -Total Time: 01h:23m:38s +Starting Date/Time: 20240522 21:38:13 +Ending Date/Time: 20240522 23:13:09 +Total Time: 01h:35m:39s Compiles Completed: 39/39 -Tests Completed: 180/183 -Failed Tests: -* TEST cpld_bmark_p8_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2205/tests/logs/log_orion/run_cpld_bmark_p8_intel.log -* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO START RUN --- LOG: N/A -* TEST hafs_regional_atm_thompson_gfdlsf_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2205/tests/logs/log_orion/run_hafs_regional_atm_thompson_gfdlsf_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -a07258abd88d803c7ffa89a8fef9657780d579df - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) - 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) - c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) - 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240516 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_397584 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_intel' [16:11, 15:36] ( 8 remarks ) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'cpld_bmark_p8_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 14:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:49, 06:52](1118 MB) - -SYNOPSIS: -Starting Date/Time: 20240521 09:36:50 -Ending Date/Time: 20240521 10:01:51 -Total Time: 00h:25m:12s -Compiles Completed: 2/2 -Tests Completed: 1/2 -Failed Tests: -* TEST cpld_bmark_p8_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2205/tests/logs/log_orion/run_cpld_bmark_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -a07258abd88d803c7ffa89a8fef9657780d579df - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) - 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (remotes/origin/feature/ccpp_data_thrd_cnt) - c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) - 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5253-g7e59eba2) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (remotes/origin/feature/endofrun_restart) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (remotes/origin/feature/optional_arguments) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240516 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_292972 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_intel' [15:11, 14:49] ( 8 remarks ) -PASS -- TEST 'cpld_bmark_p8_intel' [19:00, 11:23](4129 MB) - -SYNOPSIS: -Starting Date/Time: 20240521 11:03:10 -Ending Date/Time: 20240521 11:38:48 -Total Time: 00h:35m:51s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 183/183 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 9e57b45f80..b62d5dbda5 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -3e15eaa45553e76c6aa00a66b999b6b85d2b5fb3 +ac5a2eec5d0bdec070df19c3d3cb405bb32eb867 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,22 +11,22 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 2b53b6cae4c691f1cfc8df213d7c0120ce65a81d FV3 (remotes/origin/feature/ccpp_prebuild_optarg) - 630022fdc13720b6f9376fdfb2e4298c10d6d6f2 FV3/atmos_cubed_sphere (201912_public_release-393-g630022f) - c2983997d3c22832c588d150247a249f6b02425e FV3/ccpp/framework (v0.1.0-1508-gc298399) - 7e59eba2835711f7046e0b7528dc846bd875f754 FV3/ccpp/physics (EP4-807-g7e59eba2) + 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop-391-g70810f1) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5254-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 86585c08d42200d6451420578ced669fa8a06df1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10058-g86585c08d) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - ecdff7cc6e6c3db1cd351bf0e607da78ae9efcf7 stochastic_physics (ufs-v2.0.0-218-gecdff7c) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -35,240 +35,240 @@ 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-20240516 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50681 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240522 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_21570 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:36, 12:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:36, 02:07](2975 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:52, 27:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [43:31, 01:52](1596 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:15, 01:56](1718 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [24:33, 02:13](848 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:31, 02:02](1570 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:35, 12:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [58:47, 01:05](1590 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:30, 09:25] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [01:53, 01:53](1609 MB) - -PASS -- COMPILE 's2swa_intel' [12:33, 11:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [59:48, 01:25](3010 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [59:48, 01:43](3004 MB) -PASS -- TEST 'cpld_restart_p8_intel' [46:20, 01:29](3064 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [59:48, 01:43](3027 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [47:23, 01:47](3085 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [59:48, 01:19](3318 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [59:48, 01:02](3004 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [59:49, 01:29](2931 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [59:48, 01:44](3008 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [59:57, 04:27](3958 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [33:26, 05:32](4248 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [59:48, 01:21](2972 MB) - -PASS -- COMPILE 's2sw_intel' [46:14, 45:08] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [26:03, 02:06](1592 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [26:03, 02:12](1639 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:30, 09:52] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:52, 01:57](1635 MB) - -PASS -- COMPILE 's2s_intel' [20:42, 19:39] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [51:40, 01:31](2649 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [51:40, 01:14](2676 MB) -PASS -- TEST 'cpld_restart_c48_intel' [45:30, 01:10](2108 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:39, 18:18] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [53:43, 01:16](3007 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:43, 21:19] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:40, 01:45](1613 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:02, 01:25](907 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:03, 01:24](1589 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:36, 18:00] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:17, 01:21](1620 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [25:44, 24:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [36:08, 00:28](574 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [36:08, 01:07](1473 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [36:08, 00:54](1481 MB) -PASS -- TEST 'control_latlon_intel' [36:08, 01:10](1466 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [36:08, 01:13](1469 MB) -PASS -- TEST 'control_c48_intel' [36:07, 00:42](1591 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [36:07, 00:52](714 MB) -PASS -- TEST 'control_c192_intel' [36:08, 01:33](1590 MB) -PASS -- TEST 'control_c384_intel' [36:12, 01:48](1900 MB) -PASS -- TEST 'control_c384gdas_intel' [36:12, 02:43](1091 MB) -PASS -- TEST 'control_stochy_intel' [36:08, 00:27](530 MB) -PASS -- TEST 'control_stochy_restart_intel' [33:36, 00:48](331 MB) -PASS -- TEST 'control_lndp_intel' [36:08, 00:27](528 MB) -PASS -- TEST 'control_iovr4_intel' [36:08, 00:49](523 MB) -PASS -- TEST 'control_iovr5_intel' [36:08, 00:46](523 MB) -PASS -- TEST 'control_p8_intel' [36:08, 01:07](1503 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [36:08, 01:29](1501 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [36:08, 01:33](1509 MB) -PASS -- TEST 'control_restart_p8_intel' [30:44, 01:57](689 MB) -PASS -- TEST 'control_noqr_p8_intel' [36:08, 01:24](1490 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [30:44, 01:42](695 MB) -PASS -- TEST 'control_decomp_p8_intel' [36:08, 01:13](1497 MB) -PASS -- TEST 'control_2threads_p8_intel' [36:08, 01:24](1599 MB) -PASS -- TEST 'control_p8_lndp_intel' [36:08, 00:40](1508 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [36:08, 01:37](1559 MB) -PASS -- TEST 'control_p8_mynn_intel' [35:28, 01:04](1513 MB) -PASS -- TEST 'merra2_thompson_intel' [34:36, 01:59](1507 MB) -PASS -- TEST 'regional_control_intel' [33:36, 01:09](608 MB) -PASS -- TEST 'regional_restart_intel' [26:45, 00:14](779 MB) -PASS -- TEST 'regional_decomp_intel' [32:30, 00:43](606 MB) -PASS -- TEST 'regional_2threads_intel' [32:29, 00:43](664 MB) -PASS -- TEST 'regional_noquilt_intel' [31:34, 01:18](1145 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [31:08, 01:18](608 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [31:08, 01:06](608 MB) -PASS -- TEST 'regional_wofs_intel' [31:03, 00:44](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [31:51, 29:36] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [27:52, 02:18](914 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [27:46, 01:17](1098 MB) -PASS -- TEST 'rap_decomp_intel' [27:40, 01:52](914 MB) -PASS -- TEST 'rap_2threads_intel' [26:10, 01:13](1000 MB) -PASS -- TEST 'rap_restart_intel' [18:03, 02:09](783 MB) -PASS -- TEST 'rap_sfcdiff_intel' [26:09, 02:11](909 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [26:02, 01:35](913 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [16:32, 01:26](787 MB) -PASS -- TEST 'hrrr_control_intel' [26:02, 01:20](906 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [25:54, 01:07](906 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [25:43, 01:20](991 MB) -PASS -- TEST 'hrrr_control_restart_intel' [20:42, 00:49](741 MB) -PASS -- TEST 'rrfs_v1beta_intel' [24:20, 02:09](910 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [24:13, 00:42](1872 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:56, 01:07](1859 MB) - -PASS -- COMPILE 'csawmg_intel' [19:38, 13:54] -PASS -- TEST 'control_csawmg_intel' [39:08, 00:38](600 MB) -PASS -- TEST 'control_ras_intel' [39:08, 00:50](562 MB) - -PASS -- COMPILE 'wam_intel' [11:26, 09:16] -PASS -- TEST 'control_wam_intel' [42:16, 00:52](272 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [42:01, 39:13] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:13, 02:04](1502 MB) -PASS -- TEST 'regional_control_faster_intel' [08:53, 00:43](607 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:28, 13:24] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [31:01, 01:19](1490 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [30:58, 01:22](1490 MB) -PASS -- TEST 'control_stochy_debug_intel' [30:44, 00:47](692 MB) -PASS -- TEST 'control_lndp_debug_intel' [30:44, 00:55](693 MB) -PASS -- TEST 'control_csawmg_debug_intel' [30:25, 01:20](733 MB) -PASS -- TEST 'control_ras_debug_intel' [30:24, 01:00](703 MB) -PASS -- TEST 'control_diag_debug_intel' [29:53, 01:11](1556 MB) -PASS -- TEST 'control_debug_p8_intel' [29:22, 01:18](1526 MB) -PASS -- TEST 'regional_debug_intel' [29:19, 01:05](634 MB) -PASS -- TEST 'rap_control_debug_intel' [29:02, 01:16](1074 MB) -PASS -- TEST 'hrrr_control_debug_intel' [23:38, 00:48](1074 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [23:29, 00:45](1079 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [23:12, 01:02](1071 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [22:57, 01:14](1073 MB) -PASS -- TEST 'rap_diag_debug_intel' [22:38, 01:22](1159 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [22:31, 01:24](1076 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [21:21, 00:32](1072 MB) -PASS -- TEST 'rap_lndp_debug_intel' [21:17, 00:37](1077 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [20:55, 00:48](1074 MB) -PASS -- TEST 'rap_noah_debug_intel' [20:42, 00:50](1075 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [20:42, 00:43](1071 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:41, 00:29](1074 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [20:13, 00:48](1066 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [18:25, 00:44](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [18:13, 00:39](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:05, 02:06](1078 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:24, 07:11] ( 842 warnings ) -PASS -- TEST 'control_wam_debug_intel' [18:01, 00:42](302 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:33, 17:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [17:10, 01:05](960 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:33, 01:24](794 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [16:05, 01:45](790 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [15:57, 01:22](857 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:41, 01:48](841 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [15:34, 01:13](793 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:30, 01:38](692 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:29, 01:12](675 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:44, 25:17] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [15:25, 00:55](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [11:12, 00:45](1010 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [11:05, 00:43](885 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:40, 20:05] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:59, 01:29](814 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:41, 18:04] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [14:56, 00:28](956 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:53, 00:50](956 MB) -PASS -- TEST 'conus13km_debug_intel' [14:39, 00:40](1046 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:37, 00:27](715 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:35, 00:53](1043 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:16, 00:42](1107 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [19:40, 18:32] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:14, 01:17](978 MB) - -PASS -- COMPILE 'hafsw_intel' [18:38, 16:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [14:15, 01:47](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:13, 00:27](968 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:44, 01:59](668 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:09, 02:17](698 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [12:39, 02:23](714 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:26, 01:51](391 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:26, 01:50](401 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [10:49, 01:01](284 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:52, 03:10](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:30, 00:49](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:30, 01:31](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:14, 01:38](493 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:32, 00:41](333 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [23:45, 22:43] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:12, 01:01](512 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [26:51, 25:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [59:18, 01:52](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [59:18, 00:58](711 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:40, 20:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [04:05, 01:29](719 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:33, 16:12] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [01:51, 02:14](658 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:51, 02:14](649 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:49, 00:37](879 MB) - -PASS -- COMPILE 'atml_intel' [19:34, 18:00] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [57:51, 02:02](1545 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [57:51, 01:29](1548 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [44:23, 00:59](746 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:26, 10:04] ( 868 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:07, 02:18](1562 MB) - -PASS -- COMPILE 'atmaero_intel' [10:24, 09:05] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:02, 01:43](2854 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 01:25](2914 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:02, 01:18](2927 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:24, 09:48] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [05:06, 01:30](4437 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 12:33] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:55, 01:14](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:51, 22:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:31, 01:54](1819 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [56:35, 02:05](1842 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [56:35, 01:22](963 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:32, 01:00](1792 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [36:07, 34:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [02:14, 01:08](1818 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [23:51, 22:27] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [14:32, 01:23](1839 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 12:22] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [24:53, 01:18](3132 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:53, 01:35](3129 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:37, 01:52](3066 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [24:53, 01:17](3150 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:37, 01:49](3085 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [24:53, 01:41](3359 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [24:53, 01:14](3124 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [24:54, 01:23](3076 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [24:53, 01:31](3129 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:02, 03:59](4108 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [06:25, 03:58](4249 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [24:53, 01:42](3109 MB) + +PASS -- COMPILE 's2sw_intel' [12:25, 11:49] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [25:55, 01:47](1831 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [25:55, 01:56](1903 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:26, 12:07] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:55, 01:57](1900 MB) + +PASS -- COMPILE 's2s_intel' [23:50, 23:16] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:30, 00:34](2911 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:30, 01:22](2917 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:31, 01:09](2310 MB) + +PASS -- COMPILE 's2swa_faster_intel' [44:15, 43:49] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [52:34, 01:53](3133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 12:04] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:54, 01:08](1838 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:22, 00:41](1010 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [08:23, 00:55](1811 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:28, 05:45] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:27, 01:36](1852 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:40, 10:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [14:14, 00:24](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [14:14, 01:24](1466 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:14, 01:26](1475 MB) +PASS -- TEST 'control_latlon_intel' [14:14, 01:25](1470 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:14, 01:32](1472 MB) +PASS -- TEST 'control_c48_intel' [14:13, 00:56](1589 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [14:13, 00:51](714 MB) +PASS -- TEST 'control_c192_intel' [14:14, 00:40](1584 MB) +PASS -- TEST 'control_c384_intel' [14:18, 02:01](1901 MB) +PASS -- TEST 'control_c384gdas_intel' [14:18, 02:35](1088 MB) +PASS -- TEST 'control_stochy_intel' [14:14, 00:27](530 MB) +PASS -- TEST 'control_stochy_restart_intel' [11:48, 01:03](333 MB) +PASS -- TEST 'control_lndp_intel' [14:14, 00:32](530 MB) +PASS -- TEST 'control_iovr4_intel' [14:14, 00:46](524 MB) +PASS -- TEST 'control_iovr5_intel' [14:14, 00:45](524 MB) +PASS -- TEST 'control_p8_intel' [14:14, 01:38](1774 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [14:14, 01:55](1774 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [14:14, 01:59](1765 MB) +PASS -- TEST 'control_restart_p8_intel' [09:03, 01:12](918 MB) +PASS -- TEST 'control_noqr_p8_intel' [14:14, 01:39](1762 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [09:03, 01:13](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [14:14, 01:34](1767 MB) +PASS -- TEST 'control_2threads_p8_intel' [14:14, 01:08](1855 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:47, 01:09](1767 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:44, 02:07](1829 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:44, 01:47](1778 MB) +PASS -- TEST 'merra2_thompson_intel' [09:54, 01:47](1772 MB) +PASS -- TEST 'regional_control_intel' [09:53, 01:11](851 MB) +PASS -- TEST 'regional_restart_intel' [03:09, 00:21](850 MB) +PASS -- TEST 'regional_decomp_intel' [09:47, 00:54](848 MB) +PASS -- TEST 'regional_2threads_intel' [09:44, 00:53](904 MB) +PASS -- TEST 'regional_noquilt_intel' [09:27, 00:12](1174 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:24, 00:18](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:23, 01:08](851 MB) +PASS -- TEST 'regional_wofs_intel' [09:20, 00:47](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [18:46, 18:02] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [07:07, 01:40](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 01:13](1096 MB) +PASS -- TEST 'rap_decomp_intel' [07:07, 01:27](913 MB) +PASS -- TEST 'rap_2threads_intel' [07:07, 01:41](998 MB) +PASS -- TEST 'rap_restart_intel' [58:06, 01:28](785 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:07, 02:06](910 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:27, 01:26](911 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [57:41, 01:46](782 MB) +PASS -- TEST 'hrrr_control_intel' [06:14, 01:17](906 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:30, 00:51](908 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:24, 01:15](985 MB) +PASS -- TEST 'hrrr_control_restart_intel' [00:57, 01:06](742 MB) +PASS -- TEST 'rrfs_v1beta_intel' [05:23, 02:10](904 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [05:06, 01:01](1872 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [05:02, 01:16](1858 MB) + +PASS -- COMPILE 'csawmg_intel' [18:49, 18:07] +PASS -- TEST 'control_csawmg_intel' [04:17, 00:33](872 MB) +PASS -- TEST 'control_ras_intel' [04:16, 00:56](562 MB) + +PASS -- COMPILE 'wam_intel' [25:55, 25:11] +PASS -- TEST 'control_wam_intel' [58:57, 00:56](327 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [24:38, 23:53] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [51:42, 01:47](1764 MB) +PASS -- TEST 'regional_control_faster_intel' [50:18, 00:57](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [19:39, 18:47] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [54:51, 01:08](1494 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [54:51, 01:23](1493 MB) +PASS -- TEST 'control_stochy_debug_intel' [54:51, 00:54](693 MB) +PASS -- TEST 'control_lndp_debug_intel' [54:51, 01:12](693 MB) +PASS -- TEST 'control_csawmg_debug_intel' [54:51, 00:36](1000 MB) +PASS -- TEST 'control_ras_debug_intel' [54:51, 00:55](702 MB) +PASS -- TEST 'control_diag_debug_intel' [54:51, 01:07](1554 MB) +PASS -- TEST 'control_debug_p8_intel' [54:51, 00:50](1783 MB) +PASS -- TEST 'regional_debug_intel' [54:50, 00:39](882 MB) +PASS -- TEST 'rap_control_debug_intel' [54:51, 00:54](1077 MB) +PASS -- TEST 'hrrr_control_debug_intel' [54:51, 01:06](1070 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [54:51, 00:55](1073 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [54:51, 00:54](1072 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [54:51, 00:57](1074 MB) +PASS -- TEST 'rap_diag_debug_intel' [54:51, 00:49](1162 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [54:51, 00:51](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [54:51, 00:50](1076 MB) +PASS -- TEST 'rap_lndp_debug_intel' [54:51, 00:56](1079 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [54:51, 01:02](1077 MB) +PASS -- TEST 'rap_noah_debug_intel' [54:51, 01:04](1073 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [54:51, 00:58](1070 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:17, 01:01](1069 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [50:06, 00:30](1068 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [50:05, 00:37](1076 MB) +PASS -- TEST 'rap_flake_debug_intel' [50:04, 00:26](1076 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [50:03, 01:45](1081 MB) + +PASS -- COMPILE 'wam_debug_intel' [26:47, 25:40] ( 842 warnings ) +PASS -- TEST 'control_wam_debug_intel' [47:44, 00:48](305 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:47, 22:33] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [50:01, 00:42](957 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:58, 01:46](794 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [49:53, 01:38](789 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [49:00, 01:40](857 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [48:40, 01:34](847 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [48:22, 01:24](798 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [41:34, 00:59](689 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [44:16, 00:51](673 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:49, 23:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [47:57, 00:57](1009 MB) +PASS -- TEST 'conus13km_2threads_intel' [44:00, 01:01](1010 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [43:59, 00:44](884 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:38, 13:42] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:57, 01:19](813 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:36, 12:02] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [47:57, 01:01](956 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [47:57, 01:08](953 MB) +PASS -- TEST 'conus13km_debug_intel' [47:57, 00:26](1043 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [47:57, 01:18](716 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [47:58, 00:31](1043 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [47:57, 01:19](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:25, 10:22] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [47:57, 00:58](977 MB) + +PASS -- COMPILE 'hafsw_intel' [15:43, 14:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [43:16, 01:14](619 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:16, 00:27](966 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:14, 01:22](667 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [43:14, 02:11](704 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:15, 01:48](712 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [43:14, 01:39](389 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [43:15, 01:48](407 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [43:15, 00:58](288 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [43:13, 02:27](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [43:02, 00:58](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [42:26, 01:30](413 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [42:12, 00:42](493 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [41:25, 00:52](316 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:32, 08:53] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [45:21, 00:49](511 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:41, 18:03] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:08, 01:26](533 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:08, 01:23](716 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:45, 17:53] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [35:23, 01:10](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:29, 14:26] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [38:00, 01:19](657 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [38:00, 01:21](638 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:58, 01:09](880 MB) + +PASS -- COMPILE 'atml_intel' [15:43, 13:48] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [36:46, 01:23](1801 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [36:46, 01:20](1802 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [27:01, 00:21](947 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:34, 08:20] ( 868 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [41:15, 01:33](1819 MB) + +PASS -- COMPILE 'atmaero_intel' [18:39, 17:30] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [32:04, 01:25](3032 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [32:04, 01:50](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:04, 01:48](2923 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:27, 12:22] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [35:57, 00:53](4440 MB) SYNOPSIS: -Starting Date/Time: 20240520 18:47:07 -Ending Date/Time: 20240520 20:36:22 -Total Time: 01h:50m:06s +Starting Date/Time: 20240524 12:21:08 +Ending Date/Time: 20240524 13:51:32 +Total Time: 01h:31m:12s Compiles Completed: 32/32 Tests Completed: 159/159 diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index cc375c189c..9f08aad3b4 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -527,7 +527,7 @@ rocoto_kill() { } rocoto_step() { - echo "rt_utils.sh: Runnung one iteration of rocotorun and rocotostat..." + echo "rt_utils.sh: Running one iteration of rocotorun and rocotostat..." set -e echo "Unknown" > rocoto_workflow.state # Run one iteration of rocotorun and rocotostat. diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..bd235ba2b8 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,74 @@ +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_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_noquilt intel +regional_netcdf_parallel intel +regional_2dwrtdecomp intel +control_csawmg intel +control_csawmg gnu +control_p8_faster intel +regional_control_faster intel +control_csawmg_debug intel +control_debug_p8 intel +regional_debug intel +control_csawmg_debug gnu +control_p8_atmlnd_sbs intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +control_p8 gnu +control_p8_ugwpv1 gnu +regional_debug gnu +control_debug_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu From 317e5306a3c77edd2e949f6eebf7a02a602c4610 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Tue, 28 May 2024 17:03:21 -0400 Subject: [PATCH 14/16] Allow diagnostic accumulation bucket to change in fv3atm integration + develop]: Minor documentation bug fixes #2296 (#2281) * UFSWM - Add new capability to allow diagnostic accumulation bucket to change in fv3atm integration * FV3 - Add new capability to allow diagnostic accumulation bucket to change in fv3atm integration * UFSWM - Update requirements.txt; fix EMC broken link in Glossary; fix sample rt.sh run command for single RT run (add compiler) --- FV3 | 2 +- doc/UsersGuide/requirements.txt | 12 +- doc/UsersGuide/source/BuildingAndRunning.rst | 4 +- doc/UsersGuide/source/Glossary.rst | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 226 ++--- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 590 ++++++------- tests/logs/RegressionTests_derecho.log | 530 ++++++------ tests/logs/RegressionTests_gaea.log | 539 ++++++------ tests/logs/RegressionTests_hera.log | 768 ++++++++--------- tests/logs/RegressionTests_hercules.log | 776 ++++++++---------- tests/logs/RegressionTests_jet.log | 547 ++++++------ tests/logs/RegressionTests_orion.log | 556 +++++++------ tests/logs/RegressionTests_wcoss2.log | 460 +++++------ tests/test_changes.list | 150 +++- 17 files changed, 2537 insertions(+), 2727 deletions(-) diff --git a/FV3 b/FV3 index 70810f134f..b3640007c5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 70810f134fda5cb5fbb8ace9b79fe263768671dc +Subproject commit b3640007c51c8899533e1b835940a2030a768fcc diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index 7c806c7579..6ec1ab1a49 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -1,5 +1,5 @@ # -# This file is autogenerated by pip-compile with Python 3.9 +# This file is autogenerated by pip-compile with Python 3.11 # by the following command: # # pip-compile requirements.in @@ -12,6 +12,8 @@ certifi==2024.2.2 # via requests charset-normalizer==3.3.2 # via requests +colorama==0.4.6 + # via sphinx docutils==0.20.1 # via # pybtex-docutils @@ -22,10 +24,6 @@ idna==3.7 # via requests imagesize==1.4.1 # via sphinx -importlib-metadata==7.0.1 - # via - # sphinx - # sphinxcontrib-bibtex jinja2==3.1.4 # via sphinx latexcodec==2.0.1 @@ -44,7 +42,7 @@ pygments==2.17.2 # via sphinx pyyaml==6.0.1 # via pybtex -requests==2.31.0 +requests==2.32.0 # via sphinx six==1.16.0 # via @@ -78,5 +76,3 @@ sphinxcontrib-serializinghtml==1.1.10 # via sphinx urllib3==2.2.1 # via requests -zipp==3.17.0 - # via importlib-metadata diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst index 9cf2282c8e..02bfb2a846 100644 --- a/doc/UsersGuide/source/BuildingAndRunning.rst +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -582,7 +582,9 @@ To run a single test, users can try the following command instead of creating a .. code-block:: console - ./rt.sh -r -k -n control_p8 + ./rt.sh -r -k -n "control_p8 " + +where ```` is ``gnu`` or ``intel``. Troubleshooting ^^^^^^^^^^^^^^^^^^ diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index 4b54f0ae3c..0ac0044002 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -68,7 +68,7 @@ Glossary Global atmospheric model based on fluid dynamics principles, including Euler's equations of motion. EMC - The `Environmental Modeling Center `__ is one of :term:`NCEP`'s nine centers and leads the :term:`National Weather Service `'s modeling efforts. + The `Environmental Modeling Center `_ is one of :term:`NCEP`'s nine centers and leads the :term:`National Weather Service `'s modeling efforts. ESMF `Earth System Modeling Framework `__. The ESMF defines itself as "a suite of software tools for developing high-performance, multi-component Earth science modeling applications." It is a community-developed software infrastructure for building and coupling models. diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 10f90f6d96..b6baf7dcba 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240522 +export BL_DATE=20240524 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 343011c8f6..ad23006973 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu May 23 02:18:32 UTC 2024 +Mon May 27 22:00:37 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/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 = 204.782273 - 0: The maximum resident set size (KB) = 1918420 + 0: The total amount of wall time = 205.513891 + 0: The maximum resident set size (KB) = 1943180 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/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 = 2007.430306 - 0: The maximum resident set size (KB) = 1871000 + 0: The total amount of wall time = 2010.182246 + 0: The maximum resident set size (KB) = 1915420 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/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 = 177.403984 - 0: The maximum resident set size (KB) = 1878948 + 0: The total amount of wall time = 180.505311 + 0: The maximum resident set size (KB) = 1880708 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/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 = 174.810235 - 0: The maximum resident set size (KB) = 1874436 + 0: The total amount of wall time = 179.641615 + 0: The maximum resident set size (KB) = 1872468 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/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 = 177.301718 - 0: The maximum resident set size (KB) = 1878152 + 0: The total amount of wall time = 176.094119 + 0: The maximum resident set size (KB) = 1904492 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/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 = 176.738736 - 0: The maximum resident set size (KB) = 1878320 + 0: The total amount of wall time = 175.552974 + 0: The maximum resident set size (KB) = 1897264 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1263645/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/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 = 176.752293 - 0: The maximum resident set size (KB) = 1876656 + 0: The total amount of wall time = 175.416690 + 0: The maximum resident set size (KB) = 1900280 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu May 23 04:05:32 UTC 2024 -Elapsed time: 01h:47m:00s. Have a nice day! +Mon May 27 23:33:47 UTC 2024 +Elapsed time: 01h:33m:11s. 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 19d7b7298e..0dcb2693de 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,77 +1,79 @@ -Thu May 23 05:36:16 UTC 2024 +Tue May 28 14:50:49 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669994/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... - Moving sfcf021.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile1.nc - Moving sfcf021.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile2.nc - Moving sfcf021.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile3.nc - Moving sfcf021.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile4.nc - Moving sfcf021.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile5.nc - Moving sfcf021.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf021.tile6.nc - Moving atmf021.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile1.nc - Moving atmf021.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile2.nc - Moving atmf021.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile3.nc - Moving atmf021.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile4.nc - Moving atmf021.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile5.nc - Moving atmf021.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf021.tile6.nc - Moving sfcf024.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile1.nc - Moving sfcf024.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile2.nc - Moving sfcf024.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile3.nc - Moving sfcf024.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile4.nc - Moving sfcf024.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile5.nc - Moving sfcf024.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/sfcf024.tile6.nc - Moving atmf024.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile1.nc - Moving atmf024.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile2.nc - Moving atmf024.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile3.nc - Moving atmf024.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile4.nc - Moving atmf024.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile5.nc - Moving atmf024.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/atmf024.tile6.nc - Moving RESTART/20210323.060000.coupler.res .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.coupler.res - Moving RESTART/20210323.060000.fv_core.res.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.nc - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile1.nc - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile2.nc - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile3.nc - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile4.nc - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile5.nc - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile6.nc - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile1.nc - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile2.nc - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile3.nc - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile4.nc - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile5.nc - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile6.nc - Moving RESTART/20210323.060000.phy_data.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile1.nc - Moving RESTART/20210323.060000.phy_data.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile2.nc - Moving RESTART/20210323.060000.phy_data.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile3.nc - Moving RESTART/20210323.060000.phy_data.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile4.nc - Moving RESTART/20210323.060000.phy_data.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile5.nc - Moving RESTART/20210323.060000.phy_data.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile6.nc - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile1.nc - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile2.nc - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile3.nc - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile4.nc - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile5.nc - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile6.nc - Moving RESTART/20210323.060000.MOM.res.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/20210323.060000.MOM.res.nc - Moving RESTART/iced.2021-03-23-21600.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/iced.2021-03-23-21600.nc - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/dbg_base_dbg_base/RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + 0: The total amount of wall time = 1336.345357 + 0: The maximum resident set size (KB) = 1546880 -Test dbg_base FAIL +Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669994/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -133,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 = 258.637903 - 0: The maximum resident set size (KB) = 2032152 + 0: The total amount of wall time = 400.400364 + 0: The maximum resident set size (KB) = 1531504 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2772204/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669994/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -203,89 +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 = 258.716858 - 0: The maximum resident set size (KB) = 2039936 + 0: The total amount of wall time = 403.389360 + 0: The maximum resident set size (KB) = 1543876 Test std_base PASS -FAILED TESTS: -Test dbg_base failed in check_result failed -OPERATION REQUIREMENT TEST FAILED -Thu May 23 06:32:02 UTC 2024 -Elapsed time: 00h:55m:46s. Have a nice day! -Thu May 23 13:55:24 UTC 2024 -Start Operation Requirement Test - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1494048/dbg_base_dbg_base -Checking test dbg_base results .... -Moving baseline dbg_base files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Moving RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 1345.304106 - 0: The maximum resident set size (KB) = 1531684 - -Test dbg_base PASS - OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu May 23 14:22:27 UTC 2024 -Elapsed time: 00h:27m:04s. Have a nice day! +Tue May 28 15:51:14 UTC 2024 +Elapsed time: 01h:00m:26s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 42e7c07e21..f5a0556e9d 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu May 23 04:24:55 UTC 2024 +Mon May 27 22:04:21 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2270461/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2506150/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 = 411.087582 - 0: The maximum resident set size (KB) = 1241744 + 0: The total amount of wall time = 422.480958 + 0: The maximum resident set size (KB) = 1253628 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2270461/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2506150/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 = 307.933520 - 0: The maximum resident set size (KB) = 1091112 + 0: The total amount of wall time = 309.312501 + 0: The maximum resident set size (KB) = 1099136 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2270461/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2506150/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 = 314.245377 - 0: The maximum resident set size (KB) = 1087020 + 0: The total amount of wall time = 309.504865 + 0: The maximum resident set size (KB) = 1091976 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2270461/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2506150/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 = 312.493346 - 0: The maximum resident set size (KB) = 1081560 + 0: The total amount of wall time = 311.713329 + 0: The maximum resident set size (KB) = 1100980 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu May 23 05:25:42 UTC 2024 -Elapsed time: 01h:00m:48s. Have a nice day! +Mon May 27 22:58:48 UTC 2024 +Elapsed time: 00h:54m:28s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 03b23ee8b5..f3c6203a57 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -ac5a2eec5d0bdec070df19c3d3cb405bb32eb867 +c028fa43556f266cd1e672d315d9b64cc4346722 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (70810f1) + 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5254-g16a1d881) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,342 +35,270 @@ 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-20240522 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113352 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240524 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172479 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:30] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:56, 01:19](3166 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:54] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [40:51, 01:28](1886 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:02, 01:20](1912 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [21:39, 01:33](1034 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:52, 01:11](1861 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 15:53] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [40:50, 00:47](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:18] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [52:03, 01:45](1906 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 10:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [45:56, 01:26](3203 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [45:56, 01:16](3196 MB) -PASS -- TEST 'cpld_restart_p8_intel' [37:37, 01:31](3129 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [45:56, 01:27](3217 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [33:38, 00:42](3149 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [45:56, 01:01](3428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [45:56, 01:18](3192 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [45:57, 01:09](3141 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [45:56, 01:34](3201 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [45:56, 00:43](3178 MB) - -PASS -- COMPILE 's2sw_intel' [10:23, 09:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [46:57, 00:46](1890 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [46:57, 00:59](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [46:57, 00:57](1951 MB) - -PASS -- COMPILE 's2s_intel' [10:23, 09:28] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [46:56, 00:34](2930 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [46:56, 01:24](2936 MB) -PASS -- TEST 'cpld_restart_c48_intel' [43:02, 01:08](2328 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:33, 17:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [38:47, 01:49](3198 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:33, 17:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:47, 00:36](1894 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:02, 01:17](1069 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:51, 00:49](1864 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 04:02] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:46, 01:27](1917 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:37] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [36:07, 00:57](640 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [34:35, 01:06](1535 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:27, 01:12](1545 MB) -PASS -- TEST 'control_latlon_intel' [33:39, 00:36](1544 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:06, 00:44](1545 MB) -PASS -- TEST 'control_c48_intel' [31:23, 00:32](1621 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [30:47, 00:36](741 MB) -PASS -- TEST 'control_c192_intel' [30:30, 01:12](1651 MB) -PASS -- TEST 'control_c384_intel' [29:34, 01:14](1971 MB) -PASS -- TEST 'control_c384gdas_intel' [26:13, 01:47](1155 MB) -PASS -- TEST 'control_stochy_intel' [25:54, 01:08](598 MB) -PASS -- TEST 'control_stochy_restart_intel' [16:24, 00:32](400 MB) -PASS -- TEST 'control_lndp_intel' [25:54, 01:15](596 MB) -PASS -- TEST 'control_iovr4_intel' [25:07, 01:09](588 MB) -PASS -- TEST 'control_iovr5_intel' [24:07, 00:23](590 MB) -PASS -- TEST 'control_p8_intel' [23:25, 01:12](1836 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [23:07, 00:58](1833 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [22:54, 01:08](1837 MB) -PASS -- TEST 'control_restart_p8_intel' [13:13, 00:51](966 MB) -PASS -- TEST 'control_noqr_p8_intel' [22:40, 00:56](1829 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [12:41, 01:09](976 MB) -PASS -- TEST 'control_decomp_p8_intel' [22:16, 01:08](1824 MB) -PASS -- TEST 'control_2threads_p8_intel' [20:50, 01:23](1919 MB) -PASS -- TEST 'control_p8_lndp_intel' [20:28, 01:07](1838 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [20:04, 00:59](1890 MB) -PASS -- TEST 'control_p8_mynn_intel' [19:36, 01:11](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [18:53, 01:42](1838 MB) -PASS -- TEST 'regional_control_intel' [18:47, 00:13](877 MB) -PASS -- TEST 'regional_restart_intel' [13:07, 01:06](881 MB) -PASS -- TEST 'regional_decomp_intel' [18:34, 01:03](880 MB) -PASS -- TEST 'regional_2threads_intel' [18:30, 00:32](970 MB) -PASS -- TEST 'regional_noquilt_intel' [17:55, 00:14](1203 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [16:23, 00:38](877 MB) -PASS -- TEST 'regional_wofs_intel' [16:20, 00:34](1609 MB) - -PASS -- COMPILE 'ifi_intel' [09:23, 08:12] ( 1 warnings ) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'regional_ifi_control_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'regional_ifi_decomp_intel' [, ]( MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'regional_ifi_2threads_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 09:09] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [37:34, 01:50](977 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [37:35, 00:34](1156 MB) -PASS -- TEST 'rap_decomp_intel' [37:34, 01:19](976 MB) -PASS -- TEST 'rap_2threads_intel' [37:34, 01:16](1059 MB) -PASS -- TEST 'rap_restart_intel' [12:59, 01:23](843 MB) -PASS -- TEST 'rap_sfcdiff_intel' [37:34, 00:41](972 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [37:34, 01:03](973 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:53, 01:24](844 MB) -PASS -- TEST 'hrrr_control_intel' [37:34, 01:38](969 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [37:34, 01:59](971 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [37:35, 01:07](1051 MB) -PASS -- TEST 'hrrr_control_restart_intel' [12:40, 00:41](800 MB) -PASS -- TEST 'rrfs_v1beta_intel' [37:34, 01:17](971 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [37:34, 00:25](1935 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [37:33, 00:52](1923 MB) - -PASS -- COMPILE 'csawmg_intel' [09:24, 08:33] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [11:07, 00:43](929 MB) - -PASS -- COMPILE 'wam_intel' [08:21, 08:06] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [37:35, 00:54](333 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:29, 15:50] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:59, 01:15](1835 MB) -PASS -- TEST 'regional_control_faster_intel' [10:56, 00:13](874 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:22, 05:17] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:47, 00:22](1561 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:24, 01:20](1560 MB) -PASS -- TEST 'control_stochy_debug_intel' [09:14, 00:34](766 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:51, 01:11](766 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:46, 00:37](1077 MB) -PASS -- TEST 'control_ras_debug_intel' [08:29, 00:49](774 MB) -PASS -- TEST 'control_diag_debug_intel' [08:25, 01:07](1628 MB) -PASS -- TEST 'control_debug_p8_intel' [08:12, 00:34](1857 MB) -PASS -- TEST 'regional_debug_intel' [08:00, 00:09](924 MB) -PASS -- TEST 'rap_control_debug_intel' [07:43, 00:35](1148 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:29, 00:33](1143 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:54, 01:03](1143 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:44, 01:10](1143 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:10, 00:33](1148 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:47, 00:53](1230 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:51, 00:53](1148 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:49, 00:50](1146 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:45, 00:56](1145 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:43, 00:21](1146 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:40, 00:28](1149 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:36, 00:53](1145 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [04:26, 00:16](1150 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:05, 00:33](1144 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [03:40, 00:51](1148 MB) -PASS -- TEST 'rap_flake_debug_intel' [03:11, 01:14](1146 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:45, 01:41](1151 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 03:07] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [02:35, 00:30](384 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:27] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:25, 00:48](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:22, 01:20](851 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [00:43, 01:45](848 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [00:16, 01:19](909 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:03, 02:22](905 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [59:45, 01:26](846 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [52:10, 01:37](748 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:11, 00:50](728 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:41, 14:05] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [59:27, 01:20](1058 MB) -PASS -- TEST 'conus13km_2threads_intel' [29:12, 00:25](1038 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [29:11, 00:48](940 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:36, 08:37] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [59:19, 00:42](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [19:35, 03:31] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:16, 01:08](1019 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [59:13, 00:30](1023 MB) -PASS -- TEST 'conus13km_debug_intel' [58:51, 01:09](1114 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [58:32, 01:00](797 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [58:26, 00:39](1097 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:23, 01:03](1186 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:34, 03:24] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:17, 00:27](1047 MB) - -PASS -- COMPILE 'hafsw_intel' [25:42, 09:55] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [57:19, 01:16](675 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:16, 00:59](1028 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:04, 01:52](723 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [56:31, 01:43](760 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:10, 02:09](772 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [54:37, 01:05](444 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [54:09, 01:57](464 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [53:45, 01:26](341 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [53:15, 02:35](403 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [53:09, 00:39](478 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [52:46, 01:22](478 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [52:44, 00:49](546 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [52:01, 00:20](372 MB) -PASS -- TEST 'gnv1_nested_intel' [51:56, 01:26](733 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [21:37, 03:42] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [51:28, 01:30](580 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [55:10, 17:16] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [39:22, 01:19](581 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [39:22, 01:07](753 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [48:02, 09:36] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [44:29, 01:25](750 MB) - -PASS -- COMPILE 'hafs_all_intel' [50:03, 09:09] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [39:23, 01:17](708 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:23, 01:41](695 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:21, 00:31](897 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [52:06, 08:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [37:15, 00:58](762 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [26:46, 01:06](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [37:15, 00:13](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [37:15, 00:35](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [37:15, 00:57](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [37:15, 00:36](762 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [35:50, 01:06](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [35:23, 00:40](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [35:21, 00:42](648 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [33:56, 01:02](631 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [33:24, 00:45](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [33:20, 00:50](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [32:34, 00:46](2018 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [42:59, 08:38] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [32:30, 00:41](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [34:48, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [43:11, 00:37](268 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [43:11, 00:50](411 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [32:11, 01:10](410 MB) - -PASS -- COMPILE 'atml_intel' [41:55, 10:08] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [32:05, 01:52](1854 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [31:52, 01:22](1861 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [23:33, 00:27](998 MB) - -PASS -- COMPILE 'atml_debug_intel' [39:53, 03:57] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:52, 01:33](1896 MB) - -PASS -- COMPILE 'atmw_intel' [56:13, 09:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [15:37, 00:54](1868 MB) - -PASS -- COMPILE 'atmaero_intel' [56:10, 08:50] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [14:55, 01:25](3092 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:55, 00:55](2980 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:55, 00:51](2991 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [23:36, 03:21] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:50, 01:27](4510 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:33] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:35, 01:14](3167 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:17] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [05:30, 01:48](1883 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [46:02, 02:09](1908 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [46:02, 01:44](1045 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:31, 01:00](1861 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:09] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [05:29, 00:41](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:16] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [16:42, 01:46](1916 MB) + +PASS -- COMPILE 's2swa_intel' [11:25, 10:33] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:34, 01:29](3201 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:34, 01:23](3197 MB) +PASS -- TEST 'cpld_restart_p8_intel' [56:13, 01:29](3131 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:34, 01:22](3217 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [02:14, 01:24](3151 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:34, 01:07](3429 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:34, 01:30](3192 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:35, 01:18](3144 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:34, 01:08](3200 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:34, 00:45](3177 MB) + +PASS -- COMPILE 's2sw_intel' [11:25, 10:14] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:34, 00:49](1893 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:34, 00:58](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:35, 00:58](1955 MB) + +PASS -- COMPILE 's2s_intel' [10:24, 09:35] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:34, 00:30](2926 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [11:34, 01:22](2929 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:43, 01:12](2327 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:32, 18:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [03:27, 01:41](3199 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [05:28, 01:33](1895 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [46:17, 00:50](1060 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:13, 01:12](1866 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 04:03] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [12:25, 01:28](1916 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:22, 09:43] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [02:01, 00:36](641 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [59:20, 01:12](1534 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:04, 00:42](1544 MB) +PASS -- TEST 'control_latlon_intel' [57:04, 00:16](1542 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [56:00, 00:45](1535 MB) +PASS -- TEST 'control_c48_intel' [55:31, 00:50](1618 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [55:31, 00:22](740 MB) +PASS -- TEST 'control_c192_intel' [55:13, 01:04](1655 MB) +PASS -- TEST 'control_c384_intel' [54:35, 01:43](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [54:16, 01:50](1155 MB) +PASS -- TEST 'control_stochy_intel' [53:41, 00:54](596 MB) +PASS -- TEST 'control_stochy_restart_intel' [41:08, 00:40](397 MB) +PASS -- TEST 'control_lndp_intel' [50:51, 00:44](596 MB) +PASS -- TEST 'control_iovr4_intel' [48:33, 00:51](591 MB) +PASS -- TEST 'control_iovr5_intel' [48:33, 01:07](589 MB) +PASS -- TEST 'control_p8_intel' [47:38, 01:38](1840 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [47:38, 00:56](1837 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [47:35, 01:40](1842 MB) +PASS -- TEST 'control_restart_p8_intel' [37:18, 01:28](971 MB) +PASS -- TEST 'control_noqr_p8_intel' [47:06, 01:14](1828 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [37:08, 01:09](989 MB) +PASS -- TEST 'control_decomp_p8_intel' [46:45, 00:56](1829 MB) +PASS -- TEST 'control_2threads_p8_intel' [46:38, 00:57](1917 MB) +PASS -- TEST 'control_p8_lndp_intel' [46:38, 00:57](1843 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [44:43, 01:19](1891 MB) +PASS -- TEST 'control_p8_mynn_intel' [44:24, 01:25](1844 MB) +PASS -- TEST 'merra2_thompson_intel' [44:02, 01:15](1837 MB) +PASS -- TEST 'regional_control_intel' [43:31, 00:20](885 MB) +PASS -- TEST 'regional_restart_intel' [37:56, 00:38](876 MB) +PASS -- TEST 'regional_decomp_intel' [43:21, 00:58](881 MB) +PASS -- TEST 'regional_2threads_intel' [43:15, 00:18](972 MB) +PASS -- TEST 'regional_noquilt_intel' [42:35, 00:42](1203 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [42:04, 00:59](880 MB) +PASS -- TEST 'regional_wofs_intel' [41:21, 00:19](1611 MB) + +PASS -- COMPILE 'ifi_intel' [08:21, 08:10] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [03:12, 00:43](877 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [03:12, 01:02](870 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [03:13, 00:54](965 MB) + +PASS -- COMPILE 'rrfs_intel' [09:22, 09:05] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [02:12, 01:45](980 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [02:13, 00:52](1153 MB) +PASS -- TEST 'rap_decomp_intel' [02:12, 01:27](979 MB) +PASS -- TEST 'rap_2threads_intel' [02:12, 01:08](1062 MB) +PASS -- TEST 'rap_restart_intel' [40:57, 01:57](846 MB) +PASS -- TEST 'rap_sfcdiff_intel' [02:12, 01:56](973 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [02:12, 01:51](972 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [40:04, 01:16](845 MB) +PASS -- TEST 'hrrr_control_intel' [02:12, 01:08](970 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [02:12, 01:23](968 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [02:13, 01:58](1049 MB) +PASS -- TEST 'hrrr_control_restart_intel' [39:02, 00:43](800 MB) +PASS -- TEST 'rrfs_v1beta_intel' [02:12, 01:00](970 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [02:12, 00:29](1938 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [02:12, 01:15](1921 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:38] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [38:19, 00:47](931 MB) + +PASS -- COMPILE 'wam_intel' [08:22, 08:09] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [02:11, 01:10](335 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:31, 15:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [37:17, 01:12](1842 MB) +PASS -- TEST 'regional_control_faster_intel' [37:05, 00:15](874 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 05:12] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [36:46, 00:59](1558 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [36:00, 00:37](1565 MB) +PASS -- TEST 'control_stochy_debug_intel' [35:42, 01:00](764 MB) +PASS -- TEST 'control_lndp_debug_intel' [35:21, 00:37](766 MB) +PASS -- TEST 'control_csawmg_debug_intel' [34:38, 00:44](1076 MB) +PASS -- TEST 'control_ras_debug_intel' [34:34, 01:13](775 MB) +PASS -- TEST 'control_diag_debug_intel' [34:12, 00:34](1624 MB) +PASS -- TEST 'control_debug_p8_intel' [34:11, 00:35](1857 MB) +PASS -- TEST 'regional_debug_intel' [33:52, 00:35](925 MB) +PASS -- TEST 'rap_control_debug_intel' [33:33, 00:38](1149 MB) +PASS -- TEST 'hrrr_control_debug_intel' [33:24, 00:45](1138 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [32:10, 00:39](1142 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [32:10, 00:50](1141 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [32:03, 00:27](1145 MB) +PASS -- TEST 'rap_diag_debug_intel' [31:41, 00:28](1230 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [31:14, 00:49](1148 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [31:08, 00:37](1147 MB) +PASS -- TEST 'rap_lndp_debug_intel' [30:58, 00:44](1151 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [30:48, 00:15](1145 MB) +PASS -- TEST 'rap_noah_debug_intel' [30:18, 00:45](1141 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [30:10, 01:08](1144 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [30:03, 00:29](1146 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [29:37, 01:06](1140 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [29:32, 01:07](1146 MB) +PASS -- TEST 'rap_flake_debug_intel' [29:15, 01:03](1146 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [28:37, 01:46](1154 MB) + +PASS -- COMPILE 'wam_debug_intel' [15:29, 03:07] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [28:37, 00:29](382 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:38, 08:27] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:03, 01:17](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [27:06, 01:16](848 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [25:57, 01:49](850 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [25:42, 01:10](914 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:43, 01:44](901 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:38, 01:22](847 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:15, 01:12](741 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:22, 00:21](728 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:42, 12:19] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [25:10, 00:49](1057 MB) +PASS -- TEST 'conus13km_2threads_intel' [21:25, 00:34](1039 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [20:22, 00:48](938 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:38, 08:39] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [25:09, 00:46](872 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:32, 03:35] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [24:49, 01:11](1027 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:43, 00:43](1027 MB) +PASS -- TEST 'conus13km_debug_intel' [24:32, 01:15](1122 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:22, 01:10](797 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:53, 01:11](1102 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:42, 00:30](1191 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:35, 03:19] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:08, 00:31](1043 MB) + +PASS -- COMPILE 'hafsw_intel' [54:07, 09:59] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:57, 01:31](674 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:57, 00:48](1022 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:55, 01:17](721 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [07:55, 02:11](764 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:56, 01:26](774 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 01:41](445 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:56, 01:50](465 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:56, 01:35](341 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:59, 02:21](415 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:55, 00:58](476 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:55, 00:44](476 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 01:04](541 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:56, 00:35](367 MB) +PASS -- TEST 'gnv1_nested_intel' [07:56, 01:34](737 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [47:04, 03:45] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:11, 00:47](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [59:13, 17:55] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [59:22, 00:45](583 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [59:05, 00:52](752 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [48:04, 09:44] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:57, 01:10](748 MB) + +PASS -- COMPILE 'hafs_all_intel' [42:59, 09:15] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [05:38, 01:32](710 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:30, 02:08](696 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [05:21, 00:16](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [35:51, 08:46] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:47, 00:14](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:00](754 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:47, 00:28](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:47, 00:32](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:47, 00:35](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:47, 00:57](762 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:47, 00:40](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:47, 00:10](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:48, 01:13](648 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:48, 01:21](629 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:47, 00:57](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:25, 00:49](2016 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:24, 00:12](2017 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [34:49, 08:43] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:25, 01:00](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [25:38, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [14:58, 00:59](274 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:58, 01:01](412 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [12:31, 00:17](413 MB) + +PASS -- COMPILE 'atml_intel' [32:46, 09:36] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:03, 01:17](1853 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [02:47, 01:29](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [43:17, 00:25](1004 MB) + +PASS -- COMPILE 'atml_debug_intel' [24:39, 04:03] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:07, 01:37](1891 MB) + +PASS -- COMPILE 'atmw_intel' [09:22, 09:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:23, 01:36](1866 MB) + +PASS -- COMPILE 'atmaero_intel' [09:22, 08:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [01:22, 01:03](3096 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [00:49, 01:08](2982 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:00, 01:43](2988 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:17, 03:24] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [58:20, 01:45](4521 MB) SYNOPSIS: -Starting Date/Time: 20240524 12:02:22 -Ending Date/Time: 20240524 14:05:14 -Total Time: 02h:03m:09s +Starting Date/Time: 20240528 14:37:42 +Ending Date/Time: 20240528 16:35:49 +Total Time: 01h:58m:23s Compiles Completed: 37/37 -Tests Completed: 174/177 -Failed Tests: -* TEST regional_ifi_control_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/AnningCheng-NOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_control_intel.log -* TEST regional_ifi_decomp_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/AnningCheng-NOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_decomp_intel.log -* TEST regional_ifi_2threads_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/AnningCheng-NOAA/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: -ac5a2eec5d0bdec070df19c3d3cb405bb32eb867 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (70810f1) - 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5254-g16a1d881) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240522 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78862 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-l) - USE CONFIG FILE: rt.test -* (-e) - USE ECFLOW - -PASS -- COMPILE 'ifi_intel' [09:21, 08:11] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [34:45, 00:50](874 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [34:45, 00:36](874 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [34:46, 00:45](967 MB) - -SYNOPSIS: -Starting Date/Time: 20240524 15:15:44 -Ending Date/Time: 20240524 15:33:11 -Total Time: 00h:17m:30s -Compiles Completed: 1/1 -Tests Completed: 3/3 +Tests Completed: 177/177 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 3c04e48a41..cd603d4e3d 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 +adb3ce384d9e58337d4271b64b69f94a58bfca68 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) @@ -35,277 +35,277 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240522 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_58631 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240524 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_128154 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:16, 19:31] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:28, 05:35](3202 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:17, 20:32] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:07, 14:14](1911 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:08, 15:18](1942 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:52, 07:43](1085 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:47, 16:25](1884 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:17, 20:41] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:18, 14:17](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:14, 09:23] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:49, 21:58](1935 MB) - -PASS -- COMPILE 's2swa_intel' [20:16, 19:25] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:30, 06:12](3219 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:47, 06:16](3217 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:05, 03:55](3151 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:31, 06:04](3251 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:04, 03:50](3184 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:27, 06:00](3724 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:27, 06:20](3216 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:21, 04:56](3536 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:49, 06:18](3227 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:43, 09:37](3812 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:22, 06:17](3614 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:51, 10:25](4495 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:27, 07:02](4650 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:14, 05:52](3211 MB) - -PASS -- COMPILE 's2sw_intel' [19:15, 18:48] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:32, 04:54](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:44, 04:47](1985 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:13, 09:19] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:24, 08:39](3286 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:14, 08:36] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:18, 05:55](1951 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:26] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:38, 04:47](1987 MB) - -PASS -- COMPILE 's2s_intel' [15:15, 14:23] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:03, 06:57](2931 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:17](2928 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:08, 01:29](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:23, 24:05] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:18, 06:04](3229 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:14, 19:43] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:53, 14:35](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:05, 07:34](1105 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:41, 16:38](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:19, 08:49] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:27, 23:44](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:19, 14:22] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:31, 03:22](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 02:24](1564 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:20, 02:27](1573 MB) -PASS -- TEST 'control_latlon_intel' [04:08, 02:24](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:18, 02:25](1561 MB) -PASS -- TEST 'control_c48_intel' [08:06, 06:11](1610 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:38, 05:15](733 MB) -PASS -- TEST 'control_c192_intel' [10:40, 08:39](1691 MB) -PASS -- TEST 'control_c384_intel' [15:18, 08:52](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [15:56, 07:07](1198 MB) -PASS -- TEST 'control_stochy_intel' [02:43, 01:25](629 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:45, 00:52](441 MB) -PASS -- TEST 'control_lndp_intel' [02:48, 01:19](623 MB) -PASS -- TEST 'control_iovr4_intel' [03:42, 02:03](622 MB) -PASS -- TEST 'control_iovr5_intel' [03:38, 02:04](620 MB) -PASS -- TEST 'control_p8_intel' [05:20, 02:59](1872 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:37, 03:16](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:05, 03:06](1865 MB) -PASS -- TEST 'control_restart_p8_intel' [04:20, 01:56](1012 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:01, 03:01](1860 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 02:02](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:52, 03:09](1863 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:00](1958 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:36, 04:56](1865 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:59, 04:01](1915 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:55, 03:10](1870 MB) -PASS -- TEST 'merra2_thompson_intel' [05:54, 03:22](1868 MB) -PASS -- TEST 'regional_control_intel' [07:16, 04:55](879 MB) -PASS -- TEST 'regional_restart_intel' [04:46, 02:51](871 MB) -PASS -- TEST 'regional_decomp_intel' [07:03, 05:09](861 MB) -PASS -- TEST 'regional_noquilt_intel' [05:51, 04:47](1187 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:51, 04:42](877 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:56, 04:54](868 MB) -PASS -- TEST 'regional_wofs_intel' [06:50, 05:34](1598 MB) - -PASS -- COMPILE 'rrfs_intel' [13:18, 12:13] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:28, 06:07](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:49, 03:40](1207 MB) -PASS -- TEST 'rap_decomp_intel' [08:28, 06:21](1006 MB) -PASS -- TEST 'rap_2threads_intel' [07:20, 05:36](1093 MB) -PASS -- TEST 'rap_restart_intel' [05:00, 03:11](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:29, 06:04](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:29, 06:21](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:06, 04:37](884 MB) -PASS -- TEST 'hrrr_control_intel' [05:12, 03:11](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:11, 03:17](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:12, 02:45](1085 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:38, 01:45](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:31, 05:57](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:21, 07:18](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:24, 07:07](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [11:17, 10:18] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:12, 06:29](966 MB) -PASS -- TEST 'control_ras_intel' [04:35, 02:52](656 MB) - -PASS -- COMPILE 'wam_intel' [10:18, 09:30] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:32, 01:53](386 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:19, 16:11] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:17, 02:53](1859 MB) -PASS -- TEST 'regional_control_faster_intel' [05:47, 04:38](876 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:18, 11:23] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:11, 02:32](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:26](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:34, 02:49](805 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:34](800 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:02, 04:25](1112 MB) -PASS -- TEST 'control_ras_debug_intel' [03:36, 02:41](810 MB) -PASS -- TEST 'control_diag_debug_intel' [04:53, 02:35](1659 MB) -PASS -- TEST 'control_debug_p8_intel' [04:54, 03:11](1896 MB) -PASS -- TEST 'regional_debug_intel' [17:57, 16:18](914 MB) -PASS -- TEST 'rap_control_debug_intel' [05:38, 04:44](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:30, 04:30](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:42](1182 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:28, 04:36](1179 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:38, 04:37](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:23, 04:48](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:35, 04:51](1177 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:35, 04:46](1187 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:28, 04:38](1179 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:44, 04:37](1183 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:42, 04:34](1181 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:36, 04:36](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 07:47](1181 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:39, 04:34](1173 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:37, 05:54](1182 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:34, 04:35](1183 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:55, 08:04](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:17, 05:27] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:28, 04:33](425 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:18, 10:16] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 03:26](1064 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:57, 05:05](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:50, 02:45](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:03, 04:44](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:04, 02:26](943 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:53, 02:52](888 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:57, 03:52](802 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:31](783 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:20, 14:14] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:45, 01:50](1090 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:13, 00:54](1090 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:13, 01:08](978 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:20, 10:17] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:49, 03:36](915 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:43, 06:05] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:37](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:28, 04:23](1053 MB) -PASS -- TEST 'conus13km_debug_intel' [15:44, 13:18](1138 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 13:20](827 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:31, 07:54](1138 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:21, 13:15](1208 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:17, 05:46] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:34, 04:31](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [17:23, 16:32] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:19, 04:26](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:42, 04:58](1066 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:46, 06:19](788 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:35, 10:47](805 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:46, 11:52](823 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:04, 04:36](482 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:29, 05:41](496 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:53, 02:17](396 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:39, 06:09](460 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:57, 03:16](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:14, 03:01](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:19, 03:44](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:15](430 MB) -PASS -- TEST 'gnv1_nested_intel' [05:06, 03:19](788 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:19, 06:59] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:08, 12:23](625 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [26:21, 25:29] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:14, 07:03](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:18, 07:05](685 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:20, 17:54] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:25, 05:18](678 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:18, 14:17] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:28, 05:28](749 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:32, 05:41](740 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:12](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:12, 07:36] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:27](761 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:24, 19:35] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:38, 05:46](3199 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:24, 21:00] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:49, 14:14](1913 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:08, 15:21](1944 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:55, 07:44](1082 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:43, 16:13](1884 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:24, 20:43] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:13, 14:06](1917 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:21, 09:22] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:30, 22:08](1935 MB) + +PASS -- COMPILE 's2swa_intel' [20:24, 19:25] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:37, 06:22](3221 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:43, 06:18](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:32, 03:53](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:36, 06:22](3248 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:32, 04:04](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:26, 05:59](3724 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:26, 06:14](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:16, 05:05](3533 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 06:16](3230 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:11, 09:42](3810 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:18, 06:16](3618 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:57, 10:48](4495 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:13, 07:02](4653 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:19, 05:54](3208 MB) + +PASS -- COMPILE 's2sw_intel' [19:23, 18:52] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:32, 05:02](1924 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:45, 04:52](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:22, 09:22] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:16, 08:16](3290 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:21, 08:41] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:18, 05:49](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:23, 14:24] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:41, 04:56](1987 MB) + +PASS -- COMPILE 's2s_intel' [15:23, 14:17] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:03, 07:00](2931 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:02, 02:24](2936 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:09, 01:30](2333 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:21, 24:02] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 06:13](3229 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:20, 19:30] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:44, 14:36](1933 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:06, 07:34](1111 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:35, 16:35](1911 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:40] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:32, 23:42](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:19, 14:16] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:34, 03:25](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:58, 02:24](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:06, 02:26](1572 MB) +PASS -- TEST 'control_latlon_intel' [04:57, 02:22](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 02:21](1566 MB) +PASS -- TEST 'control_c48_intel' [07:55, 06:13](1619 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:31, 05:12](736 MB) +PASS -- TEST 'control_c192_intel' [10:33, 08:36](1687 MB) +PASS -- TEST 'control_c384_intel' [14:01, 08:41](2003 MB) +PASS -- TEST 'control_c384gdas_intel' [15:25, 07:03](1199 MB) +PASS -- TEST 'control_stochy_intel' [03:34, 01:25](625 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 00:50](437 MB) +PASS -- TEST 'control_lndp_intel' [02:41, 01:22](623 MB) +PASS -- TEST 'control_iovr4_intel' [03:35, 02:03](620 MB) +PASS -- TEST 'control_iovr5_intel' [03:35, 02:04](624 MB) +PASS -- TEST 'control_p8_intel' [05:49, 02:57](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:59, 03:09](1869 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:09](1862 MB) +PASS -- TEST 'control_restart_p8_intel' [04:22, 02:04](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:56, 03:17](1853 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:19, 02:10](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:02](1858 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:06](1960 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:11](1856 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 03:42](1918 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:19](1878 MB) +PASS -- TEST 'merra2_thompson_intel' [05:52, 03:23](1871 MB) +PASS -- TEST 'regional_control_intel' [07:15, 04:55](873 MB) +PASS -- TEST 'regional_restart_intel' [04:57, 02:54](869 MB) +PASS -- TEST 'regional_decomp_intel' [06:57, 05:07](873 MB) +PASS -- TEST 'regional_noquilt_intel' [06:49, 04:52](1189 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:50, 04:52](873 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:51, 04:52](867 MB) +PASS -- TEST 'regional_wofs_intel' [06:51, 05:37](1599 MB) + +PASS -- COMPILE 'rrfs_intel' [13:18, 12:19] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:21, 06:05](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:07, 03:37](1209 MB) +PASS -- TEST 'rap_decomp_intel' [08:21, 06:21](1008 MB) +PASS -- TEST 'rap_2threads_intel' [08:21, 05:40](1092 MB) +PASS -- TEST 'rap_restart_intel' [05:08, 03:11](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:22, 06:08](1008 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:22, 06:34](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:12, 04:36](881 MB) +PASS -- TEST 'hrrr_control_intel' [05:05, 03:14](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:08, 03:17](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:05, 02:49](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:35, 01:45](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:25, 06:00](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:47, 07:22](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:49, 07:07](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [11:18, 10:20] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:03, 06:29](968 MB) +PASS -- TEST 'control_ras_intel' [04:36, 02:50](657 MB) + +PASS -- COMPILE 'wam_intel' [10:14, 09:25] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:23, 01:52](386 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 16:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:19, 03:02](1871 MB) +PASS -- TEST 'regional_control_faster_intel' [05:59, 04:45](865 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:13, 11:26] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:14, 02:34](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:26](1596 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:30, 02:49](798 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:30, 02:34](798 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:57, 04:44](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [03:32, 02:36](808 MB) +PASS -- TEST 'control_diag_debug_intel' [04:47, 02:33](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [04:54, 03:17](1887 MB) +PASS -- TEST 'regional_debug_intel' [18:53, 16:56](910 MB) +PASS -- TEST 'rap_control_debug_intel' [05:31, 04:39](1178 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:34, 04:33](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:38, 04:41](1179 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:33, 04:43](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 04:37](1179 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:39, 04:52](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:25, 04:42](1181 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:36, 04:46](1183 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:29, 04:40](1181 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:41, 04:38](1178 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:40, 04:40](1174 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:39, 04:37](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:34, 07:28](1173 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:30, 04:36](1176 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:25](1181 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:39, 04:48](1179 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:08, 07:56](1186 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:27] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:24, 04:37](425 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 10:07] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:24, 03:28](1059 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:59, 05:06](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:47, 02:48](886 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:58, 04:43](958 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:59, 02:24](943 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:57, 02:54](891 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:51, 03:53](798 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 01:31](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:14, 12:08] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:43, 01:51](1085 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:24, 00:54](1090 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:27, 01:08](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 10:14] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:05, 03:37](917 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:17, 06:04] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:31, 04:33](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:32, 04:22](1052 MB) +PASS -- TEST 'conus13km_debug_intel' [15:40, 13:20](1137 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:30, 13:43](825 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:18, 07:42](1140 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:38, 13:21](1207 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:17, 05:50] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:35, 04:37](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [17:19, 16:35] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:28, 04:29](718 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:44, 04:59](1071 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:53, 06:20](785 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:35, 10:47](807 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:03, 11:54](819 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 04:36](481 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:30, 05:41](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:56, 02:13](396 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:33, 06:06](463 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:14](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:07, 03:02](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:18, 03:45](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:09](432 MB) +PASS -- TEST 'gnv1_nested_intel' [05:07, 03:12](791 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:12, 06:53] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:09, 11:53](625 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [25:16, 24:55] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:22, 07:02](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:19, 07:05](689 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:14, 17:37] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:17, 05:17](680 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:19, 14:30] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:28, 05:33](757 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:23, 05:33](738 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:09](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:33] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:29](760 MB) PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:26, 01:31](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:21, 02:20](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:22, 02:22](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:28, 02:23](637 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:29, 02:30](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:21, 02:28](750 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:23, 02:20](637 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:23, 05:38](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:16, 05:34](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:30](759 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:30, 03:50](2016 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:36, 03:51](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:17, 04:51] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:09](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 07:38] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:27](747 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:20] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:02](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:36, 00:59](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:40](454 MB) - -PASS -- COMPILE 'atml_intel' [15:20, 14:08] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:33, 06:21](1894 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:28, 06:06](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 04:01](1045 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:20, 08:44] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:34, 06:03](1922 MB) - -PASS -- COMPILE 'atmw_intel' [13:20, 12:46] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:23](1892 MB) - -PASS -- COMPILE 'atmaero_intel' [12:18, 11:14] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:29, 04:04](3124 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:25, 04:15](3003 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:17](3011 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:29] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:27, 21:43](4540 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:21, 02:21](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:23, 02:22](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:21, 02:22](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:27](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:28](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:23, 02:20](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:37, 05:36](689 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:57, 05:36](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:27](747 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:29, 03:49](2016 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:33, 03:51](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:17, 04:49] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:30, 05:08](745 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 07:37] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:25, 02:29](758 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:42, 01:06](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:01](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:40](452 MB) + +PASS -- COMPILE 'atml_intel' [15:18, 14:04] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:24, 06:30](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:28, 06:28](1894 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 03:35](1044 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:17, 08:36] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:35, 05:56](1915 MB) + +PASS -- COMPILE 'atmw_intel' [13:13, 12:46] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:21](1889 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 11:04] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:41, 04:14](3124 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:40, 04:13](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:13, 04:17](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:28] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:25, 21:44](4537 MB) SYNOPSIS: -Starting Date/Time: 20240523 07:08:30 -Ending Date/Time: 20240523 08:38:45 -Total Time: 01h:31m:05s +Starting Date/Time: 20240527 13:02:55 +Ending Date/Time: 20240527 14:33:18 +Total Time: 01h:31m:16s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 1f3bdb048a..1eaa00dd1e 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 +c028fa43556f266cd1e672d315d9b64cc4346722 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) @@ -35,278 +35,279 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240522 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_186373 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240524 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_217145 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [23:43, 23:43] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:35, 07:31](3199 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:00, 26:00] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:50, 13:58](1924 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:20, 14:30](1942 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:37, 06:45](1077 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:42, 14:52](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:24, 27:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:24, 14:05](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:18, 17:18] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:25, 24:50](1939 MB) - -PASS -- COMPILE 's2swa_intel' [22:56, 22:56] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:45, 08:33](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:37, 08:22](3226 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:53, 05:05](3159 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:12, 08:17](3248 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:24, 05:35](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:42, 06:57](3460 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:10, 08:18](3224 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:56, 07:14](3172 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:23, 08:17](3228 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:45, 10:17](3440 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:54, 07:53](3607 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:56, 13:14](4194 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:51, 09:27](4351 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:24, 08:15](3210 MB) - -PASS -- COMPILE 's2sw_intel' [20:25, 20:25] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:14, 06:05](1929 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:02, 05:43](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:59, 16:58] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:47, 10:52](3260 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:38, 15:37] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:12, 06:15](1943 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:18, 19:11] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:44, 05:39](1991 MB) - -PASS -- COMPILE 's2s_intel' [19:46, 19:46] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:31, 07:00](2912 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:56, 02:12](2919 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:55, 01:10](2312 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:44, 26:44] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:15, 08:08](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:48, 22:48] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:40, 15:30](1931 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:55, 07:52](1091 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:04, 17:57](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:47, 14:47] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:19, 27:03](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:14, 16:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:13, 04:03](672 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 03:44](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:10, 03:42](1579 MB) -PASS -- TEST 'control_latlon_intel' [03:52, 03:37](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:06, 03:37](1568 MB) -PASS -- TEST 'control_c48_intel' [07:03, 06:37](1601 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:04, 05:42](726 MB) -PASS -- TEST 'control_c192_intel' [10:22, 10:02](1685 MB) -PASS -- TEST 'control_c384_intel' [19:02, 18:24](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [16:31, 14:37](1187 MB) -PASS -- TEST 'control_stochy_intel' [02:13, 01:58](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:29](431 MB) -PASS -- TEST 'control_lndp_intel' [02:00, 01:49](627 MB) -PASS -- TEST 'control_iovr4_intel' [03:18, 03:05](623 MB) -PASS -- TEST 'control_iovr5_intel' [03:24, 03:04](623 MB) -PASS -- TEST 'control_p8_intel' [03:59, 03:23](1873 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:02, 03:51](1870 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:37, 03:58](1875 MB) -PASS -- TEST 'control_restart_p8_intel' [03:30, 02:53](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:35, 04:11](1865 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:19, 02:26](1010 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:36, 04:42](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:37, 03:41](1951 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:08, 05:44](1872 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:04, 04:45](1924 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:08, 04:02](1879 MB) -PASS -- TEST 'merra2_thompson_intel' [05:04, 04:18](1873 MB) -PASS -- TEST 'regional_control_intel' [05:22, 05:03](869 MB) -PASS -- TEST 'regional_restart_intel' [02:57, 02:42](862 MB) -PASS -- TEST 'regional_decomp_intel' [05:17, 05:00](862 MB) -PASS -- TEST 'regional_2threads_intel' [03:25, 03:07](1010 MB) -PASS -- TEST 'regional_noquilt_intel' [05:21, 05:01](1187 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:52, 05:10](861 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:05, 05:50](869 MB) -PASS -- TEST 'regional_wofs_intel' [06:23, 06:05](1592 MB) - -PASS -- COMPILE 'rrfs_intel' [14:06, 14:06] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:36, 07:00](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:38, 04:09](1193 MB) -PASS -- TEST 'rap_decomp_intel' [07:55, 07:20](1010 MB) -PASS -- TEST 'rap_2threads_intel' [07:02, 06:24](1098 MB) -PASS -- TEST 'rap_restart_intel' [04:24, 03:31](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:53, 07:17](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:30, 07:58](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:58, 05:21](882 MB) -PASS -- TEST 'hrrr_control_intel' [04:47, 04:12](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:48, 04:03](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:36, 03:12](1082 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:39, 02:26](840 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:13, 07:09](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:37, 08:23](1967 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:39, 08:27](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [14:49, 14:49] -PASS -- TEST 'control_csawmg_intel' [07:03, 06:48](965 MB) -PASS -- TEST 'control_ras_intel' [03:40, 03:29](655 MB) - -PASS -- COMPILE 'wam_intel' [13:46, 13:45] -PASS -- TEST 'control_wam_intel' [02:24, 02:13](368 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [24:05, 24:05] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:57, 03:20](1874 MB) -PASS -- TEST 'regional_control_faster_intel' [04:59, 04:43](869 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:10, 15:10] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:45, 03:16](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:37, 03:15](1590 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:28, 03:18](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:03, 02:53](786 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:46, 04:31](1098 MB) -PASS -- TEST 'control_ras_debug_intel' [03:15, 03:05](796 MB) -PASS -- TEST 'control_diag_debug_intel' [03:16, 02:58](1645 MB) -PASS -- TEST 'control_debug_p8_intel' [03:49, 03:30](1886 MB) -PASS -- TEST 'regional_debug_intel' [16:25, 16:11](886 MB) -PASS -- TEST 'rap_control_debug_intel' [05:30, 05:18](1170 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:25, 05:13](1169 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:32, 05:20](1175 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:33, 05:21](1174 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 05:16](1170 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:43, 05:24](1254 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:39, 05:25](1170 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:50, 05:36](1171 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:36, 05:25](1172 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:48, 05:21](1170 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:30, 05:07](1171 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:45, 05:32](1168 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:12, 07:58](1170 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:18, 05:06](1167 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:41, 06:28](1172 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:24, 05:12](1171 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:13, 08:39](1173 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:31, 09:30] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:18, 05:05](402 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:34, 13:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:25, 03:52](1052 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:27, 05:48](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:01, 03:25](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:46, 05:18](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:15, 02:46](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:12, 03:38](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:40, 04:10](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 02:16](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:49, 17:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:09, 02:33](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:46, 01:26](1078 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:53, 01:35](977 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:50, 12:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 04:46](905 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:45, 09:43] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:08, 04:54](1049 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:09, 04:55](1049 MB) -PASS -- TEST 'conus13km_debug_intel' [15:09, 14:46](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:43, 14:18](807 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:30, 08:11](1114 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:31, 14:14](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:14, 11:14] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:08, 04:56](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [17:00, 17:00] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:05, 05:18](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:47, 04:33](1058 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:38, 07:41](743 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [12:24, 11:38](787 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:11, 13:15](805 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:13, 05:25](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 06:46](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:07, 03:04](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:36, 08:00](446 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:13, 03:42](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:14, 03:33](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:29, 04:50](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:00, 01:43](404 MB) -PASS -- TEST 'gnv1_nested_intel' [05:45, 04:15](768 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:22, 12:22] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:47, 12:51](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:17, 24:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:20, 07:39](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [08:25, 07:45](784 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:29, 17:26] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:41, 06:00](787 MB) - -PASS -- COMPILE 'hafs_all_intel' [30:56, 30:54] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:56, 06:07](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:14, 06:24](730 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:33, 20:02](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:37, 13:36] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:44, 02:34](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:44, 01:35](746 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:36, 02:27](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:36, 02:26](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:41, 02:32](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:42, 02:33](759 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:46, 02:36](759 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:32, 02:23](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:37, 06:04](690 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:44, 06:12](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:43, 02:36](759 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:44, 04:34](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:47, 04:37](2019 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:21, 09:21] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:10, 06:00](741 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:00, 12:59] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:44, 02:34](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:05, 04:02] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:07, 01:45](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:39, 01:18](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:19, 00:59](456 MB) - -PASS -- COMPILE 'atml_intel' [16:28, 16:24] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:20, 07:08](1897 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:14, 07:57](1897 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 04:25](1040 MB) - -PASS -- COMPILE 'atml_debug_intel' [18:15, 18:12] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 06:36](1909 MB) - -PASS -- COMPILE 'atmw_intel' [17:08, 17:03] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 02:53](1903 MB) - -PASS -- COMPILE 'atmaero_intel' [15:55, 15:55] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:58, 06:14](3117 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 06:29](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:14, 06:38](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:01, 11:01] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:06, 18:20](4488 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [23:16, 23:08] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [32:44, 08:00](3199 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:59] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [40:58, 14:11](1925 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:38, 15:24](1941 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:42, 07:22](1076 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [42:01, 15:37](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:12, 26:16] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [39:03, 13:52](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [19:12, 18:39] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:56, 25:46](1939 MB) + +PASS -- COMPILE 's2swa_intel' [22:16, 21:43] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:00, 09:02](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:06, 09:34](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [26:58, 05:58](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:00, 09:04](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [23:00, 05:52](3178 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:48, 07:42](3452 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:49, 08:55](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:48, 08:05](3169 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:00, 08:55](3225 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [35:48, 10:33](3438 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [19:14, 07:35](3608 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [46:04, 13:28](4191 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:08, 09:21](4347 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:45, 08:26](3207 MB) + +PASS -- COMPILE 's2sw_intel' [22:16, 21:21] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:14, 05:41](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:21, 05:49](1992 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:16, 16:03] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:59, 10:28](3263 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:16, 15:22] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:31, 06:09](1943 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:12, 18:30] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 05:42](1992 MB) + +PASS -- COMPILE 's2s_intel' [19:12, 19:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:39, 07:45](2912 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:27, 02:07](2919 MB) +PASS -- TEST 'cpld_restart_c48_intel' [23:25, 01:14](2313 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:19, 30:11] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [27:52, 08:36](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 24:53] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:39, 15:26](1930 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:43, 07:33](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:34, 17:56](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:12, 17:01] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [56:32, 27:24](1940 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:16, 17:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [32:21, 04:14](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [31:53, 03:43](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:45, 03:08](1580 MB) +PASS -- TEST 'control_latlon_intel' [31:39, 03:42](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [31:40, 03:43](1571 MB) +PASS -- TEST 'control_c48_intel' [24:15, 06:43](1605 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:55, 05:43](729 MB) +PASS -- TEST 'control_c192_intel' [18:04, 10:28](1694 MB) +PASS -- TEST 'control_c384_intel' [25:17, 18:32](1991 MB) +PASS -- TEST 'control_c384gdas_intel' [22:15, 14:32](1188 MB) +PASS -- TEST 'control_stochy_intel' [05:48, 02:16](630 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:39, 01:31](433 MB) +PASS -- TEST 'control_lndp_intel' [06:40, 02:43](629 MB) +PASS -- TEST 'control_iovr4_intel' [06:33, 03:05](626 MB) +PASS -- TEST 'control_iovr5_intel' [05:39, 03:04](624 MB) +PASS -- TEST 'control_p8_intel' [06:24, 04:02](1875 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:36, 04:22](1875 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:25, 04:14](1877 MB) +PASS -- TEST 'control_restart_p8_intel' [03:14, 02:07](1018 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:21, 03:59](1866 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:19, 02:42](1022 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:19, 03:52](1863 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:09, 03:16](1955 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:02, 05:47](1874 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:38](1924 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:15, 03:51](1881 MB) +PASS -- TEST 'merra2_thompson_intel' [05:36, 03:39](1876 MB) +PASS -- TEST 'regional_control_intel' [06:03, 05:04](864 MB) +PASS -- TEST 'regional_restart_intel' [05:47, 03:04](864 MB) +PASS -- TEST 'regional_decomp_intel' [06:47, 05:20](865 MB) +PASS -- TEST 'regional_2threads_intel' [03:45, 03:03](1007 MB) +PASS -- TEST 'regional_noquilt_intel' [05:43, 04:55](1190 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:53, 04:51](863 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:44, 04:51](863 MB) +PASS -- TEST 'regional_wofs_intel' [07:43, 06:06](1593 MB) + +PASS -- COMPILE 'rrfs_intel' [17:12, 16:38] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [36:51, 07:02](1013 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:09, 04:06](1189 MB) +PASS -- TEST 'rap_decomp_intel' [36:51, 07:38](1010 MB) +PASS -- TEST 'rap_2threads_intel' [31:39, 06:26](1100 MB) +PASS -- TEST 'rap_restart_intel' [05:12, 03:31](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [35:49, 06:56](1010 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:37, 07:41](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:11, 05:24](882 MB) +PASS -- TEST 'hrrr_control_intel' [34:12, 04:00](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [34:12, 04:12](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [32:59, 03:14](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:38, 01:56](839 MB) +PASS -- TEST 'rrfs_v1beta_intel' [29:43, 07:30](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [29:04, 08:38](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [29:04, 08:24](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [19:11, 18:16] +PASS -- TEST 'control_csawmg_intel' [07:37, 06:51](964 MB) +PASS -- TEST 'control_ras_intel' [04:30, 03:48](656 MB) + +PASS -- COMPILE 'wam_intel' [14:15, 13:24] +PASS -- TEST 'control_wam_intel' [31:07, 02:39](366 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [22:16, 21:33] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:18, 04:21](1876 MB) +PASS -- TEST 'regional_control_faster_intel' [06:02, 04:55](868 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:14, 17:36] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:02, 03:18](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:15](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:27](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:16, 03:11](787 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:22](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [05:02, 02:57](797 MB) +PASS -- TEST 'control_diag_debug_intel' [06:50, 03:53](1647 MB) +PASS -- TEST 'control_debug_p8_intel' [06:52, 03:53](1888 MB) +PASS -- TEST 'regional_debug_intel' [19:47, 16:27](889 MB) +PASS -- TEST 'rap_control_debug_intel' [09:34, 05:48](1172 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:34, 05:39](1170 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:34, 05:55](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:32, 05:47](1177 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 05:31](1172 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:00](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:38, 05:53](1172 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:50](1172 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:44, 05:12](1174 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 05:22](1172 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:33, 05:05](1172 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:15](1170 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:16, 07:58](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:38, 05:11](1168 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 06:07](1173 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 05:14](1172 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:13, 08:35](1175 MB) + +PASS -- COMPILE 'wam_debug_intel' [14:13, 13:41] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:29, 05:19](400 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:14, 16:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 03:49](1050 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:05, 06:26](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:39, 03:37](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:09, 05:20](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:13, 02:50](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 03:37](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 04:32](786 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:46, 01:43](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:12, 19:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:05, 02:12](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:41, 01:04](1078 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:29, 02:04](977 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:11, 16:11] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:09, 04:54](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 11:58] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 05:07](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:35, 04:56](1050 MB) +PASS -- TEST 'conus13km_debug_intel' [15:57, 14:11](1135 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:59, 14:24](811 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:51, 08:29](1115 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 14:11](1201 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:18, 10:35] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:37, 05:07](1069 MB) + +PASS -- COMPILE 'hafsw_intel' [18:16, 17:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:22, 05:26](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:41, 04:41](1057 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:34, 07:38](744 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:21, 12:33](790 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:34, 12:57](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:17, 05:20](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:44, 06:51](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:17, 02:56](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:44, 08:09](438 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:27, 03:46](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:43, 03:33](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:38, 04:53](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:45](406 MB) +PASS -- TEST 'gnv1_nested_intel' [06:28, 04:21](770 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:18, 12:53] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:01, 12:59](589 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [25:15, 24:55] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:29, 07:42](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:27, 07:48](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 18:36] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 05:59](786 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:16, 17:10] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:37, 06:08](749 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:36, 06:14](731 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:18, 20:07](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:17, 12:27] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:37](759 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:33](746 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:26](637 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:28, 02:32](637 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:33](637 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:35](759 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:30, 02:33](759 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:31](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:00, 06:12](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:57, 06:06](678 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:34](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:36, 04:39](2019 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:36, 04:35](2019 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 08:55] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:25](744 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:17, 12:35] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:01, 02:40](759 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 04:11] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:10, 02:53](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:00, 02:22](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:52, 01:08](456 MB) + +PASS -- COMPILE 'atml_intel' [18:13, 17:31] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:57, 08:31](1899 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:56, 08:34](1899 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 03:48](1042 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:14, 12:02] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:48, 07:04](1914 MB) + +PASS -- COMPILE 'atmw_intel' [16:17, 15:42] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:26, 02:49](1904 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 14:27] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:23, 07:06](3118 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:18, 07:16](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:10, 07:06](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:13, 11:46] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:26, 18:22](4490 MB) SYNOPSIS: -Starting Date/Time: 20240523 10:48:23 -Ending Date/Time: 20240523 14:32:13 -Total Time: 03h:45m:28s +Starting Date/Time: 20240528 00:29:32 +Ending Date/Time: 20240528 02:33:46 +Total Time: 02h:05m:29s Compiles Completed: 39/39 Tests Completed: 183/183 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index b08d35c7b4..d8a54f00f0 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -740041579e51120ea3749d5d868d838a4baeb7f2 +adb3ce384d9e58337d4271b64b69f94a58bfca68 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -24,427 +24,373 @@ 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-20240522 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1631238 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240524 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2141740 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:13, 05:46](3287 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:11, 16:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:01, 17:23](1961 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:17, 18:05](2133 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:14, 08:13](1223 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 19:27](1851 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:41, 16:56](1955 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:23] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 22:49](1883 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 13:25] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:14, 06:11](3310 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:19, 06:02](3304 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:30, 03:40](3215 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:14, 06:06](3328 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:30, 03:36](3254 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:08, 05:49](3591 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:08, 06:02](3298 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:16, 04:58](3177 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:18, 06:14](3309 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:05, 10:38](3494 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:55, 06:30](3594 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:05, 10:21](4245 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:24, 06:47](4339 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:10, 05:39](3285 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 12:37] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:54, 05:01](1980 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:01, 04:36](2033 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:22] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:02, 08:38](3323 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 05:03] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:59, 05:46](1964 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 12:00] ( 1 remarks ) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'cpld_control_noaero_p8_agrid_intel' [, ]( MB) - -PASS -- COMPILE 's2s_intel' [12:11, 11:54] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:42, 09:43](3067 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:56](3034 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:38](2465 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:11, 20:36] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:19, 05:45](3312 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:11, 14:58] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:25](1983 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 08:16](1241 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:03, 20:01](1893 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:42] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:52, 25:15](1912 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:23, 03:21](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:39, 02:54](1582 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:46, 02:59](1589 MB) -PASS -- TEST 'control_latlon_intel' [03:43, 02:56](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:48, 02:57](1576 MB) -PASS -- TEST 'control_c48_intel' [08:44, 07:38](1749 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:25, 06:23](856 MB) -PASS -- TEST 'control_c192_intel' [11:57, 10:34](1727 MB) -PASS -- TEST 'control_c384_intel' [13:03, 10:43](1997 MB) -PASS -- TEST 'control_c384gdas_intel' [11:54, 08:18](1367 MB) -PASS -- TEST 'control_stochy_intel' [02:23, 01:41](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:00](484 MB) -PASS -- TEST 'control_lndp_intel' [02:22, 02:00](638 MB) -PASS -- TEST 'control_iovr4_intel' [03:25, 02:35](635 MB) -PASS -- TEST 'control_iovr5_intel' [03:24, 02:30](635 MB) -PASS -- TEST 'control_p8_intel' [03:57, 03:07](1879 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 03:07](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:51, 03:03](1881 MB) -PASS -- TEST 'control_restart_p8_intel' [02:48, 01:48](1116 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:50, 03:04](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:42](1128 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:11](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:50, 02:55](1965 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:25](1878 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 04:04](1946 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:53, 03:06](1888 MB) -PASS -- TEST 'merra2_thompson_intel' [04:50, 03:26](1881 MB) -PASS -- TEST 'regional_control_intel' [06:42, 05:27](1076 MB) -PASS -- TEST 'regional_restart_intel' [03:37, 02:54](1076 MB) -PASS -- TEST 'regional_decomp_intel' [06:39, 05:44](1071 MB) -PASS -- TEST 'regional_2threads_intel' [04:43, 03:31](1086 MB) -PASS -- TEST 'regional_noquilt_intel' [06:43, 05:17](1374 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 05:24](1069 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:21](1078 MB) -PASS -- TEST 'regional_wofs_intel' [07:40, 06:53](1894 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 11:03] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:41, 07:48](1091 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:10, 04:12](1280 MB) -PASS -- TEST 'rap_decomp_intel' [09:42, 08:10](1019 MB) -PASS -- TEST 'rap_2threads_intel' [08:41, 07:20](1160 MB) -PASS -- TEST 'rap_restart_intel' [05:51, 04:06](1085 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:46, 07:46](1088 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:48, 08:14](1027 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:49, 05:52](1112 MB) -PASS -- TEST 'hrrr_control_intel' [04:45, 04:00](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:41, 04:56](1020 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:45, 03:43](1092 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:35, 02:11](990 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:52, 07:37](1081 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:28, 09:21](1981 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:28, 09:05](2059 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:26] -PASS -- TEST 'control_csawmg_intel' [06:41, 06:08](1001 MB) -PASS -- TEST 'control_ras_intel' [04:26, 03:21](719 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:31] -PASS -- TEST 'control_csawmg_gnu' [09:43, 08:27](750 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:10] -PASS -- TEST 'control_wam_intel' [03:21, 02:08](639 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:11, 18:13] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:50, 02:47](1879 MB) -PASS -- TEST 'regional_control_faster_intel' [05:38, 04:56](1075 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:17] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:45, 02:36](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:47, 02:34](1581 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:01](783 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:44](789 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:38, 04:15](1103 MB) -PASS -- TEST 'control_ras_debug_intel' [03:23, 02:43](789 MB) -PASS -- TEST 'control_diag_debug_intel' [03:44, 02:49](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [03:40, 03:04](1876 MB) -PASS -- TEST 'regional_debug_intel' [18:37, 17:51](1049 MB) -PASS -- TEST 'rap_control_debug_intel' [05:21, 04:54](1169 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:38](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:22, 04:54](1169 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 05:00](1160 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:51](1174 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:06](1253 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1169 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:02](1162 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:26, 04:54](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:56](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:54](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:59](1171 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:05](1172 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:52](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:49](1172 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:49](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:39, 08:21](1176 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:37] -PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 02:18](714 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:49] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:24, 04:55](465 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:32] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 04:00](1143 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:32](1034 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:29](968 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:33, 06:15](1071 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 03:14](945 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:40](921 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:45, 04:53](1018 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:52](926 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:10, 16:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:56, 02:10](1188 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:45, 00:56](1101 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:16](1100 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 10:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 04:14](974 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:00] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:50](1050 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:26, 04:47](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [15:50, 14:18](1216 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:46, 14:46](884 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:49, 08:08](1103 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:24](1244 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:56](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 12:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:20, 05:04](722 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 06:15](1096 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:33, 07:02](804 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:16, 13:39](850 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:29, 15:11](873 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:43](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 08:02](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:43, 02:47](352 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:06, 07:37](460 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:48](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:37](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:56, 04:10](568 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:12](380 MB) -PASS -- TEST 'gnv1_nested_intel' [07:02, 04:07](781 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:18] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:44](537 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:11, 20:25] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:01, 08:59](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:05, 08:52](721 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 12:21] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:03, 06:40](673 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:42] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:34](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:35](797 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 16:02](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:15] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:42](1124 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:41](1096 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:39](1003 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:20, 02:36](1002 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:41](1001 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:44](1133 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:44](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:36](1006 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:27, 06:37](1049 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:17, 06:21](1030 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:45](1139 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:55](2477 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:53](2435 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:18, 05:50](3320 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:05, 17:19](1992 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:17, 17:56](2167 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:11, 08:12](1256 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:58, 19:28](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 17:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:39, 17:02](1973 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:37] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:12, 22:58](1929 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 13:41] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:08, 06:03](3319 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:21, 06:05](3317 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:23, 03:33](3262 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:08, 05:59](3367 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:24, 03:36](3271 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:08, 05:45](3616 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:05, 06:08](3338 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:09, 04:57](3202 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:14, 06:07](3319 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:24, 10:28](3517 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:05, 06:33](3626 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:52, 09:53](4280 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:21, 06:48](4367 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:10, 05:41](3325 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 12:58] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:11, 05:02](1968 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:18, 04:31](2049 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:38] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:12, 08:39](3352 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:09] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 05:50](2001 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 12:11] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:17, 04:28](2038 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 12:13] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:56, 09:35](3089 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:49](3075 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:40, 01:40](2494 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:12, 20:24] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:23, 05:43](3343 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:46] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:03, 17:36](2005 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 08:20](1260 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 19:55](1873 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:06] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:02, 24:55](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:13, 12:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:26, 03:20](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:51, 02:56](1599 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:57, 03:00](1613 MB) +PASS -- TEST 'control_latlon_intel' [04:48, 02:57](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:54, 03:02](1606 MB) +PASS -- TEST 'control_c48_intel' [08:50, 07:38](1761 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 06:29](871 MB) +PASS -- TEST 'control_c192_intel' [12:12, 10:42](1751 MB) +PASS -- TEST 'control_c384_intel' [13:17, 10:30](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [12:30, 08:09](1402 MB) +PASS -- TEST 'control_stochy_intel' [02:25, 01:38](664 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:30, 01:03](509 MB) +PASS -- TEST 'control_lndp_intel' [02:26, 01:36](662 MB) +PASS -- TEST 'control_iovr4_intel' [03:27, 02:30](658 MB) +PASS -- TEST 'control_iovr5_intel' [03:27, 02:26](660 MB) +PASS -- TEST 'control_p8_intel' [05:06, 03:21](1894 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:06](1904 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:04, 02:58](1895 MB) +PASS -- TEST 'control_restart_p8_intel' [02:46, 01:46](1138 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:58, 03:07](1894 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:06, 01:44](1163 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:50, 03:13](1888 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:52, 03:00](1990 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:47, 05:31](1870 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:57, 04:10](1963 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:54, 03:15](1905 MB) +PASS -- TEST 'merra2_thompson_intel' [04:51, 03:27](1897 MB) +PASS -- TEST 'regional_control_intel' [06:40, 05:23](1109 MB) +PASS -- TEST 'regional_restart_intel' [03:39, 03:00](1098 MB) +PASS -- TEST 'regional_decomp_intel' [06:39, 05:44](1091 MB) +PASS -- TEST 'regional_2threads_intel' [04:45, 03:32](1087 MB) +PASS -- TEST 'regional_noquilt_intel' [06:44, 05:23](1396 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:49, 05:20](1095 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:22](1102 MB) +PASS -- TEST 'regional_wofs_intel' [07:43, 06:53](1915 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:14] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:43, 07:44](1112 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:10, 04:15](1301 MB) +PASS -- TEST 'rap_decomp_intel' [09:38, 08:07](1038 MB) +PASS -- TEST 'rap_2threads_intel' [08:38, 07:19](1187 MB) +PASS -- TEST 'rap_restart_intel' [04:45, 04:01](1104 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:41, 07:43](1110 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 08:07](1042 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:47, 05:53](1138 MB) +PASS -- TEST 'hrrr_control_intel' [04:44, 03:59](1047 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 04:12](1037 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:36, 03:42](1118 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:37, 02:10](1002 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:49, 07:38](1106 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:26](1983 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:33, 09:06](2054 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 10:46] +PASS -- TEST 'control_csawmg_intel' [07:42, 06:10](1021 MB) +PASS -- TEST 'control_ras_intel' [04:23, 03:21](737 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:35] +PASS -- TEST 'control_csawmg_gnu' [09:54, 08:32](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:17] +PASS -- TEST 'control_wam_intel' [02:22, 02:05](656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:12, 19:06] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:51, 02:45](1897 MB) +PASS -- TEST 'regional_control_faster_intel' [05:39, 04:49](1101 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 06:33] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 02:36](1627 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:33](1623 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:27, 03:01](824 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:23, 02:44](816 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:42, 04:20](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [03:23, 02:43](832 MB) +PASS -- TEST 'control_diag_debug_intel' [03:45, 02:40](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [03:42, 03:02](1922 MB) +PASS -- TEST 'regional_debug_intel' [17:38, 17:04](1094 MB) +PASS -- TEST 'rap_control_debug_intel' [05:29, 04:54](1209 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:24, 04:49](1214 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:49](1212 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:24, 04:51](1213 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 04:50](1211 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:44, 05:04](1297 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:26, 04:57](1208 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:25, 05:00](1205 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:26, 04:55](1211 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:56](1210 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:49](1217 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:27, 04:50](1209 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 07:57](1214 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:47](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:48](1211 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:50](1208 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:46, 08:33](1214 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:53] +PASS -- TEST 'control_csawmg_debug_gnu' [03:38, 02:23](749 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:13, 04:15] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:23, 05:06](524 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 04:00](1177 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:27](1042 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:37, 03:22](999 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:42, 06:09](1092 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 03:09](967 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:41, 03:37](941 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:42, 04:51](1034 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:54](937 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 14:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:58, 02:05](1206 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:49, 01:00](1123 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:16](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:16](992 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:02] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:58](1089 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:22, 04:42](1077 MB) +PASS -- TEST 'conus13km_debug_intel' [16:03, 14:32](1242 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:28](941 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:48, 08:07](1165 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:53, 14:17](1306 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:29, 04:53](1127 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 12:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:40, 05:20](745 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:35, 07:16](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:25, 07:07](836 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:36, 13:48](875 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:51, 15:26](881 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:04, 05:53](500 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 07:17](519 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:49, 02:53](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:17, 07:40](470 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 04:00](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:03, 03:46](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:55, 04:17](593 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 01:18](403 MB) +PASS -- TEST 'gnv1_nested_intel' [05:45, 04:12](800 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:33] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:58, 12:48](588 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:12, 20:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:10, 08:58](675 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:11, 09:01](743 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 12:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:21, 06:32](728 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:34] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:30, 06:36](834 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:29, 06:34](820 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:59, 16:11](1216 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:09] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:40](1145 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:37](1105 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:33](1014 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:40](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:22, 02:39](1025 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:21, 02:40](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:40](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:32](1027 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:50, 06:19](1060 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:46, 06:20](1033 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:40](1136 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:57](2476 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:58](2488 MB) PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:27](1071 MB) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 06:15](1081 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:49] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:48](1143 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 06:05] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:42](1155 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:13] ( 1 remarks ) +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:11] ( 1 remarks ) PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:54](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 01:02](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:36](312 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 12:41] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:24](1840 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:04, 04:30](1836 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:22](1089 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:10, 05:20] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:00, 05:46](1840 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:25] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 02:00](1891 MB) - -PASS -- COMPILE 'atmaero_intel' [11:10, 11:04] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:03, 04:10](3166 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:03, 04:56](3066 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:48, 05:04](3086 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:58] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:02, 22:54](4450 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 04:58] -PASS -- TEST 'control_c48_gnu' [12:42, 11:17](1531 MB) -PASS -- TEST 'control_stochy_gnu' [04:25, 03:22](489 MB) -PASS -- TEST 'control_ras_gnu' [05:21, 04:46](498 MB) -PASS -- TEST 'control_p8_gnu' [05:53, 04:50](1450 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:40](1452 MB) -PASS -- TEST 'control_flake_gnu' [11:23, 10:18](534 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 04:52] -PASS -- TEST 'rap_control_gnu' [11:34, 10:50](845 MB) -PASS -- TEST 'rap_decomp_gnu' [11:34, 10:44](850 MB) -PASS -- TEST 'rap_2threads_gnu' [10:37, 09:46](933 MB) -PASS -- TEST 'rap_restart_gnu' [06:43, 05:32](572 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 10:49](845 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:32, 11:07](848 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:48, 08:01](572 MB) -PASS -- TEST 'hrrr_control_gnu' [06:36, 05:35](845 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:31](831 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:35, 05:03](925 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:36, 05:32](844 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:53](556 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:52](652 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:44, 10:29](841 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 08:05] -PASS -- TEST 'control_diag_debug_gnu' [02:49, 01:35](1268 MB) -PASS -- TEST 'regional_debug_gnu' [10:39, 09:49](750 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:38](851 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:32](848 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:34](854 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:37](852 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:36, 02:45](935 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:23, 04:02](848 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:34](858 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:31](843 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:32](482 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:21, 01:44](474 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:40, 01:46](1435 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:37](850 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:52](854 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:36, 04:14](857 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:30] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:41] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:32, 09:24](703 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:02](703 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:35, 08:41](753 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:35](745 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:30, 05:07](702 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:39, 07:05](544 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:34](536 MB) -PASS -- TEST 'conus13km_control_gnu' [04:55, 03:10](871 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:45, 05:44](875 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:47, 01:51](547 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:11, 12:24] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:39, 05:46](732 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 08:02] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:32](702 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:23, 02:26](704 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:49, 06:50](875 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:45, 07:02](573 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:42, 07:11](880 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:42, 06:51](942 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 08:06] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:25, 02:41](725 MB) - -PASS -- COMPILE 's2swa_gnu' [15:12, 14:50] - -PASS -- COMPILE 's2s_gnu' [15:12, 14:43] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:04, 06:48](1518 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:23] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:35] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:03, 22:35](1449 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 03:18] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:57, 13:32](1451 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:12] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:02](698 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:52](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:33](322 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 12:29] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:23, 04:29](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:17, 04:25](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:05, 02:32](1104 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:23] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:16, 05:56](1881 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:28] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 01:56](1932 MB) + +PASS -- COMPILE 'atmaero_intel' [11:12, 11:08] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:18, 04:08](3206 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:16, 04:57](3108 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:03, 04:58](3117 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:55] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [32:22, 30:02](4444 MB) + +PASS -- COMPILE 'atm_gnu' [05:12, 04:53] +PASS -- TEST 'control_c48_gnu' [12:47, 11:09](1541 MB) +PASS -- TEST 'control_stochy_gnu' [04:26, 03:24](502 MB) +PASS -- TEST 'control_ras_gnu' [05:28, 04:54](510 MB) +PASS -- TEST 'control_p8_gnu' [06:09, 04:52](1463 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:03, 04:44](1475 MB) +PASS -- TEST 'control_flake_gnu' [11:26, 10:33](545 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:48] +PASS -- TEST 'rap_control_gnu' [11:41, 10:54](865 MB) +PASS -- TEST 'rap_decomp_gnu' [11:42, 10:48](866 MB) +PASS -- TEST 'rap_2threads_gnu' [10:42, 09:52](943 MB) +PASS -- TEST 'rap_restart_gnu' [06:48, 05:26](589 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:45, 10:57](862 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:41, 11:19](860 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:55, 07:57](591 MB) +PASS -- TEST 'hrrr_control_gnu' [06:47, 05:40](861 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:40, 05:36](846 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:36, 05:12](931 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:42, 05:39](859 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:41, 02:49](571 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:39, 02:48](667 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:54, 10:32](857 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:12, 08:26] +PASS -- TEST 'control_diag_debug_gnu' [03:04, 01:47](1289 MB) +PASS -- TEST 'regional_debug_gnu' [12:49, 11:10](742 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:36, 02:44](877 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:31, 02:39](869 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:29, 02:36](873 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:27, 02:40](875 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:48, 02:51](956 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:27, 04:04](870 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:25, 02:38](870 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:26, 02:42](868 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:23, 01:35](509 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:24, 02:01](503 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:43, 01:51](1456 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:25, 02:37](871 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:23, 02:53](877 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 04:22](878 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:12, 02:28] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:40] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:37, 09:21](725 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:42, 04:56](721 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:46, 08:45](768 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:38, 04:35](767 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:38, 05:04](718 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:44, 06:58](561 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:34](551 MB) +PASS -- TEST 'conus13km_control_gnu' [05:06, 03:15](886 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:46, 05:43](888 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:47](558 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:12, 12:28] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:47, 05:43](742 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:12, 08:32] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:26, 02:31](721 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:28, 02:27](719 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:04, 07:05](904 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:54, 07:01](593 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:50, 07:34](909 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:48, 06:44](971 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:12, 08:27] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:27, 02:36](744 MB) + +PASS -- COMPILE 's2swa_gnu' [15:11, 14:39] + +PASS -- COMPILE 's2s_gnu' [15:11, 14:27] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:17, 06:53](1545 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:24] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:37] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:07, 22:57](1450 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:18] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:59, 13:29](1476 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:12] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:20, 03:03](702 MB) SYNOPSIS: -Starting Date/Time: 20240523 12:48:03 -Ending Date/Time: 20240523 14:21:49 -Total Time: 01h:35m:37s +Starting Date/Time: 20240528 03:17:29 +Ending Date/Time: 20240528 04:51:37 +Total Time: 01h:34m:34s Compiles Completed: 55/55 -Tests Completed: 242/243 -Failed Tests: -* TEST cpld_control_noaero_p8_agrid_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/rt-2273/tests/logs/log_hera/run_cpld_control_noaero_p8_agrid_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 HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -740041579e51120ea3749d5d868d838a4baeb7f2 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240522 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1869542 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems -* (-n) - RUN SINGLE TEST: cpld_control_noaero_p8_agrid -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:20] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:31](2028 MB) - -SYNOPSIS: -Starting Date/Time: 20240523 14:57:08 -Ending Date/Time: 20240523 15:18:48 -Total Time: 00h:21m:48s -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 081a61eb80..6501143574 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 +adb3ce384d9e58337d4271b64b69f94a58bfca68 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) @@ -35,433 +35,367 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240522 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1942192 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240524 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_958471 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:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 08:02](2129 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:43] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:10, 14:10](2003 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:43, 14:20](2298 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:36, 06:43](1310 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:10, 15:28](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:33, 13:37](1983 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 06:02] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:17, 20:32](1958 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 11:24] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:50, 07:57](2189 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:02, 07:40](2181 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:15, 05:11](1972 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:54, 08:05](2214 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:06, 05:38](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:55, 09:19](2555 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:52](2178 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:09, 06:45](2088 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:02, 08:01](2188 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:36, 15:31](2983 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:06, 06:05](2924 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:40, 09:02](3784 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:57, 06:11](3627 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:53, 05:20](2155 MB) - -PASS -- COMPILE 's2sw_intel' [11:11, 10:36] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:58, 07:21](2028 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:00, 04:09](2089 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 06:03] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:09, 06:59](2198 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:54, 04:48](2039 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:11, 09:42] ( 3 remarks ) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'cpld_control_noaero_p8_agrid_intel' [, ]( MB) - -PASS -- COMPILE 's2s_intel' [10:11, 09:32] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:39, 07:23](3087 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:13](3069 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:41, 01:17](2500 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 17:09] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 07:23](2182 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:26] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:50, 13:59](2038 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:00, 06:50](1388 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:48, 15:41](1960 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:30] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:45, 21:39](2016 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:20, 02:58](719 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:36, 02:38](1621 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:39, 02:39](1612 MB) -PASS -- TEST 'control_latlon_intel' [03:30, 02:43](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:38, 02:37](1611 MB) -PASS -- TEST 'control_c48_intel' [07:32, 07:00](1750 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:27, 05:48](861 MB) -PASS -- TEST 'control_c192_intel' [09:39, 09:03](1764 MB) -PASS -- TEST 'control_c384_intel' [12:28, 09:47](2052 MB) -PASS -- TEST 'control_c384gdas_intel' [10:01, 07:15](1531 MB) -PASS -- TEST 'control_stochy_intel' [02:20, 01:31](667 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:54](553 MB) -PASS -- TEST 'control_lndp_intel' [02:20, 01:30](678 MB) -PASS -- TEST 'control_iovr4_intel' [05:19, 02:09](666 MB) -PASS -- TEST 'control_iovr5_intel' [04:24, 02:10](661 MB) -PASS -- TEST 'control_p8_intel' [05:42, 03:16](1910 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 03:24](1909 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 03:25](1911 MB) -PASS -- TEST 'control_restart_p8_intel' [02:48, 01:35](1157 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:39, 03:30](1905 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:44, 01:38](1207 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:44, 03:13](1902 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:41, 03:18](1988 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:30, 05:05](1909 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 04:02](1989 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:50, 03:09](1908 MB) -PASS -- TEST 'merra2_thompson_intel' [04:53, 03:43](1916 MB) -PASS -- TEST 'regional_control_intel' [06:29, 05:25](1203 MB) -PASS -- TEST 'regional_restart_intel' [03:26, 02:45](1185 MB) -PASS -- TEST 'regional_decomp_intel' [05:27, 04:54](1190 MB) -PASS -- TEST 'regional_2threads_intel' [04:24, 03:36](1162 MB) -PASS -- TEST 'regional_noquilt_intel' [05:31, 04:33](1526 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:39](1210 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:38](1203 MB) -PASS -- TEST 'regional_wofs_intel' [06:24, 05:33](2088 MB) - -PASS -- COMPILE 'rrfs_intel' [09:11, 08:20] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:33, 06:30](1216 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:44, 03:25](1452 MB) -PASS -- TEST 'rap_decomp_intel' [07:32, 06:53](1172 MB) -PASS -- TEST 'rap_2threads_intel' [06:45, 06:02](1380 MB) -PASS -- TEST 'rap_restart_intel' [04:51, 03:24](1148 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:45, 06:28](1217 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:37, 06:58](1158 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:54, 05:02](1196 MB) -PASS -- TEST 'hrrr_control_intel' [04:36, 03:19](1080 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:33, 03:22](1046 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:46, 03:04](1124 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:18, 01:51](1030 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:53, 06:21](1202 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:43](2016 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:30](2195 MB) - -PASS -- COMPILE 'csawmg_intel' [08:11, 07:29] -PASS -- TEST 'control_csawmg_intel' [06:26, 05:57](1064 MB) -PASS -- TEST 'control_ras_intel' [03:18, 02:50](807 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:11, 04:01] -PASS -- TEST 'control_csawmg_gnu' [07:34, 06:44](1061 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 06:39] -PASS -- TEST 'control_wam_intel' [02:24, 01:51](787 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 13:47] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:50, 02:34](1910 MB) -PASS -- TEST 'regional_control_faster_intel' [05:23, 04:17](1204 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 05:08] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:13](1629 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:33, 02:09](1626 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:35](835 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:18](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:24, 04:25](1150 MB) -PASS -- TEST 'control_ras_debug_intel' [03:18, 02:18](852 MB) -PASS -- TEST 'control_diag_debug_intel' [03:26, 02:19](1686 MB) -PASS -- TEST 'control_debug_p8_intel' [04:29, 03:20](1927 MB) -PASS -- TEST 'regional_debug_intel' [15:24, 15:06](1137 MB) -PASS -- TEST 'rap_control_debug_intel' [04:17, 04:03](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:20, 03:55](1213 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 03:58](1220 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 03:59](1230 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:17, 04:02](1220 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:24, 04:18](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:18, 04:05](1222 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:17, 04:04](1227 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:17, 04:03](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 04:02](1218 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:17, 04:00](1215 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:57](1215 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:31](1228 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:18, 03:59](1213 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 05:10](1229 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:19, 03:58](1216 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:48, 06:56](1233 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:30] -PASS -- TEST 'control_csawmg_debug_gnu' [03:32, 02:22](1053 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:14] ( 855 warnings ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 07:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:14](1308 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:32, 05:25](1135 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:43, 02:53](1025 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:42, 05:03](1274 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 02:39](1037 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:36, 03:00](969 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:41, 04:07](1095 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:32, 01:35](961 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 11:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:38, 01:41](1291 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:29, 00:44](1204 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:31, 01:01](1156 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 07:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 03:38](1069 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:28] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 03:57](1097 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:54](1095 MB) -PASS -- TEST 'conus13km_debug_intel' [12:35, 11:53](1355 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:29, 12:08](1002 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:26, 06:39](1247 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:25, 11:34](1425 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:12] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 03:56](1162 MB) - -PASS -- COMPILE 'hafsw_intel' [11:10, 09:41] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:41](871 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:20, 04:57](1279 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:09, 06:14](948 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:02, 13:56](999 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:08, 15:47](1009 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:30](607 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 06:54](615 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:42, 02:44](436 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:01, 07:44](545 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:50](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:40, 03:42](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:46, 04:51](681 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 01:26](449 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:29] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:42, 11:24](636 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:56] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:48, 16:24](767 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:48, 16:05](853 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 10:11] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:55, 10:32](810 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:10, 10:08] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:23](959 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:04, 05:24](927 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:50, 16:19](1345 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:13] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:08](1148 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:20](1102 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:15, 02:03](1007 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:06](1009 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:06](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:09](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:06](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:05](1012 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:55, 05:41](1166 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:50, 05:39](1154 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:11](1131 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:16, 03:00](2389 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:05](2380 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 04:05] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:12](1070 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:13, 06:37] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:08](1154 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:25, 00:54](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:19, 00:47](559 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:22, 00:33](569 MB) - -PASS -- COMPILE 'atml_intel' [10:10, 09:28] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:05, 06:19](1904 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 06:27](1912 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:35, 02:47](1144 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 04:10] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:51, 05:14](1923 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 09:33] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:47, 01:37](1946 MB) - -PASS -- COMPILE 'atmaero_intel' [08:11, 07:24] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:45, 03:47](2030 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:47, 04:18](1807 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:34](1821 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:49] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:24, 16:56](4585 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 05:18] -PASS -- TEST 'control_c48_gnu' [10:37, 09:29](1553 MB) -PASS -- TEST 'control_stochy_gnu' [03:19, 02:22](730 MB) -PASS -- TEST 'control_ras_gnu' [04:17, 03:44](732 MB) -PASS -- TEST 'control_p8_gnu' [04:42, 03:54](1729 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:35, 04:04](1736 MB) -PASS -- TEST 'control_flake_gnu' [05:17, 04:29](811 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 05:03] -PASS -- TEST 'rap_control_gnu' [08:41, 07:43](1081 MB) -PASS -- TEST 'rap_decomp_gnu' [08:33, 07:44](1082 MB) -PASS -- TEST 'rap_2threads_gnu' [08:31, 07:51](1142 MB) -PASS -- TEST 'rap_restart_gnu' [04:46, 03:51](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:41, 08:15](1088 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:33, 08:24](1082 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:52, 05:45](881 MB) -PASS -- TEST 'hrrr_control_gnu' [04:46, 03:56](1071 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:32, 03:58](1135 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:32, 03:36](1027 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:33, 03:58](1069 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:24, 02:01](879 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:23, 01:58](930 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:50, 07:30](1077 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:11, 11:09] -PASS -- TEST 'control_diag_debug_gnu' [01:30, 01:08](1633 MB) -PASS -- TEST 'regional_debug_gnu' [07:26, 06:29](1139 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:17, 01:57](1104 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:16, 01:57](1092 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 01:57](1096 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:17, 01:55](1095 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:23, 02:03](1272 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:06](1098 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:59](1099 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 01:59](1093 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:19, 01:08](732 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:16](727 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:26, 01:24](1724 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:17, 01:56](1101 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:10](1100 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:48, 03:18](1099 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 04:05] -PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:56](497 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 03:53] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:20](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:54, 03:45](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:52, 06:45](970 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:37, 03:24](891 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 03:46](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 05:27](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:27, 02:01](857 MB) -PASS -- TEST 'conus13km_control_gnu' [03:37, 02:26](1266 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:24, 01:03](1173 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:26, 01:26](929 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:46] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:19](990 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:10, 09:49] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 01:59](979 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:15, 01:55](974 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:34, 05:30](1283 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:32, 05:33](975 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:12](1192 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:27, 05:36](1350 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [11:10, 10:32] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:17, 01:55](1003 MB) - -PASS -- COMPILE 's2swa_gnu' [15:11, 14:24] - -PASS -- COMPILE 's2s_gnu' [16:11, 15:42] - -PASS -- COMPILE 's2swa_debug_gnu' [10:10, 09:43] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 16:53] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:10, 09:25] - -PASS -- COMPILE 'datm_cdeps_gnu' [18:10, 17:29] +PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:43] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:06, 07:43](2119 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 18:02] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:21, 13:42](1991 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:47, 14:23](2300 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:21, 06:44](1316 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:11, 17:52](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 18:19] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:26, 15:09](1997 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:21] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:16, 20:34](1965 MB) + +PASS -- COMPILE 's2swa_intel' [11:11, 10:59] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:58, 08:24](2188 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:07, 08:44](2180 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:28, 04:26](1980 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:00, 08:26](2204 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:23, 05:10](1741 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:47, 09:43](2554 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:53, 07:55](2177 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:06, 06:42](2083 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:01, 08:02](2187 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:06, 16:18](2977 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:44, 06:35](2921 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:31, 09:10](3823 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:14, 06:39](3616 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:19, 05:45](2150 MB) + +PASS -- COMPILE 's2sw_intel' [11:11, 10:31] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:00, 07:35](2021 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:59, 04:27](2096 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:42] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:03, 07:40](2209 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:26] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:52, 06:35](2027 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:11, 09:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:54, 04:10](2072 MB) + +PASS -- COMPILE 's2s_intel' [10:11, 09:42] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:41, 07:28](3083 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 02:14](3068 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:33, 01:19](2502 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:42] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:58, 07:41](2190 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:56] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:01, 14:29](2040 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:31, 07:54](1404 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:02, 15:38](1953 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:06] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:53, 22:09](2009 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:18, 02:50](718 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:28, 02:33](1614 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:36, 02:40](1622 MB) +PASS -- TEST 'control_latlon_intel' [03:28, 02:36](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:35, 02:31](1617 MB) +PASS -- TEST 'control_c48_intel' [07:41, 07:06](1744 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:26, 05:47](864 MB) +PASS -- TEST 'control_c192_intel' [09:47, 08:55](1748 MB) +PASS -- TEST 'control_c384_intel' [11:28, 09:15](2064 MB) +PASS -- TEST 'control_c384gdas_intel' [10:45, 07:27](1527 MB) +PASS -- TEST 'control_stochy_intel' [02:18, 01:23](668 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:46, 00:53](532 MB) +PASS -- TEST 'control_lndp_intel' [02:25, 01:22](667 MB) +PASS -- TEST 'control_iovr4_intel' [02:25, 02:04](670 MB) +PASS -- TEST 'control_iovr5_intel' [02:23, 02:05](666 MB) +PASS -- TEST 'control_p8_intel' [04:00, 02:46](1912 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:55, 03:14](1907 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:17, 04:15](1921 MB) +PASS -- TEST 'control_restart_p8_intel' [03:01, 01:37](1154 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:53, 03:10](1897 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:32, 02:22](1208 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:47, 02:44](1893 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:41, 02:35](1990 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:58, 04:46](1925 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:10, 03:42](1992 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:24, 04:10](1926 MB) +PASS -- TEST 'merra2_thompson_intel' [04:11, 03:01](1914 MB) +PASS -- TEST 'regional_control_intel' [05:27, 04:40](1194 MB) +PASS -- TEST 'regional_restart_intel' [03:37, 02:47](1179 MB) +PASS -- TEST 'regional_decomp_intel' [05:28, 04:53](1189 MB) +PASS -- TEST 'regional_2threads_intel' [03:27, 03:05](1160 MB) +PASS -- TEST 'regional_noquilt_intel' [05:26, 04:32](1517 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:28, 04:43](1202 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:57](1200 MB) +PASS -- TEST 'regional_wofs_intel' [06:29, 05:44](2074 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 07:45] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:57, 06:29](1191 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:59, 03:29](1453 MB) +PASS -- TEST 'rap_decomp_intel' [08:05, 06:49](1127 MB) +PASS -- TEST 'rap_2threads_intel' [07:55, 06:10](1370 MB) +PASS -- TEST 'rap_restart_intel' [05:16, 03:32](1148 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:04, 06:35](1202 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:04, 06:50](1143 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:03, 04:53](1231 MB) +PASS -- TEST 'hrrr_control_intel' [04:41, 03:26](1091 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:41, 03:29](1044 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:55, 03:06](1116 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:48, 01:55](1032 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:19, 06:18](1199 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:25, 07:43](2008 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:26, 07:28](2189 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 07:04] +PASS -- TEST 'control_csawmg_intel' [06:31, 05:33](1063 MB) +PASS -- TEST 'control_ras_intel' [03:28, 02:54](831 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 03:48] +PASS -- TEST 'control_csawmg_gnu' [07:30, 06:43](1070 MB) + +PASS -- COMPILE 'wam_intel' [10:10, 09:54] +PASS -- TEST 'control_wam_intel' [02:34, 01:58](799 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 12:50] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:00, 02:28](1901 MB) +PASS -- TEST 'regional_control_faster_intel' [07:27, 06:52](1201 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:44] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:42, 02:18](1632 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:51, 02:14](1632 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:29, 02:33](832 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:18](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:32, 04:14](1147 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 02:18](832 MB) +PASS -- TEST 'control_diag_debug_intel' [03:37, 02:15](1693 MB) +PASS -- TEST 'control_debug_p8_intel' [04:33, 03:20](1914 MB) +PASS -- TEST 'regional_debug_intel' [15:31, 14:46](1152 MB) +PASS -- TEST 'rap_control_debug_intel' [05:21, 04:11](1219 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:18, 04:04](1217 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:19, 04:08](1221 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 04:04](1221 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:23, 04:05](1215 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:39, 04:16](1303 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:10](1237 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:21, 04:02](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:24, 04:04](1221 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 03:58](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:26, 03:53](1223 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:18, 03:57](1222 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:27](1220 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 03:54](1216 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:19, 04:47](1217 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:18, 04:02](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:56, 06:54](1223 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:38] +PASS -- TEST 'control_csawmg_debug_gnu' [02:26, 01:58](1061 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 02:38] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 07:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:52, 03:18](1277 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:00, 05:24](1145 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:54, 02:59](1023 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:43, 05:11](1279 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:48, 02:37](1038 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:42, 03:02](992 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:56, 04:15](1104 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 01:38](949 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:37] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:41, 01:47](1312 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:30, 01:00](1200 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:09](1143 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 06:53] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:33, 03:51](1085 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:02] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:22, 04:01](1095 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:25, 03:55](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [12:34, 11:37](1335 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:35, 12:15](993 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:27, 06:50](1249 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:40, 11:42](1413 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:54] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:21, 04:07](1157 MB) + +PASS -- COMPILE 'hafsw_intel' [11:10, 10:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:11, 05:40](873 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:38, 05:24](1289 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:26, 06:17](965 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:06, 14:12](981 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:25, 15:26](1017 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:45](604 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:24, 06:53](619 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:47, 02:40](437 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:17, 07:45](541 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:48, 03:59](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:17, 04:08](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:58, 04:58](680 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:13](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:53] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:47, 11:23](640 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:53, 17:22](753 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:12, 16:42](840 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:28] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:56, 10:32](825 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:10, 09:28] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:10, 05:24](943 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:02, 05:39](929 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 16:22](1342 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [05:11, 04:52] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:19](1139 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:24](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 02:09](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:17](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:34, 02:07](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:21, 02:17](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:11](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:17, 02:06](1008 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:12, 05:25](1142 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:27, 05:16](1157 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:14](1153 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:22, 03:05](2456 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:22, 03:06](2431 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:57] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:15](1068 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:14] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:14](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:47] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:25, 00:57](339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:57](570 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:31](570 MB) + +PASS -- COMPILE 'atml_intel' [09:11, 08:25] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:13, 06:01](1899 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:55](1899 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:50, 03:16](1129 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:46] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:16](1911 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:52] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:52, 01:43](1957 MB) + +PASS -- COMPILE 'atmaero_intel' [08:11, 08:03] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:53, 03:45](2026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:53, 04:16](1806 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:21](1836 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:48] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:03, 17:15](4600 MB) + +PASS -- COMPILE 'atm_gnu' [04:10, 03:58] +PASS -- TEST 'control_c48_gnu' [10:37, 09:30](1558 MB) +PASS -- TEST 'control_stochy_gnu' [03:31, 02:22](733 MB) +PASS -- TEST 'control_ras_gnu' [04:24, 03:46](731 MB) +PASS -- TEST 'control_p8_gnu' [04:50, 03:50](1732 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:47, 05:44](1731 MB) +PASS -- TEST 'control_flake_gnu' [05:27, 04:28](812 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 04:25] +PASS -- TEST 'rap_control_gnu' [09:02, 07:50](1093 MB) +PASS -- TEST 'rap_decomp_gnu' [09:02, 07:59](1088 MB) +PASS -- TEST 'rap_2threads_gnu' [08:56, 07:17](1120 MB) +PASS -- TEST 'rap_restart_gnu' [05:06, 03:57](882 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:51, 07:43](1081 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:50, 07:54](1089 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:07, 05:46](882 MB) +PASS -- TEST 'hrrr_control_gnu' [04:56, 04:02](1069 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:52, 04:19](1133 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:04, 03:52](1027 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:52, 04:18](1068 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:34, 02:09](880 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:40, 02:12](931 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:07, 07:36](1080 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:17, 07:21] +PASS -- TEST 'control_diag_debug_gnu' [02:48, 01:20](1625 MB) +PASS -- TEST 'regional_debug_gnu' [07:34, 06:35](1126 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:23, 02:06](1099 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:20, 02:03](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:19, 02:04](1097 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:20, 02:01](1095 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:49, 02:09](1272 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:24, 03:11](1106 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:02](1103 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:29, 02:13](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:17, 01:15](724 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:26, 01:28](733 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:30, 02:38](1723 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:25, 02:00](1100 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:19](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:53, 03:35](1102 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:25] +PASS -- TEST 'control_wam_debug_gnu' [02:27, 02:02](499 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:49] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:34, 07:17](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:57, 03:53](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:49, 06:44](990 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:30](874 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:56, 04:01](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:42, 05:32](858 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:22, 02:02](855 MB) +PASS -- TEST 'conus13km_control_gnu' [03:42, 02:34](1265 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:26, 01:36](1175 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:38](929 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:10, 09:18] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:32, 04:33](987 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:10, 09:27] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:18, 01:59](982 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:21, 02:05](974 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:48, 05:35](1285 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:39, 05:40](978 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:33, 03:14](1196 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:57](1352 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 06:54] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:29, 02:19](1009 MB) + +PASS -- COMPILE 's2swa_gnu' [16:11, 16:06] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:47] + +PASS -- COMPILE 's2swa_debug_gnu' [09:10, 08:30] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:10, 15:45] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:10, 08:28] + +PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 15:07] SYNOPSIS: -Starting Date/Time: 20240522 21:39:48 -Ending Date/Time: 20240522 23:03:02 -Total Time: 01h:23m:37s +Starting Date/Time: 20240527 14:04:25 +Ending Date/Time: 20240527 15:19:34 +Total Time: 01h:15m:31s Compiles Completed: 55/55 -Tests Completed: 237/238 -Failed Tests: -* TEST cpld_control_noaero_p8_agrid_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2273/tests/logs/log_hercules/run_cpld_control_noaero_p8_agrid_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 HERCULES REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) - 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240522 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2295701 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 's2s_aoflux_intel' [09:10, 08:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:37, 04:08](2084 MB) - -SYNOPSIS: -Starting Date/Time: 20240522 23:49:55 -Ending Date/Time: 20240523 00:03:42 -Total Time: 00h:13m:48s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 238/238 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index d576c22ec0..941060cd03 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 +c028fa43556f266cd1e672d315d9b64cc4346722 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) + 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) @@ -35,315 +35,250 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240522 -COMPARISON DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_947073 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240524 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3198872 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [41:06, 41:06] ( 1 warnings 1382 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:16, 08:40](2020 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:23, 48:23] ( 1 warnings 1426 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:08, 22:06](1884 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:36, 24:32](1999 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:08, 12:41](1128 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:27, 26:28](1843 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:45, 54:45] ( 1 warnings 1423 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:02, 22:15](1868 MB) - -PASS -- COMPILE 's2swa_intel' [41:27, 41:27] ( 1380 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:11, 09:29](2004 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:09, 09:30](2034 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:54, 05:55](1718 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:58, 09:13](2075 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:27, 07:38](1737 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:16, 09:43](2303 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:46, 09:21](2042 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:27, 08:46](1990 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:11, 10:22](2058 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:11, 09:39](2021 MB) - -PASS -- COMPILE 's2sw_intel' [38:45, 38:45] ( 1278 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:52, 07:26](1886 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:21, 07:50](1970 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:16, 06:16] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:05, 12:15](2056 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:48, 05:48] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:32, 08:23](1923 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:08, 35:08] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:56, 07:13](1954 MB) - -PASS -- COMPILE 's2s_intel' [35:42, 35:42] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:33, 13:47](3049 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 04:06](3027 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:47, 02:12](2471 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:15, 34:15] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:33, 08:05](2046 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:08, 48:08] ( 1338 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:08, 21:57](1915 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:28, 12:01](1139 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:12, 24:51](1878 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:50, 05:50] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:11, 33:01](1922 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:18, 38:18] ( 1 warnings 1147 remarks ) -PASS -- TEST 'control_flake_intel' [05:03, 04:45](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:53, 04:14](1537 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:41, 04:20](1550 MB) -PASS -- TEST 'control_latlon_intel' [06:28, 04:17](1526 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:30, 04:31](1534 MB) -PASS -- TEST 'control_c48_intel' [12:55, 12:04](1740 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:33, 10:11](842 MB) -PASS -- TEST 'control_c192_intel' [15:27, 14:41](1671 MB) -PASS -- TEST 'control_c384_intel' [20:38, 18:50](1810 MB) -PASS -- TEST 'control_c384gdas_intel' [17:12, 13:48](1013 MB) -PASS -- TEST 'control_stochy_intel' [02:41, 02:20](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:57, 01:33](438 MB) -PASS -- TEST 'control_lndp_intel' [02:38, 02:18](606 MB) -PASS -- TEST 'control_iovr4_intel' [03:45, 03:26](594 MB) -PASS -- TEST 'control_iovr5_intel' [03:46, 03:26](595 MB) -PASS -- TEST 'control_p8_intel' [06:07, 04:55](1835 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:01, 04:51](1846 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:03, 04:46](1834 MB) -PASS -- TEST 'control_restart_p8_intel' [04:08, 03:00](1060 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:57, 04:42](1832 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:57, 02:53](1053 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:06, 04:57](1833 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:03, 04:54](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:52, 08:07](1844 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:25, 06:09](1886 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:30, 05:18](1843 MB) -PASS -- TEST 'merra2_thompson_intel' [06:44, 05:17](1842 MB) -PASS -- TEST 'regional_control_intel' [08:40, 08:08](1002 MB) -PASS -- TEST 'regional_restart_intel' [05:22, 04:48](1005 MB) -PASS -- TEST 'regional_decomp_intel' [09:07, 08:34](995 MB) -PASS -- TEST 'regional_2threads_intel' [06:43, 06:11](993 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:47, 08:07](1021 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:32, 08:00](1007 MB) - -PASS -- COMPILE 'rrfs_intel' [35:28, 35:28] ( 3 warnings 1114 remarks ) -PASS -- TEST 'rap_control_intel' [13:04, 11:42](987 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 06:02](1208 MB) -PASS -- TEST 'rap_decomp_intel' [11:44, 10:40](986 MB) -PASS -- TEST 'rap_2threads_intel' [10:55, 09:48](1078 MB) -PASS -- TEST 'rap_restart_intel' [06:37, 05:22](982 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:25, 10:15](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:10, 11:01](969 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:57, 07:47](996 MB) -PASS -- TEST 'hrrr_control_intel' [06:39, 05:21](973 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:44, 05:35](965 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:24, 05:11](1055 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:20, 02:55](916 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:25, 10:08](975 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:13, 12:50](1933 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:54, 12:24](1913 MB) - -PASS -- COMPILE 'csawmg_intel' [32:56, 32:56] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:29, 08:53](968 MB) -PASS -- TEST 'control_ras_intel' [04:58, 04:35](669 MB) - -PASS -- COMPILE 'wam_intel' [30:32, 30:32] ( 981 remarks ) -PASS -- TEST 'control_wam_intel' [03:17, 02:59](503 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:48, 15:48] ( 1298 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:00, 04:43](1837 MB) -PASS -- TEST 'regional_control_faster_intel' [08:16, 07:40](1010 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:20, 08:20] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:04, 03:29](1561 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:17, 03:32](1536 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:06, 03:51](761 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:13, 03:43](761 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:50, 06:06](1081 MB) -PASS -- TEST 'control_ras_debug_intel' [04:00, 03:43](774 MB) -PASS -- TEST 'control_diag_debug_intel' [04:16, 03:40](1618 MB) -PASS -- TEST 'control_debug_p8_intel' [05:47, 04:52](1850 MB) -PASS -- TEST 'regional_debug_intel' [23:32, 22:57](1045 MB) -PASS -- TEST 'rap_control_debug_intel' [06:42, 06:24](1152 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:30, 06:12](1143 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:40, 06:21](1152 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:42, 06:18](1152 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:49, 06:19](1146 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:27, 07:02](1234 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:10, 06:26](1147 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 06:22](1150 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:34, 06:17](1154 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 06:14](1157 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:27, 06:11](1147 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:33, 06:16](1151 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 10:08](1148 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 06:07](1140 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:06, 07:43](1153 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:37, 06:19](1148 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:06, 10:47](1155 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:33, 04:33] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:27, 06:15](447 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:46, 30:46] ( 3 warnings 1027 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 05:49](1087 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 08:33](903 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:01, 04:32](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:21, 08:15](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:41, 04:08](914 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:28, 04:57](861 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:40, 06:24](903 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:52, 02:29](853 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [06:27, 06:27] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:05, 03:20](1088 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:25, 01:45](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:24, 01:40](1002 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:27, 31:27] ( 3 warnings 1047 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:17, 05:37](913 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:55, 04:55] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 06:13](1033 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 06:08](1030 MB) -PASS -- TEST 'conus13km_debug_intel' [19:33, 18:49](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:37, 18:48](857 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:48, 10:58](1113 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:17, 18:34](1213 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:36, 04:36] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 06:12](1073 MB) - -PASS -- COMPILE 'hafsw_intel' [39:40, 39:40] ( 1 warnings 1426 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:52, 07:28](714 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 07:10](1088 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:29, 09:52](773 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:29, 16:58](797 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:01, 18:27](829 MB) -FAILED: UNABLE TO RUN COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafs_all_intel' [34:27, 34:27] ( 1267 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:49, 09:21](767 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:29, 09:04](759 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:08, 08:08] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:59, 03:48](1055 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 02:16](1027 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:04, 03:54](923 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:54, 03:44](924 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:50, 03:38](922 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:47, 03:38](1072 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:56, 03:45](1070 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 03:34](924 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:03, 08:01](888 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:57, 07:57](840 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:46, 03:37](1069 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:40, 05:27](2320 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 06:18](2398 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:35, 03:35] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 08:05](1018 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:14, 08:14] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:51, 03:40](1048 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:50, 01:49] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 01:57](229 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:49, 01:31](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:18, 00:58](251 MB) - -PASS -- COMPILE 'atml_intel' [37:51, 37:51] ( 8 warnings 1185 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:27, 10:43](1845 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:57, 10:32](1842 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:25, 05:44](1075 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:57, 05:57] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:52, 08:22](1831 MB) - -PASS -- COMPILE 'atmw_intel' [34:48, 34:48] ( 1259 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 03:28](1850 MB) - -PASS -- COMPILE 'atmaero_intel' [33:23, 33:22] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:30, 06:15](1928 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:04, 06:39](1727 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:45, 06:49](1724 MB) +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [40:14, 40:12] ( 1 warnings 1382 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:50, 08:37](2020 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:18, 49:26] ( 1 warnings 1426 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [29:39, 22:04](1887 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:42, 22:18](2019 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:58, 12:13](1129 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:05, 25:20](1845 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:17, 48:55] ( 1 warnings 1423 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [28:51, 22:05](1876 MB) + +PASS -- COMPILE 's2swa_intel' [42:14, 41:22] ( 1380 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:58, 08:52](2056 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:41, 09:02](2040 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:59, 05:20](1722 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:01, 09:21](2051 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:02, 06:35](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:48, 09:14](2314 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:51, 08:55](2043 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 08:06](1993 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:16, 09:24](2060 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:11, 08:49](2035 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:22] ( 1278 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:52, 07:40](1906 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:00, 07:14](1974 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:31] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:53, 11:19](2072 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:45] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:34, 07:54](1920 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [40:15, 35:08] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:28, 07:40](1970 MB) + +PASS -- COMPILE 's2s_intel' [38:16, 35:25] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:23, 13:33](3055 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:11, 04:18](3045 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:10, 02:29](2467 MB) + +PASS -- COMPILE 's2swa_faster_intel' [36:22, 33:59] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:21, 08:18](2006 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [44:16, 43:13] ( 1338 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:30, 22:16](1913 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:54, 11:14](1139 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:44, 25:06](1898 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:31] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:32, 33:16](1926 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:16, 38:29] ( 1 warnings 1147 remarks ) +PASS -- TEST 'control_flake_intel' [06:48, 04:53](649 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [16:09, 03:56](1546 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [20:16, 04:17](1550 MB) +PASS -- TEST 'control_latlon_intel' [18:04, 03:56](1538 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:15, 04:00](1551 MB) +PASS -- TEST 'control_c48_intel' [14:17, 11:58](1735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:55, 10:12](845 MB) +PASS -- TEST 'control_c192_intel' [24:30, 14:26](1680 MB) +PASS -- TEST 'control_c384_intel' [28:37, 17:55](1812 MB) +PASS -- TEST 'control_c384gdas_intel' [25:37, 13:33](1019 MB) +PASS -- TEST 'control_stochy_intel' [03:52, 02:40](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [14:37, 01:24](432 MB) +PASS -- TEST 'control_lndp_intel' [03:52, 02:19](604 MB) +PASS -- TEST 'control_iovr4_intel' [04:50, 03:57](595 MB) +PASS -- TEST 'control_iovr5_intel' [04:48, 03:57](606 MB) +PASS -- TEST 'control_p8_intel' [20:43, 04:45](1854 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:39, 04:45](1847 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [21:48, 04:37](1851 MB) +PASS -- TEST 'control_restart_p8_intel' [04:22, 02:48](1050 MB) +PASS -- TEST 'control_noqr_p8_intel' [22:37, 04:46](1820 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:40, 02:45](1071 MB) +PASS -- TEST 'control_decomp_p8_intel' [21:26, 04:52](1837 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:45, 04:50](1940 MB) +PASS -- TEST 'control_p8_lndp_intel' [18:14, 07:59](1850 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [17:50, 05:51](1893 MB) +PASS -- TEST 'control_p8_mynn_intel' [21:43, 04:42](1852 MB) +PASS -- TEST 'merra2_thompson_intel' [20:01, 05:08](1856 MB) +PASS -- TEST 'regional_control_intel' [11:56, 08:18](1015 MB) +PASS -- TEST 'regional_restart_intel' [09:41, 04:41](1009 MB) +PASS -- TEST 'regional_decomp_intel' [10:54, 08:54](1007 MB) +PASS -- TEST 'regional_2threads_intel' [09:58, 06:49](1004 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:54, 08:23](1009 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:41, 08:13](1012 MB) + +PASS -- COMPILE 'rrfs_intel' [36:15, 35:38] ( 3 warnings 1114 remarks ) +PASS -- TEST 'rap_control_intel' [13:32, 10:14](983 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:38, 05:44](1212 MB) +PASS -- TEST 'rap_decomp_intel' [15:06, 10:59](976 MB) +PASS -- TEST 'rap_2threads_intel' [15:06, 09:50](1075 MB) +PASS -- TEST 'rap_restart_intel' [07:23, 05:22](992 MB) +PASS -- TEST 'rap_sfcdiff_intel' [15:13, 10:15](988 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:13, 10:52](973 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:23, 07:44](996 MB) +PASS -- TEST 'hrrr_control_intel' [10:16, 05:30](987 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:16, 05:32](977 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:08, 05:02](1060 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:53](908 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:49, 10:12](987 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:36, 12:37](1939 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:37, 12:21](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [33:14, 32:50] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:44, 08:54](961 MB) +PASS -- TEST 'control_ras_intel' [05:28, 04:33](667 MB) + +PASS -- COMPILE 'wam_intel' [25:14, 25:00] ( 981 remarks ) +PASS -- TEST 'control_wam_intel' [07:34, 02:44](501 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:22, 14:26] ( 1298 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:56, 04:32](1830 MB) +PASS -- TEST 'regional_control_faster_intel' [12:07, 08:42](1004 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:37] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:03, 03:26](1547 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:06, 03:22](1564 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:33, 03:50](768 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:25](769 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:58, 06:01](1080 MB) +PASS -- TEST 'control_ras_debug_intel' [05:33, 03:32](770 MB) +PASS -- TEST 'control_diag_debug_intel' [08:04, 03:26](1625 MB) +PASS -- TEST 'control_debug_p8_intel' [09:10, 04:28](1858 MB) +PASS -- TEST 'regional_debug_intel' [27:01, 22:38](1039 MB) +PASS -- TEST 'rap_control_debug_intel' [08:35, 06:06](1152 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:35, 05:59](1151 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:34, 06:06](1157 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:35, 06:07](1152 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:28, 06:09](1154 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:41, 06:29](1236 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:25, 06:17](1151 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:25, 06:17](1153 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:28, 06:09](1152 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 06:08](1155 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:05](1150 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 06:07](1147 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 09:56](1147 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:30, 06:03](1147 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:21](1150 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:29, 06:08](1155 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:29, 10:35](1161 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:12, 04:46] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:24, 06:15](447 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [38:13, 30:36] ( 3 warnings 1027 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 05:29](1084 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:03, 09:39](906 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:44, 04:50](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:20, 09:05](950 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:11, 04:39](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:11, 05:18](858 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:21, 06:36](904 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:40, 03:05](840 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [55:19, 50:44] ( 3 warnings 1197 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:01, 03:19](1112 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:04, 01:30](1056 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:01, 01:37](1024 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:15, 30:45] ( 3 warnings 1047 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:01, 06:26](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:55] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 06:13](1033 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:35, 05:56](1033 MB) +PASS -- TEST 'conus13km_debug_intel' [24:13, 18:36](1144 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:13, 18:43](857 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:59, 10:45](1093 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:07, 18:26](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 04:43] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:09](1071 MB) + +PASS -- COMPILE 'hafsw_intel' [39:16, 39:01] ( 1 warnings 1426 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [13:39, 08:17](710 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:49, 08:59](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:01, 10:26](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:53, 16:41](803 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:06, 18:42](825 MB) +PASS -- TEST 'gnv1_nested_intel' [13:48, 06:38](781 MB) + +PASS -- COMPILE 'hafs_all_intel' [35:15, 34:11] ( 1267 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [16:48, 09:53](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:48, 10:48](755 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:17] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:25, 03:42](1058 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:40, 02:22](1039 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:24, 03:35](929 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:25, 03:46](922 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:24, 03:41](934 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:25, 03:46](1067 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:49](1063 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:25, 03:40](931 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:03, 09:16](882 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:42, 08:37](845 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:22, 03:44](1074 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:26, 05:42](2339 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:26, 05:45](2392 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:25] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:06](1011 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:08] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 04:37](1069 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:51] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:44, 02:17](231 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:37, 02:00](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 01:56](250 MB) + +PASS -- COMPILE 'atml_intel' [38:13, 38:06] ( 8 warnings 1185 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:42, 10:44](1863 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:43, 10:17](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:49, 05:49](1069 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:36] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:00, 09:05](1872 MB) + +PASS -- COMPILE 'atmw_intel' [35:13, 34:34] ( 1259 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:29, 03:00](1862 MB) + +PASS -- COMPILE 'atmaero_intel' [34:14, 33:26] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:24, 06:01](1947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:29, 06:35](1716 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:14, 06:31](1733 MB) SYNOPSIS: -Starting Date/Time: 20240523 13:43:36 -Ending Date/Time: 20240523 21:31:38 -Total Time: 07h:48m:43s +Starting Date/Time: 20240528 04:20:37 +Ending Date/Time: 20240528 08:21:13 +Total Time: 04h:01m:14s Compiles Completed: 34/34 -Tests Completed: 161/162 -Failed Tests: -* TEST gnv1_nested_intel: FAILED: UNABLE TO RUN COMPARISON --- LOG: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/UFS-RT-TESTs/rt-2273/tests/logs/log_jet/run_gnv1_nested_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -f8c5637909d70f3b7a92dd6c1d3b6588e5e07b84 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) - 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240522 -COMPARISON DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_548580 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: gnv1_nested -* (-r) - USE ROCOTO - -PASS -- COMPILE 'hafsw_intel' [38:36, 38:36] ( 1 warnings 1426 remarks ) -PASS -- TEST 'gnv1_nested_intel' [07:21, 06:19](767 MB) - -SYNOPSIS: -Starting Date/Time: 20240524 00:21:53 -Ending Date/Time: 20240524 01:25:08 -Total Time: 01h:03m:35s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 162/162 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 1bd95e3df1..ba3aa42ff9 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,32 +1,32 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -af9c4e9844feeb94d0435a19fa09f171df33f647 +0b42e893a2bb2ecf3074ffc61315ee8f742e8c33 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop) - 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + ea39d44907b07409b42b635ef7b9ad1e81543316 FV3 (remotes/origin/cs_perts) + a5c5ebfa556876c0e3e92880ce374d096bd2060e FV3/atmos_cubed_sphere (remotes/origin/cs_perts) + 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) + 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) NOTES: @@ -35,281 +35,277 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240522 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_441512 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_202383 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:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:45, 05:36](3306 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:12, 21:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:54, 17:28](1971 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:07, 18:25](2148 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 08:35](1247 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:54, 19:45](1875 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 21:15] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:13](1969 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:26] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:47, 22:52](1919 MB) - -PASS -- COMPILE 's2swa_intel' [17:11, 15:59] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:35, 06:08](3336 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:52, 05:58](3333 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:00, 03:36](3263 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:35, 06:05](3359 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:00, 03:42](3279 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:35, 06:26](3622 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:28, 06:01](3326 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:28, 07:43](3215 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:48, 05:56](3338 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:01, 10:45](3521 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:22, 06:42](3617 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:04, 11:28](4271 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:23, 07:13](4361 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:38, 05:38](3317 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 14:08] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:06, 04:57](1980 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:38](2034 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:11] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:29, 08:54](3383 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 04:56] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:11, 06:19](1985 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 13:02] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:25, 04:39](2036 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 13:29] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:01, 08:32](3086 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:02, 02:41](3069 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:55, 01:34](2502 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:12, 24:25] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:44, 05:28](3339 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:13, 17:37](1988 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:26, 08:41](1252 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:17, 19:40](1889 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:15] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:49](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:23, 03:38](699 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 02:56](1598 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 03:01](1610 MB) -PASS -- TEST 'control_latlon_intel' [03:37, 02:56](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:46, 02:58](1598 MB) -PASS -- TEST 'control_c48_intel' [07:44, 07:09](1773 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:33, 06:05](826 MB) -PASS -- TEST 'control_c192_intel' [12:02, 10:35](1745 MB) -PASS -- TEST 'control_c384_intel' [14:11, 11:34](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [13:06, 09:18](1350 MB) -PASS -- TEST 'control_stochy_intel' [02:28, 01:37](652 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:25, 01:03](504 MB) -PASS -- TEST 'control_lndp_intel' [02:26, 01:37](649 MB) -PASS -- TEST 'control_iovr4_intel' [03:24, 02:30](649 MB) -PASS -- TEST 'control_iovr5_intel' [03:25, 02:27](649 MB) -PASS -- TEST 'control_p8_intel' [05:02, 03:08](1889 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:13, 03:05](1893 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 03:56](1899 MB) -PASS -- TEST 'control_restart_p8_intel' [03:14, 01:47](1134 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:17, 03:00](1894 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:06, 01:47](1153 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:14, 03:08](1879 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:07, 03:12](1977 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:22](1902 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:25, 04:07](1953 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:24, 03:08](1897 MB) -PASS -- TEST 'merra2_thompson_intel' [05:40, 03:24](1899 MB) -PASS -- TEST 'regional_control_intel' [06:37, 05:18](1095 MB) -PASS -- TEST 'regional_restart_intel' [03:37, 02:57](1091 MB) -PASS -- TEST 'regional_decomp_intel' [06:33, 05:41](1094 MB) -PASS -- TEST 'regional_2threads_intel' [04:33, 03:57](1090 MB) -PASS -- TEST 'regional_noquilt_intel' [06:34, 05:17](1391 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:39, 05:19](1101 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 05:23](1087 MB) -PASS -- TEST 'regional_wofs_intel' [07:39, 06:40](1922 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:21] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:29, 07:48](1120 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:41](1305 MB) -PASS -- TEST 'rap_decomp_intel' [09:00, 08:07](1030 MB) -PASS -- TEST 'rap_2threads_intel' [08:59, 07:57](1184 MB) -PASS -- TEST 'rap_restart_intel' [06:30, 04:05](1099 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:31, 07:50](1107 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:16](1035 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:27, 05:53](1132 MB) -PASS -- TEST 'hrrr_control_intel' [06:04, 04:01](1040 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:04, 04:12](1026 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 03:25](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:11](998 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:27, 07:39](1103 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:16](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 08:59](2075 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:00] -PASS -- TEST 'control_csawmg_intel' [07:37, 06:10](1021 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:22](749 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:53] -PASS -- TEST 'control_wam_intel' [03:22, 02:10](661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:12, 20:55] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:27, 02:52](1897 MB) -PASS -- TEST 'regional_control_faster_intel' [05:35, 04:52](1098 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:10] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:38](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:40](1614 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:07](819 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:51](813 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:17](1133 MB) -PASS -- TEST 'control_ras_debug_intel' [03:27, 02:51](831 MB) -PASS -- TEST 'control_diag_debug_intel' [04:53, 02:51](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [04:51, 03:08](1915 MB) -PASS -- TEST 'regional_debug_intel' [18:49, 17:20](1090 MB) -PASS -- TEST 'rap_control_debug_intel' [05:32, 04:58](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:30, 04:59](1202 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:31, 05:03](1202 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:31, 05:11](1201 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:01](1202 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:37, 05:29](1230 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 05:09](1203 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 07:27](1207 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:29, 05:05](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 05:07](1199 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:21, 05:09](1205 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:51](1201 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:56](1197 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:50](1190 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:50](1203 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:23, 04:51](1200 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:22](1210 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:48] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:23, 04:56](514 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:05, 04:30](1168 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 06:31](1048 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:18, 03:28](981 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:54, 06:43](1099 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:31, 03:03](966 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:48, 03:42](940 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:20, 04:58](1040 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:28, 01:55](935 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:11, 18:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:03, 02:04](1202 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:45, 01:01](1123 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:41, 01:16](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 12:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:52, 04:16](1002 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:59] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:02](1088 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 04:40](1075 MB) -PASS -- TEST 'conus13km_debug_intel' [16:57, 13:57](1232 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:52](930 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:25](1156 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:28](1299 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:53] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:55](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 13:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [11:15, 05:30](747 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:29, 05:52](1123 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:33, 06:51](834 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:12, 13:22](862 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:27, 15:01](884 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:01, 06:12](501 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:26, 07:34](519 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:50, 03:10](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:25, 08:03](485 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:49, 04:10](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:55, 03:57](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:59, 05:22](578 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:28, 01:24](401 MB) -PASS -- TEST 'gnv1_nested_intel' [12:02, 04:33](807 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 04:28] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:53, 13:13](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:11, 23:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:08, 09:39](640 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:08, 09:46](745 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:10, 13:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:03, 07:08](735 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:10, 12:53] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:17, 06:23](834 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:15, 06:28](819 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:58, 15:53](1210 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:48] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:21, 02:41](1132 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:42](1084 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [13:18, 02:33](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:19, 02:33](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:17, 02:36](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:18, 02:42](1130 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:18, 02:41](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:18, 02:35](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:17, 05:54](1053 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:12, 05:47](1033 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:15, 02:35](1141 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:19, 03:37](2498 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:18, 03:40](2494 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:22] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:18, 06:17](1063 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:19] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:18, 02:39](1116 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:03] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:30, 00:49](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:23, 00:49](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:34](325 MB) - -PASS -- COMPILE 'atml_intel' [13:10, 12:31] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:40, 04:26](1856 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:35, 04:24](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:46, 02:28](1102 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 05:00] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:27, 05:50](1879 MB) - -PASS -- COMPILE 'atmw_intel' [14:12, 11:57] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 01:55](1920 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 11:50] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:13](3197 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:13, 04:53](3092 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:03, 05:05](3107 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:40] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:46, 21:16](4583 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [15:28, 15:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:59, 05:36](3175 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:35, 18:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:44, 17:19](1743 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:50, 18:20](2022 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 08:33](1111 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:01, 19:34](1597 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:28, 05:28] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:23, 22:57](1660 MB) + +PASS -- COMPILE 's2swa_intel' [14:06, 14:06] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:01, 05:50](3214 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:58, 05:52](3209 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:04, 03:35](3257 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:13, 05:52](3241 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:09, 03:33](3262 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:15, 06:13](3553 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:55, 05:50](3201 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:59, 04:51](3070 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:06, 05:47](3210 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:25, 10:34](3330 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:23, 06:36](3623 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:42, 10:59](4119 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:50, 07:06](4352 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:44, 05:32](3173 MB) + +PASS -- COMPILE 's2sw_intel' [13:08, 13:08] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:42, 04:51](1732 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:33, 04:30](1782 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:28, 05:28] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:43, 08:37](3248 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:56, 04:56] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:04, 06:01](1756 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:16, 12:16] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:37, 04:29](1771 MB) + +PASS -- COMPILE 's2s_intel' [13:33, 13:33] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [13:14, 12:36](2757 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:36, 02:45](2770 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:52, 01:25](2243 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:34, 18:34] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:45, 05:33](3211 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:53, 18:53] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:16, 17:22](1765 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:40, 08:32](1182 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:34, 19:35](1678 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:20, 05:19] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:53, 24:57](1716 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:24, 13:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:42, 03:28](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 02:53](1600 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:38, 03:01](1605 MB) +PASS -- TEST 'control_latlon_intel' [03:36, 02:59](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:57](1602 MB) +PASS -- TEST 'control_c48_intel' [08:07, 07:37](1773 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 08:11](821 MB) +PASS -- TEST 'control_c192_intel' [11:25, 10:35](1740 MB) +PASS -- TEST 'control_c384_intel' [13:09, 11:37](1996 MB) +PASS -- TEST 'control_c384gdas_intel' [11:10, 09:08](1357 MB) +PASS -- TEST 'control_stochy_intel' [01:59, 01:43](652 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:14, 01:01](505 MB) +PASS -- TEST 'control_lndp_intel' [01:51, 01:37](655 MB) +PASS -- TEST 'control_iovr4_intel' [02:44, 02:32](656 MB) +PASS -- TEST 'control_iovr5_intel' [02:52, 02:35](653 MB) +PASS -- TEST 'control_p8_intel' [03:57, 03:02](1636 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:54, 03:00](1635 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:54](1640 MB) +PASS -- TEST 'control_restart_p8_intel' [02:39, 01:45](887 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:54, 02:57](1626 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:36, 01:42](930 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:02, 03:05](1618 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:10, 03:11](1717 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:52, 05:19](1634 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:08, 04:04](1694 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:08, 03:06](1639 MB) +PASS -- TEST 'merra2_thompson_intel' [04:40, 03:23](1639 MB) +PASS -- TEST 'regional_control_intel' [05:34, 05:12](855 MB) +PASS -- TEST 'regional_restart_intel' [03:03, 02:45](1020 MB) +PASS -- TEST 'regional_decomp_intel' [06:02, 05:32](847 MB) +PASS -- TEST 'regional_2threads_intel' [04:16, 03:46](847 MB) +PASS -- TEST 'regional_noquilt_intel' [05:37, 05:09](1367 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:42, 05:10](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:44, 05:12](859 MB) +PASS -- TEST 'regional_wofs_intel' [07:11, 06:40](1919 MB) + +PASS -- COMPILE 'rrfs_intel' [11:16, 11:16] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:40, 07:44](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:27, 04:43](1295 MB) +PASS -- TEST 'rap_decomp_intel' [09:09, 08:09](1024 MB) +PASS -- TEST 'rap_2threads_intel' [08:57, 07:56](1180 MB) +PASS -- TEST 'rap_restart_intel' [04:59, 04:02](1104 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:48, 07:47](1110 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:08, 08:10](1040 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:50, 05:55](1128 MB) +PASS -- TEST 'hrrr_control_intel' [05:04, 04:00](1040 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:13, 04:13](1030 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:42, 07:39](1060 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:24, 02:09](999 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:45](1106 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:34, 09:16](1990 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:11, 08:58](2076 MB) + +PASS -- COMPILE 'csawmg_intel' [11:17, 11:17] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:37, 06:09](755 MB) +PASS -- TEST 'control_ras_intel' [03:42, 03:27](688 MB) + +PASS -- COMPILE 'wam_intel' [10:31, 10:31] +PASS -- TEST 'control_wam_intel' [02:30, 02:17](616 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:48, 11:48] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:57, 02:48](1614 MB) +PASS -- TEST 'regional_control_faster_intel' [05:26, 04:51](850 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:33, 06:33] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:36, 03:01](1553 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:26, 02:47](1614 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:09](825 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:13, 02:58](823 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:47, 04:17](869 MB) +PASS -- TEST 'control_ras_debug_intel' [03:08, 02:54](830 MB) +PASS -- TEST 'control_diag_debug_intel' [03:21, 02:48](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [03:28, 03:03](1639 MB) +PASS -- TEST 'regional_debug_intel' [17:53, 17:25](851 MB) +PASS -- TEST 'rap_control_debug_intel' [05:36, 05:20](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:57, 04:43](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:59, 04:50](1211 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:05, 04:55](1206 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:11, 04:56](1204 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:54, 05:12](1282 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 05:01](1206 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:34, 05:03](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:22, 05:06](1206 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 04:58](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:11, 04:56](1204 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:08, 04:54](1204 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:09, 07:54](1202 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:51](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:45, 06:14](1208 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:53](1219 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:49, 08:28](1205 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:46, 03:46] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:16, 05:04](511 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:22, 10:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:42, 04:35](1161 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:46, 06:29](1058 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 03:30](992 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:03, 06:47](1087 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:24, 06:57](917 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:11, 03:40](925 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:55, 04:53](1036 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:10, 01:54](929 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:40, 12:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:02, 02:12](1203 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:43, 01:09](1123 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:19](1053 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:52, 13:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:49, 04:17](994 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:50, 05:49] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:08, 04:52](1085 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:55, 04:44](1081 MB) +PASS -- TEST 'conus13km_debug_intel' [14:55, 14:23](1230 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:28, 14:53](923 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:56, 08:28](1100 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:52, 14:19](1295 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:49, 05:49] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 05:01](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [12:53, 12:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:40, 05:39](686 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 06:01](1109 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:09, 07:01](834 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:16, 13:15](866 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:17, 14:59](887 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:01, 06:18](451 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:40, 07:29](521 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:46, 03:09](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:02, 08:04](481 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:46, 04:12](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 04:00](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:18, 05:26](581 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:49, 01:28](402 MB) +PASS -- TEST 'gnv1_nested_intel' [05:53, 05:02](803 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:06, 04:05] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:46, 13:00](574 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:42, 14:42] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:41, 11:54](666 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:45, 09:49](742 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:24, 14:24] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:00, 07:06](730 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:58, 12:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:28, 06:31](830 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:32, 06:32](813 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:51, 16:05](1208 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:14, 08:14] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:48, 02:39](1143 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:49, 01:38](1100 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:41, 02:34](1014 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:46, 02:36](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:52, 02:42](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:52, 02:42](1133 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:52, 02:44](1137 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:40, 02:32](1010 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:54, 05:58](1052 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:51, 05:55](1030 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:47, 02:41](1132 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:49, 03:39](2493 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:37, 03:31](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:52, 03:52] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:18, 06:12](1055 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:01, 07:01] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:43, 02:36](1133 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:58, 00:58] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:15, 00:50](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:43](329 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:52, 00:36](324 MB) + +PASS -- COMPILE 'atml_intel' [13:42, 13:42] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:29, 04:17](1602 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:38, 04:20](1614 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:04, 02:36](857 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:01, 05:01] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:14, 05:49](1632 MB) + +PASS -- COMPILE 'atmw_intel' [13:08, 13:08] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 01:48](1663 MB) + +PASS -- COMPILE 'atmaero_intel' [12:52, 12:52] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:09, 04:02](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:59, 04:55](3035 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:59, 05:03](3104 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:44, 03:44] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:17, 25:47](4582 MB) SYNOPSIS: -Starting Date/Time: 20240522 21:38:13 -Ending Date/Time: 20240522 23:13:09 -Total Time: 01h:35m:39s -Compiles Completed: 39/39 -Tests Completed: 183/183 +Starting Date/Time: 20240509 17:23:56 +Ending Date/Time: 20240509 22:45:12 +Total Time: 05h:22m:02s +Compiles Completed: 38/38 +Tests Completed: 182/182 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index b62d5dbda5..4e9500d28d 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -ac5a2eec5d0bdec070df19c3d3cb405bb32eb867 +c028fa43556f266cd1e672d315d9b64cc4346722 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 70810f134fda5cb5fbb8ace9b79fe263768671dc FV3 (heads/develop-391-g70810f1) + 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5254-g16a1d881) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,240 +35,240 @@ 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-20240522 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_21570 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240524 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_161031 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:26, 12:33] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:55, 01:14](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:51, 22:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:31, 01:54](1819 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [56:35, 02:05](1842 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [56:35, 01:22](963 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:32, 01:00](1792 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [36:07, 34:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [02:14, 01:08](1818 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [23:51, 22:27] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [14:32, 01:23](1839 MB) - -PASS -- COMPILE 's2swa_intel' [13:28, 12:22] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [24:53, 01:18](3132 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:53, 01:35](3129 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:37, 01:52](3066 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:53, 01:17](3150 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:37, 01:49](3085 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [24:53, 01:41](3359 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [24:53, 01:14](3124 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [24:54, 01:23](3076 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [24:53, 01:31](3129 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:02, 03:59](4108 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [06:25, 03:58](4249 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [24:53, 01:42](3109 MB) - -PASS -- COMPILE 's2sw_intel' [12:25, 11:49] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [25:55, 01:47](1831 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [25:55, 01:56](1903 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:26, 12:07] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:55, 01:57](1900 MB) - -PASS -- COMPILE 's2s_intel' [23:50, 23:16] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:30, 00:34](2911 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:30, 01:22](2917 MB) -PASS -- TEST 'cpld_restart_c48_intel' [10:31, 01:09](2310 MB) - -PASS -- COMPILE 's2swa_faster_intel' [44:15, 43:49] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [52:34, 01:53](3133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 12:04] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:54, 01:08](1838 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:22, 00:41](1010 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [08:23, 00:55](1811 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:28, 05:45] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:27, 01:36](1852 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:40, 10:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [14:14, 00:24](573 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [14:14, 01:24](1466 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:14, 01:26](1475 MB) -PASS -- TEST 'control_latlon_intel' [14:14, 01:25](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:14, 01:32](1472 MB) -PASS -- TEST 'control_c48_intel' [14:13, 00:56](1589 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:13, 00:51](714 MB) -PASS -- TEST 'control_c192_intel' [14:14, 00:40](1584 MB) -PASS -- TEST 'control_c384_intel' [14:18, 02:01](1901 MB) -PASS -- TEST 'control_c384gdas_intel' [14:18, 02:35](1088 MB) -PASS -- TEST 'control_stochy_intel' [14:14, 00:27](530 MB) -PASS -- TEST 'control_stochy_restart_intel' [11:48, 01:03](333 MB) -PASS -- TEST 'control_lndp_intel' [14:14, 00:32](530 MB) -PASS -- TEST 'control_iovr4_intel' [14:14, 00:46](524 MB) -PASS -- TEST 'control_iovr5_intel' [14:14, 00:45](524 MB) -PASS -- TEST 'control_p8_intel' [14:14, 01:38](1774 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [14:14, 01:55](1774 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [14:14, 01:59](1765 MB) -PASS -- TEST 'control_restart_p8_intel' [09:03, 01:12](918 MB) -PASS -- TEST 'control_noqr_p8_intel' [14:14, 01:39](1762 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [09:03, 01:13](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [14:14, 01:34](1767 MB) -PASS -- TEST 'control_2threads_p8_intel' [14:14, 01:08](1855 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:47, 01:09](1767 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:44, 02:07](1829 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:44, 01:47](1778 MB) -PASS -- TEST 'merra2_thompson_intel' [09:54, 01:47](1772 MB) -PASS -- TEST 'regional_control_intel' [09:53, 01:11](851 MB) -PASS -- TEST 'regional_restart_intel' [03:09, 00:21](850 MB) -PASS -- TEST 'regional_decomp_intel' [09:47, 00:54](848 MB) -PASS -- TEST 'regional_2threads_intel' [09:44, 00:53](904 MB) -PASS -- TEST 'regional_noquilt_intel' [09:27, 00:12](1174 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:24, 00:18](858 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:23, 01:08](851 MB) -PASS -- TEST 'regional_wofs_intel' [09:20, 00:47](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [18:46, 18:02] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [07:07, 01:40](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 01:13](1096 MB) -PASS -- TEST 'rap_decomp_intel' [07:07, 01:27](913 MB) -PASS -- TEST 'rap_2threads_intel' [07:07, 01:41](998 MB) -PASS -- TEST 'rap_restart_intel' [58:06, 01:28](785 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:07, 02:06](910 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:27, 01:26](911 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [57:41, 01:46](782 MB) -PASS -- TEST 'hrrr_control_intel' [06:14, 01:17](906 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:30, 00:51](908 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:24, 01:15](985 MB) -PASS -- TEST 'hrrr_control_restart_intel' [00:57, 01:06](742 MB) -PASS -- TEST 'rrfs_v1beta_intel' [05:23, 02:10](904 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [05:06, 01:01](1872 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [05:02, 01:16](1858 MB) - -PASS -- COMPILE 'csawmg_intel' [18:49, 18:07] -PASS -- TEST 'control_csawmg_intel' [04:17, 00:33](872 MB) -PASS -- TEST 'control_ras_intel' [04:16, 00:56](562 MB) - -PASS -- COMPILE 'wam_intel' [25:55, 25:11] -PASS -- TEST 'control_wam_intel' [58:57, 00:56](327 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [24:38, 23:53] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [51:42, 01:47](1764 MB) -PASS -- TEST 'regional_control_faster_intel' [50:18, 00:57](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [19:39, 18:47] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [54:51, 01:08](1494 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [54:51, 01:23](1493 MB) -PASS -- TEST 'control_stochy_debug_intel' [54:51, 00:54](693 MB) -PASS -- TEST 'control_lndp_debug_intel' [54:51, 01:12](693 MB) -PASS -- TEST 'control_csawmg_debug_intel' [54:51, 00:36](1000 MB) -PASS -- TEST 'control_ras_debug_intel' [54:51, 00:55](702 MB) -PASS -- TEST 'control_diag_debug_intel' [54:51, 01:07](1554 MB) -PASS -- TEST 'control_debug_p8_intel' [54:51, 00:50](1783 MB) -PASS -- TEST 'regional_debug_intel' [54:50, 00:39](882 MB) -PASS -- TEST 'rap_control_debug_intel' [54:51, 00:54](1077 MB) -PASS -- TEST 'hrrr_control_debug_intel' [54:51, 01:06](1070 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [54:51, 00:55](1073 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [54:51, 00:54](1072 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [54:51, 00:57](1074 MB) -PASS -- TEST 'rap_diag_debug_intel' [54:51, 00:49](1162 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [54:51, 00:51](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [54:51, 00:50](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [54:51, 00:56](1079 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [54:51, 01:02](1077 MB) -PASS -- TEST 'rap_noah_debug_intel' [54:51, 01:04](1073 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [54:51, 00:58](1070 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:17, 01:01](1069 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [50:06, 00:30](1068 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [50:05, 00:37](1076 MB) -PASS -- TEST 'rap_flake_debug_intel' [50:04, 00:26](1076 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [50:03, 01:45](1081 MB) - -PASS -- COMPILE 'wam_debug_intel' [26:47, 25:40] ( 842 warnings ) -PASS -- TEST 'control_wam_debug_intel' [47:44, 00:48](305 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:47, 22:33] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [50:01, 00:42](957 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:58, 01:46](794 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [49:53, 01:38](789 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [49:00, 01:40](857 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [48:40, 01:34](847 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [48:22, 01:24](798 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [41:34, 00:59](689 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [44:16, 00:51](673 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:49, 23:46] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [47:57, 00:57](1009 MB) -PASS -- TEST 'conus13km_2threads_intel' [44:00, 01:01](1010 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [43:59, 00:44](884 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:38, 13:42] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:57, 01:19](813 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:36, 12:02] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [47:57, 01:01](956 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [47:57, 01:08](953 MB) -PASS -- TEST 'conus13km_debug_intel' [47:57, 00:26](1043 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [47:57, 01:18](716 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [47:58, 00:31](1043 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [47:57, 01:19](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:25, 10:22] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [47:57, 00:58](977 MB) - -PASS -- COMPILE 'hafsw_intel' [15:43, 14:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [43:16, 01:14](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:16, 00:27](966 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:14, 01:22](667 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [43:14, 02:11](704 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:15, 01:48](712 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [43:14, 01:39](389 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [43:15, 01:48](407 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [43:15, 00:58](288 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [43:13, 02:27](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [43:02, 00:58](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [42:26, 01:30](413 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [42:12, 00:42](493 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [41:25, 00:52](316 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:32, 08:53] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [45:21, 00:49](511 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:41, 18:03] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:08, 01:26](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:08, 01:23](716 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:45, 17:53] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [35:23, 01:10](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:29, 14:26] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [38:00, 01:19](657 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [38:00, 01:21](638 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:58, 01:09](880 MB) - -PASS -- COMPILE 'atml_intel' [15:43, 13:48] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [36:46, 01:23](1801 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [36:46, 01:20](1802 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [27:01, 00:21](947 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:34, 08:20] ( 868 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [41:15, 01:33](1819 MB) - -PASS -- COMPILE 'atmaero_intel' [18:39, 17:30] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [32:04, 01:25](3032 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [32:04, 01:50](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:04, 01:48](2923 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:27, 12:22] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:57, 00:53](4440 MB) +PASS -- COMPILE 's2swa_32bit_intel' [37:56, 36:43] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:56, 01:04](3098 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:30, 12:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [32:29, 01:48](1821 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:30, 01:40](1836 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:30, 02:14](985 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [32:30, 01:25](1799 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:33, 16:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [29:26, 01:13](1822 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [21:38, 20:58] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:22, 01:43](1842 MB) + +PASS -- COMPILE 's2swa_intel' [12:29, 11:21] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [33:30, 01:10](3131 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:30, 01:20](3128 MB) +PASS -- TEST 'cpld_restart_p8_intel' [25:14, 01:42](3064 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [33:30, 01:04](3148 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [25:15, 01:35](3082 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [33:30, 01:35](3355 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [33:30, 01:04](3121 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [33:31, 01:14](3074 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:30, 01:26](3134 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:39, 04:01](4109 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:00, 03:38](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [33:30, 01:39](3111 MB) + +PASS -- COMPILE 's2sw_intel' [27:45, 26:39] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:15, 01:00](1835 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:15, 01:16](1901 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [27:45, 27:19] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [18:15, 01:13](1893 MB) + +PASS -- COMPILE 's2s_intel' [22:40, 21:35] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [23:18, 01:35](2904 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [23:18, 01:19](2911 MB) +PASS -- TEST 'cpld_restart_c48_intel' [19:16, 01:10](2303 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:37, 20:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [25:22, 01:36](3135 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:29, 11:25] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:30, 00:58](1834 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:00, 01:24](1007 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:01, 01:34](1803 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:17] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:12, 00:43](1843 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [20:35, 20:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:54, 00:20](574 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [12:54, 00:24](1467 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:54, 00:23](1474 MB) +PASS -- TEST 'control_latlon_intel' [12:54, 00:20](1468 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:54, 00:27](1471 MB) +PASS -- TEST 'control_c48_intel' [12:53, 00:57](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:53, 00:50](717 MB) +PASS -- TEST 'control_c192_intel' [12:54, 00:37](1592 MB) +PASS -- TEST 'control_c384_intel' [12:58, 01:16](1895 MB) +PASS -- TEST 'control_c384gdas_intel' [12:58, 01:52](1092 MB) +PASS -- TEST 'control_stochy_intel' [12:54, 00:29](528 MB) +PASS -- TEST 'control_stochy_restart_intel' [10:23, 01:00](332 MB) +PASS -- TEST 'control_lndp_intel' [12:54, 00:29](530 MB) +PASS -- TEST 'control_iovr4_intel' [12:54, 00:39](522 MB) +PASS -- TEST 'control_iovr5_intel' [12:54, 00:41](525 MB) +PASS -- TEST 'control_p8_intel' [12:54, 01:52](1766 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:54, 01:52](1771 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:54, 01:53](1777 MB) +PASS -- TEST 'control_restart_p8_intel' [07:24, 00:55](920 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:21, 01:27](1763 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:17, 00:47](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [12:19, 01:24](1767 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:55, 01:39](1851 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:40, 00:58](1764 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:38, 01:51](1824 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:26, 01:39](1777 MB) +PASS -- TEST 'merra2_thompson_intel' [09:24, 01:36](1775 MB) +PASS -- TEST 'regional_control_intel' [09:21, 01:08](839 MB) +PASS -- TEST 'regional_restart_intel' [02:41, 00:54](854 MB) +PASS -- TEST 'regional_decomp_intel' [09:17, 00:52](849 MB) +PASS -- TEST 'regional_2threads_intel' [09:09, 00:42](914 MB) +PASS -- TEST 'regional_noquilt_intel' [09:05, 00:21](1176 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:03, 00:19](850 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:58, 01:05](851 MB) +PASS -- TEST 'regional_wofs_intel' [08:23, 00:39](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [34:52, 34:36] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [57:37, 00:58](913 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [57:38, 01:21](1099 MB) +PASS -- TEST 'rap_decomp_intel' [57:23, 01:35](911 MB) +PASS -- TEST 'rap_2threads_intel' [56:25, 01:08](999 MB) +PASS -- TEST 'rap_restart_intel' [46:36, 01:16](783 MB) +PASS -- TEST 'rap_sfcdiff_intel' [56:23, 01:19](910 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [55:55, 00:56](913 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [46:02, 01:26](783 MB) +PASS -- TEST 'hrrr_control_intel' [55:55, 01:15](906 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [55:52, 01:41](907 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [55:42, 01:39](986 MB) +PASS -- TEST 'hrrr_control_restart_intel' [49:32, 00:43](739 MB) +PASS -- TEST 'rrfs_v1beta_intel' [55:36, 01:13](905 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [55:32, 01:03](1874 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [55:27, 01:10](1859 MB) + +PASS -- COMPILE 'csawmg_intel' [19:35, 19:10] +PASS -- TEST 'control_csawmg_intel' [07:26, 00:25](874 MB) +PASS -- TEST 'control_ras_intel' [07:25, 00:48](561 MB) + +PASS -- COMPILE 'wam_intel' [15:29, 14:15] +PASS -- TEST 'control_wam_intel' [07:18, 00:54](269 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [29:46, 29:25] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [55:27, 02:00](1764 MB) +PASS -- TEST 'regional_control_faster_intel' [55:14, 00:41](847 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:30, 14:51] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:54, 01:18](1491 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:10, 01:26](1492 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:37, 00:54](690 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:19, 00:16](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:10, 00:51](1005 MB) +PASS -- TEST 'control_ras_debug_intel' [04:58, 01:12](704 MB) +PASS -- TEST 'control_diag_debug_intel' [04:50, 00:21](1550 MB) +PASS -- TEST 'control_debug_p8_intel' [04:29, 01:11](1788 MB) +PASS -- TEST 'regional_debug_intel' [04:02, 00:11](882 MB) +PASS -- TEST 'rap_control_debug_intel' [04:03, 01:14](1075 MB) +PASS -- TEST 'hrrr_control_debug_intel' [03:55, 00:23](1069 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [03:53, 00:21](1073 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [03:25, 00:42](1072 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [03:25, 00:36](1077 MB) +PASS -- TEST 'rap_diag_debug_intel' [03:16, 00:38](1166 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [02:59, 00:48](1076 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [02:40, 01:05](1076 MB) +PASS -- TEST 'rap_lndp_debug_intel' [02:21, 00:26](1079 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [02:13, 00:40](1077 MB) +PASS -- TEST 'rap_noah_debug_intel' [01:45, 01:00](1073 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [01:31, 00:54](1075 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [01:24, 01:08](1074 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [00:46, 00:57](1073 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [00:44, 00:42](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [00:35, 01:00](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [00:26, 02:03](1085 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:21, 06:30] ( 842 warnings ) +PASS -- TEST 'control_wam_debug_intel' [15:56, 01:00](305 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:40, 22:56] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [54:36, 00:44](958 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [54:16, 01:40](793 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [53:57, 02:11](791 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:30, 01:32](852 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [53:31, 01:13](844 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:13, 00:54](791 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:52, 01:07](690 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [46:11, 00:40](674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [38:58, 38:08] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [39:16, 00:33](1008 MB) +PASS -- TEST 'conus13km_2threads_intel' [35:26, 01:15](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [35:25, 01:07](882 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:41, 20:16] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [55:13, 01:19](809 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 06:04] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [00:06, 01:02](955 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [00:05, 01:07](953 MB) +PASS -- TEST 'conus13km_debug_intel' [59:44, 00:48](1045 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [58:59, 01:00](719 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [58:35, 00:46](1044 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:20, 00:47](1111 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 04:20] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:05, 01:17](982 MB) + +PASS -- COMPILE 'hafsw_intel' [15:31, 15:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [50:55, 01:20](616 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [48:59, 00:46](969 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [48:53, 02:09](664 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [48:52, 01:53](698 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:48, 01:34](716 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:30, 01:28](394 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:27, 01:35](406 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [48:27, 00:53](283 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [48:28, 01:54](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [47:06, 01:07](425 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [46:27, 00:55](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [46:19, 01:13](493 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [46:13, 00:39](315 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:29, 11:54] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [55:11, 00:53](515 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [30:56, 30:13] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:10, 00:49](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:10, 01:37](714 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:33, 14:08] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [46:12, 01:17](714 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:34, 16:19] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [45:57, 02:12](658 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [45:42, 02:04](643 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [45:07, 00:48](897 MB) + +PASS -- COMPILE 'atml_intel' [22:38, 19:55] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [34:59, 01:56](1800 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [34:59, 01:54](1801 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [27:22, 01:16](947 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:23, 08:19] ( 868 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [44:57, 01:48](1814 MB) + +PASS -- COMPILE 'atmaero_intel' [10:24, 09:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [44:51, 01:44](3028 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [44:07, 01:30](2913 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [43:33, 01:10](2923 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:30, 13:54] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [39:45, 00:56](4440 MB) SYNOPSIS: -Starting Date/Time: 20240524 12:21:08 -Ending Date/Time: 20240524 13:51:32 -Total Time: 01h:31m:12s +Starting Date/Time: 20240528 14:13:31 +Ending Date/Time: 20240528 15:46:38 +Total Time: 01h:33m:47s Compiles Completed: 32/32 Tests Completed: 159/159 diff --git a/tests/test_changes.list b/tests/test_changes.list index bd235ba2b8..be46fc186d 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -32,6 +32,21 @@ cpld_control_pdlib_p8 intel cpld_restart_pdlib_p8 intel cpld_mpi_pdlib_p8 intel cpld_debug_pdlib_p8 intel +control_flake intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c48.v2.sfc intel +control_c192 intel +control_c384 intel +control_c384gdas intel +control_stochy intel +control_stochy_restart intel +control_lndp intel +control_iovr4 intel +control_iovr5 intel control_p8 intel control_p8.v2.sfc intel control_p8_ugwpv1 intel @@ -48,27 +63,160 @@ regional_control intel regional_restart intel regional_decomp intel regional_2threads intel -regional_noquilt intel regional_netcdf_parallel intel regional_2dwrtdecomp intel +regional_wofs intel +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_wam intel control_p8_faster intel regional_control_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_stochy_debug intel +control_lndp_debug intel control_csawmg_debug intel +control_ras_debug intel +control_diag_debug intel control_debug_p8 intel regional_debug intel +rap_control_debug intel +hrrr_control_debug intel +hrrr_gf_debug intel +hrrr_c3_debug intel +rap_unified_drag_suite_debug intel +rap_diag_debug intel +rap_cires_ugwp_debug intel +rap_unified_ugwp_debug intel +rap_lndp_debug intel +rap_progcld_thompson_debug intel +rap_noah_debug intel +rap_sfcdiff_debug intel +rap_noah_sfcdiff_cires_ugwp_debug intel +rrfs_v1beta_debug intel +rap_clm_lake_debug intel +rap_flake_debug intel +gnv1_c96_no_nest_debug intel control_csawmg_debug gnu +control_wam_debug intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +rap_control_dyn32_phy32 intel +hrrr_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_decomp_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +hrrr_control_restart_dyn32_phy32 intel +conus13km_control intel +conus13km_2threads intel +conus13km_restart_mismatch intel +rap_control_dyn64_phy32 intel +rap_control_debug_dyn32_phy32 intel +hrrr_control_debug_dyn32_phy32 intel +conus13km_debug intel +conus13km_debug_qr intel +conus13km_debug_2threads intel +conus13km_radar_tten_debug intel +rap_control_dyn64_phy32_debug intel +hafs_regional_atm intel +hafs_regional_atm_thompson_gfdlsf intel +hafs_regional_atm_ocn intel +hafs_regional_atm_wav intel +hafs_regional_atm_ocn_wav intel +hafs_regional_1nest_atm intel +hafs_regional_telescopic_2nests_atm intel +hafs_global_1nest_atm intel +hafs_global_multiple_4nests_atm intel +hafs_regional_specified_moving_1nest_atm intel +hafs_regional_storm_following_1nest_atm intel +hafs_regional_storm_following_1nest_atm_ocn intel +hafs_global_storm_following_1nest_atm intel +gnv1_nested intel +hafs_regional_storm_following_1nest_atm_ocn_debug intel +hafs_regional_storm_following_1nest_atm_ocn_wav intel +hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel +hafs_regional_docn intel +hafs_regional_docn_oisst intel control_p8_atmlnd_sbs intel control_p8_atmlnd intel control_restart_p8_atmlnd intel control_p8_atmlnd_debug intel atmwav_control_noaero_p8 intel atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +regional_atmaq_debug intel +control_c48 gnu +control_stochy gnu +control_ras gnu control_p8 gnu control_p8_ugwpv1 gnu +control_flake gnu +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rrfs_v1beta gnu +control_diag_debug gnu regional_debug gnu +rap_control_debug gnu +hrrr_control_debug gnu +hrrr_gf_debug gnu +hrrr_c3_debug gnu +rap_diag_debug gnu +rap_noah_sfcdiff_cires_ugwp_debug gnu +rap_progcld_thompson_debug gnu +rrfs_v1beta_debug gnu +control_ras_debug gnu +control_stochy_debug gnu control_debug_p8 gnu +rap_flake_debug gnu +rap_clm_lake_debug gnu +gnv1_c96_no_nest_debug gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu +conus13km_control gnu +conus13km_2threads gnu +conus13km_restart_mismatch gnu +rap_control_dyn64_phy32 gnu +rap_control_debug_dyn32_phy32 gnu +hrrr_control_debug_dyn32_phy32 gnu +conus13km_debug gnu +conus13km_debug_qr gnu +conus13km_debug_2threads gnu +conus13km_radar_tten_debug gnu +rap_control_dyn64_phy32_debug gnu cpld_control_nowave_noaero_p8 gnu cpld_control_pdlib_p8 gnu cpld_debug_pdlib_p8 gnu From 5bec704243286421fc613838fc67a2129e96acd6 Mon Sep 17 00:00:00 2001 From: Brian Curtis <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Fri, 31 May 2024 14:52:06 -0400 Subject: [PATCH 15/16] Update WCOSS2 libraries for spack-stack 1.6.0 (Combined PR #2301) (#2302) * UFSWM - A few miscellaneous minor fixes to regression test scripts - Bring in changes for WCOSS2 to match the spack-stack 1.6.0 setup - Bring in updated pnetcdf/pio for CICE - Print 'ECFLOW Tasks Remaining' message only when the number of tasks changes - Remove explicit 'set -e'. Use -v command line option for verbose mode - Remove 'Computing PET bounds and tasks' message - Fix bugs with log generation script (from @BrianCurtis-NOAA) - Uncomment new_compile=true in rocoto_create_compile_task - Removed unneeded colonifnco --- modulefiles/ufs_wcoss2.intel.lua | 43 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 4 - tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 510 ++++++------- tests/logs/RegressionTests_derecho.log | 533 ++++++------- tests/logs/RegressionTests_gaea.log | 534 ++++++------- tests/logs/RegressionTests_hera.log | 722 +++++++++--------- tests/logs/RegressionTests_hercules.log | 701 ++++++++--------- tests/logs/RegressionTests_jet.log | 472 ++++++------ tests/logs/RegressionTests_orion.log | 556 +++++++------- tests/logs/RegressionTests_wcoss2.log | 456 ++++++----- tests/rt.conf | 466 +++++------ tests/rt.sh | 47 +- tests/rt_utils.sh | 60 +- tests/test_changes.list | 221 ------ 18 files changed, 2595 insertions(+), 2856 deletions(-) diff --git a/modulefiles/ufs_wcoss2.intel.lua b/modulefiles/ufs_wcoss2.intel.lua index b9c94e53aa..dfc94d1d9f 100644 --- a/modulefiles/ufs_wcoss2.intel.lua +++ b/modulefiles/ufs_wcoss2.intel.lua @@ -18,27 +18,28 @@ load(pathJoin("cray-mpich", cray_mpich_ver)) cmake_ver=os.getenv("cmake_ver") or "3.20.2" load(pathJoin("cmake", cmake_ver)) ---prepend_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.4.2/modulefiles/compiler/intel/19.1.3.304") ---prepend_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.4.2/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.12") +append_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.6.0_pnetcdf/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.12") local ufs_modules = { - {["jasper"] = "2.0.25"}, - {["zlib"] = "1.2.11"}, - {["libpng"] = "1.6.37"}, - {["hdf5-B"] = "1.14.0"}, - {["netcdf-B"] = "4.9.2"}, - {["pio-B"] = "2.5.10"}, - {["esmf-B"] = "8.5.0"}, - {["fms"] = "2023.02.01"}, - {["bacio"] = "2.4.1"}, - {["crtm"] = "2.4.0"}, - {["g2"] = "3.4.5"}, - {["g2tmpl"] = "1.10.2"}, - {["ip"] = "3.3.3"}, - {["sp"] = "2.3.3"}, - {["w3emc"] = "2.9.2"}, - {["gftl-shared"] = "1.6.1"}, - {["mapl-B"] = "2.40.3"}, + {["jasper"] = "2.0.25"}, + {["zlib"] = "1.2.11"}, + {["libpng"] = "1.6.37"}, + {["hdf5"] = "1.14.0"}, + {["netcdf"] = "4.9.2"}, + {["pio"] = "2.5.10"}, + {["esmf"] = "8.6.0"}, + {["fms"] = "2023.04"}, + {["bacio"] = "2.4.1"}, + {["crtm"] = "2.4.0"}, + {["g2"] = "3.4.5"}, + {["g2tmpl"] = "1.10.2"}, + {["ip"] = "3.3.3"}, + {["sp"] = "2.3.3"}, + {["w3emc"] = "2.9.2"}, + {["gftl-shared"] = "1.6.1"}, + {["mapl"] = "2.40.3-esmf-8.6.0"}, + {["pnetcdf"] = "1.12.2"}, + {["scotch"] = "7.0.4"}, } for i = 1, #ufs_modules do @@ -48,10 +49,6 @@ for i = 1, #ufs_modules do end end -prepend_path("MODULEPATH", "/apps/prod/lmodules/INTEL_cray_mpich/19.1.3.304/cray-mpich/8.1.9") -scotch_ver=os.getenv("scotch_ver") or "7.0.4" -load(pathJoin("scotch",scotch_ver)) - setenv("CC", "cc") setenv("CXX", "CC") setenv("FC", "ftn") diff --git a/tests/bl_date.conf b/tests/bl_date.conf index b6baf7dcba..0a5ae08102 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240524 +export BL_DATE=20240530 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 7c7c71d765..236a9202ee 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -918,10 +918,6 @@ export_cice6() { export CICE_RESTART_DEFLATE=0 export CICE_HISTORY_FORMAT='pnetcdf2' - if [[ ${MACHINE_ID} == wcoss2 ]]; then - export CICE_RESTART_FORMAT='hdf5' - export CICE_HISTORY_FORMAT='hdf5' - fi export CICE_HISTORY_IOTASKS=-99 export CICE_HISTORY_REARR='box' export CICE_HISTORY_ROOT=-99 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index ad23006973..dfa57fe5af 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon May 27 22:00:37 UTC 2024 +Thu May 30 23:49:24 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1853474/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 = 205.513891 - 0: The maximum resident set size (KB) = 1943180 + 0: The total amount of wall time = 207.284592 + 0: The maximum resident set size (KB) = 1909148 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1853474/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 = 2010.182246 - 0: The maximum resident set size (KB) = 1915420 + 0: The total amount of wall time = 2019.198702 + 0: The maximum resident set size (KB) = 1873432 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1853474/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 = 180.505311 - 0: The maximum resident set size (KB) = 1880708 + 0: The total amount of wall time = 177.233106 + 0: The maximum resident set size (KB) = 1879672 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1853474/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 = 179.641615 - 0: The maximum resident set size (KB) = 1872468 + 0: The total amount of wall time = 177.213010 + 0: The maximum resident set size (KB) = 1883996 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1853474/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 = 176.094119 - 0: The maximum resident set size (KB) = 1904492 + 0: The total amount of wall time = 215.448488 + 0: The maximum resident set size (KB) = 1881620 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1853474/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 = 175.552974 - 0: The maximum resident set size (KB) = 1897264 + 0: The total amount of wall time = 178.761689 + 0: The maximum resident set size (KB) = 1879288 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4107210/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1853474/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 = 175.416690 - 0: The maximum resident set size (KB) = 1900280 + 0: The total amount of wall time = 176.979771 + 0: The maximum resident set size (KB) = 1880244 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon May 27 23:33:47 UTC 2024 -Elapsed time: 01h:33m:11s. Have a nice day! +Fri May 31 01:21:09 UTC 2024 +Elapsed time: 01h:31m:46s. 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 0dcb2693de..68fb1819a4 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,6 @@ -Tue May 28 14:50:49 UTC 2024 -Start Operation Requirement Test - baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669994/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_326777/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +63,14 @@ Moving baseline dbg_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1336.345357 - 0: The maximum resident set size (KB) = 1546880 + 0: The total amount of wall time = 1511.676145 + 0: The maximum resident set size (KB) = 1553376 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669994/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1319479/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +132,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 = 400.400364 - 0: The maximum resident set size (KB) = 1531504 + 0: The total amount of wall time = 431.329311 + 0: The maximum resident set size (KB) = 1519904 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669994/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_326777/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +202,8 @@ 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 = 403.389360 - 0: The maximum resident set size (KB) = 1543876 + 0: The total amount of wall time = 407.381438 + 0: The maximum resident set size (KB) = 1545864 Test std_base PASS -OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue May 28 15:51:14 UTC 2024 -Elapsed time: 01h:00m:26s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index f5a0556e9d..591216702e 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon May 27 22:04:21 UTC 2024 +Fri May 31 13:00:26 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2506150/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1237170/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 = 422.480958 - 0: The maximum resident set size (KB) = 1253628 + 0: The total amount of wall time = 1296.278977 + 0: The maximum resident set size (KB) = 754104 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2506150/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1237170/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 = 309.312501 - 0: The maximum resident set size (KB) = 1099136 + 0: The total amount of wall time = 2177.504571 + 0: The maximum resident set size (KB) = 730460 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2506150/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1237170/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 = 309.504865 - 0: The maximum resident set size (KB) = 1091976 + 0: The total amount of wall time = 2282.002035 + 0: The maximum resident set size (KB) = 719212 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_2506150/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1237170/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 = 311.713329 - 0: The maximum resident set size (KB) = 1100980 + 0: The total amount of wall time = 2158.092660 + 0: The maximum resident set size (KB) = 707756 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon May 27 22:58:48 UTC 2024 -Elapsed time: 00h:54m:28s. Have a nice day! +Fri May 31 15:32:45 UTC 2024 +Elapsed time: 02h:32m:21s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index f3c6203a57..f2288bc165 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -c028fa43556f266cd1e672d315d9b64cc4346722 +8a8d1c6f77cad4d9ea86e48a6198e8f5155a9df5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (heads/develop) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) @@ -35,268 +35,268 @@ 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-20240524 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172479 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240530 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_120014 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:33] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:35, 01:14](3167 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:17] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [05:30, 01:48](1883 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [46:02, 02:09](1908 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [46:02, 01:44](1045 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:31, 01:00](1861 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:09] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [05:29, 00:41](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:16] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [16:42, 01:46](1916 MB) - -PASS -- COMPILE 's2swa_intel' [11:25, 10:33] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:34, 01:29](3201 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:34, 01:23](3197 MB) -PASS -- TEST 'cpld_restart_p8_intel' [56:13, 01:29](3131 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:34, 01:22](3217 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [02:14, 01:24](3151 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:34, 01:07](3429 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:34, 01:30](3192 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:35, 01:18](3144 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:34, 01:08](3200 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:34, 00:45](3177 MB) - -PASS -- COMPILE 's2sw_intel' [11:25, 10:14] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:34, 00:49](1893 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:34, 00:58](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:35, 00:58](1955 MB) - -PASS -- COMPILE 's2s_intel' [10:24, 09:35] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:34, 00:30](2926 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:34, 01:22](2929 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:43, 01:12](2327 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:32, 18:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [03:27, 01:41](3199 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [05:28, 01:33](1895 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [46:17, 00:50](1060 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:13, 01:12](1866 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 04:03] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [12:25, 01:28](1916 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:22, 09:43] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [02:01, 00:36](641 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [59:20, 01:12](1534 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:04, 00:42](1544 MB) -PASS -- TEST 'control_latlon_intel' [57:04, 00:16](1542 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [56:00, 00:45](1535 MB) -PASS -- TEST 'control_c48_intel' [55:31, 00:50](1618 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [55:31, 00:22](740 MB) -PASS -- TEST 'control_c192_intel' [55:13, 01:04](1655 MB) -PASS -- TEST 'control_c384_intel' [54:35, 01:43](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [54:16, 01:50](1155 MB) -PASS -- TEST 'control_stochy_intel' [53:41, 00:54](596 MB) -PASS -- TEST 'control_stochy_restart_intel' [41:08, 00:40](397 MB) -PASS -- TEST 'control_lndp_intel' [50:51, 00:44](596 MB) -PASS -- TEST 'control_iovr4_intel' [48:33, 00:51](591 MB) -PASS -- TEST 'control_iovr5_intel' [48:33, 01:07](589 MB) -PASS -- TEST 'control_p8_intel' [47:38, 01:38](1840 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [47:38, 00:56](1837 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [47:35, 01:40](1842 MB) -PASS -- TEST 'control_restart_p8_intel' [37:18, 01:28](971 MB) -PASS -- TEST 'control_noqr_p8_intel' [47:06, 01:14](1828 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [37:08, 01:09](989 MB) -PASS -- TEST 'control_decomp_p8_intel' [46:45, 00:56](1829 MB) -PASS -- TEST 'control_2threads_p8_intel' [46:38, 00:57](1917 MB) -PASS -- TEST 'control_p8_lndp_intel' [46:38, 00:57](1843 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [44:43, 01:19](1891 MB) -PASS -- TEST 'control_p8_mynn_intel' [44:24, 01:25](1844 MB) -PASS -- TEST 'merra2_thompson_intel' [44:02, 01:15](1837 MB) -PASS -- TEST 'regional_control_intel' [43:31, 00:20](885 MB) -PASS -- TEST 'regional_restart_intel' [37:56, 00:38](876 MB) -PASS -- TEST 'regional_decomp_intel' [43:21, 00:58](881 MB) -PASS -- TEST 'regional_2threads_intel' [43:15, 00:18](972 MB) -PASS -- TEST 'regional_noquilt_intel' [42:35, 00:42](1203 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [42:04, 00:59](880 MB) -PASS -- TEST 'regional_wofs_intel' [41:21, 00:19](1611 MB) - -PASS -- COMPILE 'ifi_intel' [08:21, 08:10] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [03:12, 00:43](877 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [03:12, 01:02](870 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [03:13, 00:54](965 MB) - -PASS -- COMPILE 'rrfs_intel' [09:22, 09:05] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [02:12, 01:45](980 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [02:13, 00:52](1153 MB) -PASS -- TEST 'rap_decomp_intel' [02:12, 01:27](979 MB) -PASS -- TEST 'rap_2threads_intel' [02:12, 01:08](1062 MB) -PASS -- TEST 'rap_restart_intel' [40:57, 01:57](846 MB) -PASS -- TEST 'rap_sfcdiff_intel' [02:12, 01:56](973 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [02:12, 01:51](972 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [40:04, 01:16](845 MB) -PASS -- TEST 'hrrr_control_intel' [02:12, 01:08](970 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [02:12, 01:23](968 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [02:13, 01:58](1049 MB) -PASS -- TEST 'hrrr_control_restart_intel' [39:02, 00:43](800 MB) -PASS -- TEST 'rrfs_v1beta_intel' [02:12, 01:00](970 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [02:12, 00:29](1938 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [02:12, 01:15](1921 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:38] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [38:19, 00:47](931 MB) - -PASS -- COMPILE 'wam_intel' [08:22, 08:09] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [02:11, 01:10](335 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:31, 15:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [37:17, 01:12](1842 MB) -PASS -- TEST 'regional_control_faster_intel' [37:05, 00:15](874 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 05:12] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [36:46, 00:59](1558 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [36:00, 00:37](1565 MB) -PASS -- TEST 'control_stochy_debug_intel' [35:42, 01:00](764 MB) -PASS -- TEST 'control_lndp_debug_intel' [35:21, 00:37](766 MB) -PASS -- TEST 'control_csawmg_debug_intel' [34:38, 00:44](1076 MB) -PASS -- TEST 'control_ras_debug_intel' [34:34, 01:13](775 MB) -PASS -- TEST 'control_diag_debug_intel' [34:12, 00:34](1624 MB) -PASS -- TEST 'control_debug_p8_intel' [34:11, 00:35](1857 MB) -PASS -- TEST 'regional_debug_intel' [33:52, 00:35](925 MB) -PASS -- TEST 'rap_control_debug_intel' [33:33, 00:38](1149 MB) -PASS -- TEST 'hrrr_control_debug_intel' [33:24, 00:45](1138 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [32:10, 00:39](1142 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [32:10, 00:50](1141 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [32:03, 00:27](1145 MB) -PASS -- TEST 'rap_diag_debug_intel' [31:41, 00:28](1230 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [31:14, 00:49](1148 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [31:08, 00:37](1147 MB) -PASS -- TEST 'rap_lndp_debug_intel' [30:58, 00:44](1151 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [30:48, 00:15](1145 MB) -PASS -- TEST 'rap_noah_debug_intel' [30:18, 00:45](1141 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [30:10, 01:08](1144 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [30:03, 00:29](1146 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [29:37, 01:06](1140 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [29:32, 01:07](1146 MB) -PASS -- TEST 'rap_flake_debug_intel' [29:15, 01:03](1146 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [28:37, 01:46](1154 MB) - -PASS -- COMPILE 'wam_debug_intel' [15:29, 03:07] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [28:37, 00:29](382 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:38, 08:27] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:03, 01:17](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [27:06, 01:16](848 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [25:57, 01:49](850 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [25:42, 01:10](914 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:43, 01:44](901 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:38, 01:22](847 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:15, 01:12](741 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:22, 00:21](728 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:42, 12:19] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [25:10, 00:49](1057 MB) -PASS -- TEST 'conus13km_2threads_intel' [21:25, 00:34](1039 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [20:22, 00:48](938 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:38, 08:39] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [25:09, 00:46](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:32, 03:35] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [24:49, 01:11](1027 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:43, 00:43](1027 MB) -PASS -- TEST 'conus13km_debug_intel' [24:32, 01:15](1122 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:22, 01:10](797 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:53, 01:11](1102 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:42, 00:30](1191 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:35, 03:19] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:08, 00:31](1043 MB) - -PASS -- COMPILE 'hafsw_intel' [54:07, 09:59] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:57, 01:31](674 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:57, 00:48](1022 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:55, 01:17](721 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [07:55, 02:11](764 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:56, 01:26](774 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 01:41](445 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:56, 01:50](465 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:56, 01:35](341 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:59, 02:21](415 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:55, 00:58](476 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:55, 00:44](476 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 01:04](541 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:56, 00:35](367 MB) -PASS -- TEST 'gnv1_nested_intel' [07:56, 01:34](737 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [47:04, 03:45] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:11, 00:47](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [59:13, 17:55] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [59:22, 00:45](583 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [59:05, 00:52](752 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [48:04, 09:44] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:57, 01:10](748 MB) - -PASS -- COMPILE 'hafs_all_intel' [42:59, 09:15] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [05:38, 01:32](710 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:30, 02:08](696 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [05:21, 00:16](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [35:51, 08:46] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:47, 00:14](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:00](754 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:47, 00:28](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:47, 00:32](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:47, 00:35](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:47, 00:57](762 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:47, 00:40](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:47, 00:10](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:48, 01:13](648 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:48, 01:21](629 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:47, 00:57](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:25, 00:49](2016 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:24, 00:12](2017 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [34:49, 08:43] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:25, 01:00](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [25:38, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [14:58, 00:59](274 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:58, 01:01](412 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [12:31, 00:17](413 MB) - -PASS -- COMPILE 'atml_intel' [32:46, 09:36] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:03, 01:17](1853 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [02:47, 01:29](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [43:17, 00:25](1004 MB) - -PASS -- COMPILE 'atml_debug_intel' [24:39, 04:03] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:07, 01:37](1891 MB) - -PASS -- COMPILE 'atmw_intel' [09:22, 09:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:23, 01:36](1866 MB) - -PASS -- COMPILE 'atmaero_intel' [09:22, 08:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [01:22, 01:03](3096 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [00:49, 01:08](2982 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:00, 01:43](2988 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:25, 11:57] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:33, 01:01](3167 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 15:51] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [36:29, 01:15](1886 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:35, 01:28](1915 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 01:31](1046 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:30, 01:28](1858 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 15:48] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [36:30, 01:12](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:13] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [47:42, 01:43](1910 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 10:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [41:34, 01:18](3198 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:34, 00:53](3197 MB) +PASS -- TEST 'cpld_restart_p8_intel' [29:14, 01:26](3141 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [41:34, 01:24](3220 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [28:14, 01:44](3148 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [41:34, 01:01](3426 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [41:34, 01:27](3192 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [41:35, 01:33](3142 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:34, 01:25](3200 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [41:34, 00:45](3179 MB) + +PASS -- COMPILE 's2sw_intel' [11:24, 10:14] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [41:35, 00:49](1891 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [41:35, 01:00](1949 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:28, 09:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [42:31, 00:59](1953 MB) + +PASS -- COMPILE 's2s_intel' [11:24, 10:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [41:33, 00:33](2927 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [41:33, 01:23](2935 MB) +PASS -- TEST 'cpld_restart_c48_intel' [37:29, 01:05](2328 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:33, 18:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [33:26, 01:16](3199 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 16:14] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:28, 01:16](1891 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:56, 00:46](1065 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [10:53, 01:29](1863 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:50] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:25, 01:23](1914 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:46] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [33:01, 00:50](642 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [33:01, 00:20](1538 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [33:01, 00:34](1546 MB) +PASS -- TEST 'control_latlon_intel' [33:01, 00:45](1537 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [33:01, 00:50](1534 MB) +PASS -- TEST 'control_c48_intel' [33:00, 01:02](1623 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [33:00, 01:22](745 MB) +PASS -- TEST 'control_c192_intel' [33:01, 00:44](1651 MB) +PASS -- TEST 'control_c384_intel' [33:05, 01:27](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [33:05, 02:02](1159 MB) +PASS -- TEST 'control_stochy_intel' [33:01, 00:21](596 MB) +PASS -- TEST 'control_stochy_restart_intel' [16:21, 00:43](400 MB) +PASS -- TEST 'control_lndp_intel' [33:01, 00:54](595 MB) +PASS -- TEST 'control_iovr4_intel' [30:06, 01:10](592 MB) +PASS -- TEST 'control_iovr5_intel' [27:31, 01:01](590 MB) +PASS -- TEST 'control_p8_intel' [27:14, 01:36](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [27:11, 01:39](1831 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [27:00, 01:51](1834 MB) +PASS -- TEST 'control_restart_p8_intel' [09:49, 01:01](985 MB) +PASS -- TEST 'control_noqr_p8_intel' [26:57, 01:18](1833 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [09:49, 00:37](980 MB) +PASS -- TEST 'control_decomp_p8_intel' [25:28, 01:25](1833 MB) +PASS -- TEST 'control_2threads_p8_intel' [21:50, 00:57](1926 MB) +PASS -- TEST 'control_p8_lndp_intel' [17:19, 00:39](1834 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [16:40, 01:18](1890 MB) +PASS -- TEST 'control_p8_mynn_intel' [16:34, 01:32](1844 MB) +PASS -- TEST 'merra2_thompson_intel' [16:19, 01:58](1838 MB) +PASS -- TEST 'regional_control_intel' [16:09, 00:16](878 MB) +PASS -- TEST 'regional_restart_intel' [08:32, 00:59](876 MB) +PASS -- TEST 'regional_decomp_intel' [15:31, 00:25](879 MB) +PASS -- TEST 'regional_2threads_intel' [15:20, 00:13](979 MB) +PASS -- TEST 'regional_noquilt_intel' [13:57, 00:09](1201 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:56, 01:07](878 MB) +PASS -- TEST 'regional_wofs_intel' [13:50, 00:52](1611 MB) + +PASS -- COMPILE 'ifi_intel' [08:20, 08:09] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [34:09, 00:30](881 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [34:09, 01:05](876 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [34:10, 00:59](970 MB) + +PASS -- COMPILE 'rrfs_intel' [09:22, 09:08] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:14, 01:06](980 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:00, 00:37](1151 MB) +PASS -- TEST 'rap_decomp_intel' [12:43, 00:47](976 MB) +PASS -- TEST 'rap_2threads_intel' [12:24, 01:07](1057 MB) +PASS -- TEST 'rap_restart_intel' [03:03, 01:08](846 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:40, 01:13](971 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 00:45](974 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [00:23, 01:55](848 MB) +PASS -- TEST 'hrrr_control_intel' [09:49, 01:37](967 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:45, 01:25](974 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:34, 01:51](1047 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:25, 00:15](804 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:25, 01:22](969 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:47, 00:31](1938 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:45, 00:56](1922 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:33] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:36, 00:18](930 MB) + +PASS -- COMPILE 'wam_intel' [08:22, 08:11] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [33:12, 00:40](334 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:30, 16:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:22, 00:57](1831 MB) +PASS -- TEST 'regional_control_faster_intel' [07:19, 01:09](874 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:23, 05:08] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:01, 00:29](1559 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:52, 00:28](1567 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:41, 00:59](766 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:53, 00:53](766 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:36, 00:16](1076 MB) +PASS -- TEST 'control_ras_debug_intel' [03:51, 00:12](775 MB) +PASS -- TEST 'control_diag_debug_intel' [03:03, 01:07](1621 MB) +PASS -- TEST 'control_debug_p8_intel' [02:49, 00:55](1859 MB) +PASS -- TEST 'regional_debug_intel' [02:24, 00:50](925 MB) +PASS -- TEST 'rap_control_debug_intel' [00:22, 00:46](1148 MB) +PASS -- TEST 'hrrr_control_debug_intel' [00:08, 00:14](1140 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [00:04, 01:08](1143 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [59:58, 00:35](1142 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [59:46, 00:39](1146 MB) +PASS -- TEST 'rap_diag_debug_intel' [59:24, 00:40](1227 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [59:14, 00:45](1145 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [57:59, 00:46](1146 MB) +PASS -- TEST 'rap_lndp_debug_intel' [57:27, 01:11](1149 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [57:25, 00:47](1145 MB) +PASS -- TEST 'rap_noah_debug_intel' [57:10, 00:57](1146 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [56:56, 00:42](1144 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [56:23, 00:30](1145 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [56:13, 00:32](1139 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [56:13, 01:00](1147 MB) +PASS -- TEST 'rap_flake_debug_intel' [55:58, 01:01](1143 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:48, 01:21](1151 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:25, 03:08] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [55:11, 00:48](381 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:33, 08:30] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [53:57, 00:36](1015 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [52:43, 01:34](850 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [52:41, 01:58](844 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [51:36, 01:14](908 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [51:31, 01:27](903 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [51:19, 01:36](851 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:52, 01:02](742 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [46:03, 01:03](725 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:34, 12:12] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [51:06, 00:59](1056 MB) +PASS -- TEST 'conus13km_2threads_intel' [47:22, 00:20](1040 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [47:21, 00:22](939 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:30, 08:35] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [50:48, 01:14](872 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:26, 03:22] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [50:45, 00:41](1023 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [50:36, 00:41](1023 MB) +PASS -- TEST 'conus13km_debug_intel' [50:33, 00:44](1120 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [50:00, 00:47](798 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [49:58, 00:20](1094 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [49:43, 01:13](1186 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [53:09, 03:18] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [39:52, 00:15](1047 MB) + +PASS -- COMPILE 'hafsw_intel' [00:15, 09:59] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [32:01, 01:29](676 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [32:01, 00:24](1029 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [31:59, 01:58](719 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:59, 01:36](761 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:00, 01:27](774 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:59, 00:42](443 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [32:00, 01:59](464 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [32:00, 01:28](340 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:03, 02:36](412 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:38, 01:08](478 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [31:04, 01:13](477 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:27, 01:01](542 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:25, 00:26](369 MB) +PASS -- TEST 'gnv1_nested_intel' [30:25, 00:42](729 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [54:13, 04:00] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [38:01, 00:46](579 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [01:15, 16:53] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:54, 00:45](584 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:59, 00:58](756 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [53:10, 09:46] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:50, 01:27](749 MB) + +PASS -- COMPILE 'hafs_all_intel' [51:05, 09:12] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [32:58, 01:53](710 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [32:58, 01:35](695 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [32:56, 01:08](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [47:00, 08:36] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [33:44, 00:41](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [28:19, 00:55](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [33:44, 00:22](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [33:44, 00:18](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [33:44, 00:34](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [33:44, 00:51](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [33:44, 00:38](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [33:44, 00:55](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:45, 01:05](647 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [33:45, 01:30](632 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [33:44, 00:28](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [33:44, 00:50](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [33:44, 00:50](2016 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [47:03, 08:50] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [28:19, 01:02](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [35:52, 00:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [40:04, 00:36](274 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:04, 01:01](411 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [37:38, 00:16](411 MB) + +PASS -- COMPILE 'atml_intel' [42:58, 10:24] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [28:21, 01:13](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [28:21, 01:21](1853 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 00:26](1008 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:17, 04:01] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [35:47, 01:38](1891 MB) + +PASS -- COMPILE 'atmw_intel' [09:22, 09:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [27:25, 01:45](1865 MB) + +PASS -- COMPILE 'atmaero_intel' [09:22, 08:53] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [27:20, 01:04](3097 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [26:19, 01:19](2980 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [26:18, 01:23](2990 MB) PASS -- COMPILE 'atmaq_debug_intel' [04:17, 03:24] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [58:20, 01:45](4521 MB) +PASS -- TEST 'regional_atmaq_debug_intel' [25:37, 01:36](4504 MB) SYNOPSIS: -Starting Date/Time: 20240528 14:37:42 -Ending Date/Time: 20240528 16:35:49 -Total Time: 01h:58m:23s +Starting Date/Time: 20240531 13:06:43 +Ending Date/Time: 20240531 15:16:38 +Total Time: 02h:10m:11s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index cd603d4e3d..d27db1f2e1 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -adb3ce384d9e58337d4271b64b69f94a58bfca68 +e3ddf5cbeaa53d93d400ed4f5a6d6a06c30911f0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (heads/develop) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) @@ -35,277 +35,278 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240524 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_128154 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240530 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_51699 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:24, 19:35] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:38, 05:46](3199 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:24, 21:00] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:49, 14:14](1913 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:08, 15:21](1944 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:55, 07:44](1082 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:43, 16:13](1884 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:24, 20:43] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:13, 14:06](1917 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:21, 09:22] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:30, 22:08](1935 MB) - -PASS -- COMPILE 's2swa_intel' [20:24, 19:25] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:37, 06:22](3221 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:43, 06:18](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:32, 03:53](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:36, 06:22](3248 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:32, 04:04](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:26, 05:59](3724 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:26, 06:14](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:16, 05:05](3533 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 06:16](3230 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:11, 09:42](3810 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:18, 06:16](3618 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:57, 10:48](4495 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:13, 07:02](4653 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:19, 05:54](3208 MB) - -PASS -- COMPILE 's2sw_intel' [19:23, 18:52] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:32, 05:02](1924 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:45, 04:52](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:22, 09:22] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:16, 08:16](3290 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:21, 08:41] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:18, 05:49](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:23, 14:24] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:41, 04:56](1987 MB) - -PASS -- COMPILE 's2s_intel' [15:23, 14:17] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:03, 07:00](2931 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:02, 02:24](2936 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:09, 01:30](2333 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:21, 24:02] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 06:13](3229 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:20, 19:30] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:44, 14:36](1933 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:06, 07:34](1111 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:35, 16:35](1911 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:40] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:32, 23:42](1952 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:19, 14:16] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:34, 03:25](670 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:58, 02:24](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:06, 02:26](1572 MB) -PASS -- TEST 'control_latlon_intel' [04:57, 02:22](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 02:21](1566 MB) -PASS -- TEST 'control_c48_intel' [07:55, 06:13](1619 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:31, 05:12](736 MB) -PASS -- TEST 'control_c192_intel' [10:33, 08:36](1687 MB) -PASS -- TEST 'control_c384_intel' [14:01, 08:41](2003 MB) -PASS -- TEST 'control_c384gdas_intel' [15:25, 07:03](1199 MB) -PASS -- TEST 'control_stochy_intel' [03:34, 01:25](625 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 00:50](437 MB) -PASS -- TEST 'control_lndp_intel' [02:41, 01:22](623 MB) -PASS -- TEST 'control_iovr4_intel' [03:35, 02:03](620 MB) -PASS -- TEST 'control_iovr5_intel' [03:35, 02:04](624 MB) -PASS -- TEST 'control_p8_intel' [05:49, 02:57](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:59, 03:09](1869 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:09](1862 MB) -PASS -- TEST 'control_restart_p8_intel' [04:22, 02:04](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:56, 03:17](1853 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:19, 02:10](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:02](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:06](1960 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:11](1856 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 03:42](1918 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:19](1878 MB) -PASS -- TEST 'merra2_thompson_intel' [05:52, 03:23](1871 MB) -PASS -- TEST 'regional_control_intel' [07:15, 04:55](873 MB) -PASS -- TEST 'regional_restart_intel' [04:57, 02:54](869 MB) -PASS -- TEST 'regional_decomp_intel' [06:57, 05:07](873 MB) -PASS -- TEST 'regional_noquilt_intel' [06:49, 04:52](1189 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:50, 04:52](873 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:51, 04:52](867 MB) -PASS -- TEST 'regional_wofs_intel' [06:51, 05:37](1599 MB) - -PASS -- COMPILE 'rrfs_intel' [13:18, 12:19] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:21, 06:05](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:07, 03:37](1209 MB) -PASS -- TEST 'rap_decomp_intel' [08:21, 06:21](1008 MB) -PASS -- TEST 'rap_2threads_intel' [08:21, 05:40](1092 MB) -PASS -- TEST 'rap_restart_intel' [05:08, 03:11](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:22, 06:08](1008 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:22, 06:34](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:12, 04:36](881 MB) -PASS -- TEST 'hrrr_control_intel' [05:05, 03:14](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:08, 03:17](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:05, 02:49](1085 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:35, 01:45](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:25, 06:00](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:47, 07:22](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:49, 07:07](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [11:18, 10:20] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:03, 06:29](968 MB) -PASS -- TEST 'control_ras_intel' [04:36, 02:50](657 MB) - -PASS -- COMPILE 'wam_intel' [10:14, 09:25] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:23, 01:52](386 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 16:11] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:19, 03:02](1871 MB) -PASS -- TEST 'regional_control_faster_intel' [05:59, 04:45](865 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:13, 11:26] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:14, 02:34](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:26](1596 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:30, 02:49](798 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:30, 02:34](798 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:57, 04:44](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [03:32, 02:36](808 MB) -PASS -- TEST 'control_diag_debug_intel' [04:47, 02:33](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [04:54, 03:17](1887 MB) -PASS -- TEST 'regional_debug_intel' [18:53, 16:56](910 MB) -PASS -- TEST 'rap_control_debug_intel' [05:31, 04:39](1178 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:34, 04:33](1178 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:38, 04:41](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:33, 04:43](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 04:37](1179 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:39, 04:52](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:25, 04:42](1181 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:36, 04:46](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:29, 04:40](1181 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:41, 04:38](1178 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:40, 04:40](1174 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:39, 04:37](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:34, 07:28](1173 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:30, 04:36](1176 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:25](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:39, 04:48](1179 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:08, 07:56](1186 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:27] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:24, 04:37](425 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 10:07] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:24, 03:28](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:59, 05:06](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:47, 02:48](886 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:58, 04:43](958 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:59, 02:24](943 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:57, 02:54](891 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:51, 03:53](798 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 01:31](778 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:14, 12:08] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:43, 01:51](1085 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:24, 00:54](1090 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:27, 01:08](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 10:14] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:05, 03:37](917 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:17, 06:04] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:31, 04:33](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:32, 04:22](1052 MB) -PASS -- TEST 'conus13km_debug_intel' [15:40, 13:20](1137 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:30, 13:43](825 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:18, 07:42](1140 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:38, 13:21](1207 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:17, 05:50] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:35, 04:37](1083 MB) - -PASS -- COMPILE 'hafsw_intel' [17:19, 16:35] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:28, 04:29](718 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:44, 04:59](1071 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:53, 06:20](785 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:35, 10:47](807 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:03, 11:54](819 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 04:36](481 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:30, 05:41](495 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:56, 02:13](396 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:33, 06:06](463 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:14](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:07, 03:02](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:18, 03:45](583 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:09](432 MB) -PASS -- TEST 'gnv1_nested_intel' [05:07, 03:12](791 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:12, 06:53] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:09, 11:53](625 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [25:16, 24:55] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:22, 07:02](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:19, 07:05](689 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:14, 17:37] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:17, 05:17](680 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:19, 14:30] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:28, 05:33](757 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:23, 05:33](738 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:09](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:33] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:29](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:26, 01:31](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:21, 02:21](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:23, 02:22](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:21, 02:22](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:27](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:28](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:23, 02:20](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:37, 05:36](689 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:57, 05:36](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:27](747 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:29, 03:49](2016 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:33, 03:51](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:17, 04:49] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:30, 05:08](745 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 07:37] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:25, 02:29](758 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:42, 01:06](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:01](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:40](452 MB) - -PASS -- COMPILE 'atml_intel' [15:18, 14:04] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:24, 06:30](1894 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:28, 06:28](1894 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 03:35](1044 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:17, 08:36] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:35, 05:56](1915 MB) - -PASS -- COMPILE 'atmw_intel' [13:13, 12:46] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:21](1889 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 11:04] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:41, 04:14](3124 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:40, 04:13](2996 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:13, 04:17](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:28] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:25, 21:44](4537 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:22, 19:50] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:23, 05:41](3203 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:22, 20:42] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:10, 14:21](1923 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:45, 15:36](1946 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:11, 07:43](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:06, 16:15](1894 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:22, 20:53] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:29, 14:30](1911 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:20, 09:22] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:45, 22:00](1936 MB) + +PASS -- COMPILE 's2swa_intel' [20:21, 19:25] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:03, 06:19](3223 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:25, 06:09](3220 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:26, 03:55](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:51, 06:51](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:43, 03:54](3181 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:35, 05:54](3724 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:35, 06:02](3216 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:39, 05:05](3535 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:51, 06:50](3231 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:55, 09:56](3807 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:02, 06:24](3618 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:32, 11:10](4491 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:43, 06:53](4648 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 06:11](3210 MB) + +PASS -- COMPILE 's2sw_intel' [20:22, 18:55] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:23, 05:03](1923 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:36, 04:58](1995 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:19, 09:22] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:38, 08:21](3285 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:20, 08:44] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 06:05](1951 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:21, 14:31] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:55, 04:59](1989 MB) + +PASS -- COMPILE 's2s_intel' [15:21, 14:29] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:15, 06:58](2930 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:14, 02:23](2929 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:49, 01:33](2322 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:23, 24:08] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 06:13](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [27:23, 19:36] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:41, 14:31](1941 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [28:14, 07:40](1113 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:55, 16:41](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:20, 08:50] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:27, 23:33](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:15, 14:32] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:36, 03:24](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:12, 02:24](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 02:25](1577 MB) +PASS -- TEST 'control_latlon_intel' [04:09, 02:22](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:13, 02:23](1560 MB) +PASS -- TEST 'control_c48_intel' [08:14, 06:14](1616 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:35, 05:14](733 MB) +PASS -- TEST 'control_c192_intel' [11:46, 08:41](1686 MB) +PASS -- TEST 'control_c384_intel' [14:15, 08:38](2005 MB) +PASS -- TEST 'control_c384gdas_intel' [15:47, 07:09](1199 MB) +PASS -- TEST 'control_stochy_intel' [02:47, 01:25](625 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:44, 00:51](441 MB) +PASS -- TEST 'control_lndp_intel' [02:46, 01:20](625 MB) +PASS -- TEST 'control_iovr4_intel' [03:41, 02:04](619 MB) +PASS -- TEST 'control_iovr5_intel' [03:40, 02:04](619 MB) +PASS -- TEST 'control_p8_intel' [05:23, 03:08](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:34, 02:59](1862 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 03:05](1869 MB) +PASS -- TEST 'control_restart_p8_intel' [04:16, 02:08](1011 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:19, 02:59](1855 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:21, 02:01](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:20, 03:15](1862 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:34, 03:10](1961 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:17, 05:06](1865 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 04:04](1922 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:41, 03:08](1876 MB) +PASS -- TEST 'merra2_thompson_intel' [05:36, 03:30](1874 MB) +PASS -- TEST 'regional_control_intel' [07:00, 04:56](872 MB) +PASS -- TEST 'regional_restart_intel' [04:52, 02:52](872 MB) +PASS -- TEST 'regional_decomp_intel' [07:00, 05:11](879 MB) +PASS -- TEST 'regional_noquilt_intel' [06:59, 04:59](1183 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:00, 05:00](869 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:02, 04:54](870 MB) +PASS -- TEST 'regional_wofs_intel' [07:00, 05:41](1600 MB) + +PASS -- COMPILE 'rrfs_intel' [15:15, 12:14] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:26, 06:06](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:49, 03:47](1205 MB) +PASS -- TEST 'rap_decomp_intel' [08:26, 06:22](1005 MB) +PASS -- TEST 'rap_2threads_intel' [07:25, 05:38](1107 MB) +PASS -- TEST 'rap_restart_intel' [05:21, 03:11](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:28, 06:05](1008 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 06:22](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:20, 04:33](883 MB) +PASS -- TEST 'hrrr_control_intel' [05:10, 03:13](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:10, 03:18](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 02:48](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:40, 01:45](836 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:31, 05:58](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:07, 07:20](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:07, 07:06](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [16:14, 10:34] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:03, 06:33](965 MB) +PASS -- TEST 'control_ras_intel' [04:34, 02:50](656 MB) + +PASS -- COMPILE 'wam_intel' [15:14, 09:51] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:22, 01:52](386 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:16, 16:10] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:33, 02:51](1865 MB) +PASS -- TEST 'regional_control_faster_intel' [05:59, 04:37](863 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 11:26] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:08, 02:28](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:01, 02:25](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:41, 02:49](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:35, 02:32](794 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:59, 04:30](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [04:38, 02:35](805 MB) +PASS -- TEST 'control_diag_debug_intel' [05:43, 02:32](1653 MB) +PASS -- TEST 'control_debug_p8_intel' [04:57, 03:08](1894 MB) +PASS -- TEST 'regional_debug_intel' [17:59, 16:12](912 MB) +PASS -- TEST 'rap_control_debug_intel' [07:35, 04:37](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:34, 04:30](1177 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:35, 04:37](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 04:37](1183 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 04:43](1180 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:14, 04:55](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 04:46](1180 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 04:41](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:38, 04:45](1180 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:37, 04:42](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:37, 04:33](1179 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:36, 04:35](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:34, 07:39](1178 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:37, 04:33](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 05:30](1181 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:39, 04:42](1181 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:56, 07:51](1185 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:14, 05:39] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:32, 04:41](431 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:18, 10:11] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:43, 03:35](1059 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:09, 05:10](886 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [18:25, 02:45](886 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [21:08, 04:43](948 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:01, 02:23](944 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:11, 02:53](888 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:04, 03:50](800 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:38, 01:31](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:21, 12:11] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [23:26, 01:50](1087 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:58, 00:55](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:05, 01:07](978 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:19, 10:09] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [21:57, 03:35](914 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:19, 06:07] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [24:34, 04:36](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [23:32, 04:23](1053 MB) +PASS -- TEST 'conus13km_debug_intel' [32:32, 13:19](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [32:42, 13:32](824 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:35, 07:42](1141 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:30, 13:21](1206 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:12, 05:46] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:34, 04:40](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [17:20, 16:40] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:23, 04:24](723 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:51, 04:57](1072 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:57, 06:21](788 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [29:18, 10:51](806 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:00, 11:57](824 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [22:14, 04:37](483 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:39, 05:40](498 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [15:55, 02:15](393 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:34, 06:12](460 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [18:00, 03:14](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [18:03, 03:01](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:18, 03:48](593 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:30, 01:11](431 MB) +PASS -- TEST 'gnv1_nested_intel' [13:02, 03:13](786 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:03] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:17, 12:03](625 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [26:22, 25:01] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:21, 06:59](636 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:22, 07:05](686 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:15, 17:36] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:18, 05:18](674 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:19, 14:23] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:25, 05:30](752 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:25, 05:32](739 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:14, 16:09](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:17, 07:33] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:29, 02:28](749 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:31](738 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:28, 02:20](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:23, 02:24](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:35, 02:23](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:32, 02:27](758 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:29, 02:29](759 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:32, 02:20](637 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:05, 05:36](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:05, 05:38](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:27](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 03:50](2015 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 03:52](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:18, 04:52] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:10](744 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:20, 07:33] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:28](760 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:06](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:36, 01:02](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:40](457 MB) + +PASS -- COMPILE 'atml_intel' [15:21, 14:04] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:24, 06:26](1897 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:44, 06:31](1897 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:54, 03:36](1044 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:19, 08:34] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:54, 06:03](1916 MB) + +PASS -- COMPILE 'atmw_intel' [14:21, 12:47] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:42, 02:12](1892 MB) + +PASS -- COMPILE 'atmaero_intel' [13:22, 11:22] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:39, 04:10](3125 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:40, 04:13](2999 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:23, 04:17](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:17, 06:29] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:40, 21:42](4536 MB) SYNOPSIS: -Starting Date/Time: 20240527 13:02:55 -Ending Date/Time: 20240527 14:33:18 -Total Time: 01h:31m:16s +Starting Date/Time: 20240530 21:20:03 +Ending Date/Time: 20240530 23:10:03 +Total Time: 01h:50m:49s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 1eaa00dd1e..4efac7fc92 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -c028fa43556f266cd1e672d315d9b64cc4346722 +e3ddf5cbeaa53d93d400ed4f5a6d6a06c30911f0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (heads/develop) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) @@ -35,279 +35,279 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240524 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_217145 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240530 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_49617 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:16, 23:08] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [32:44, 08:00](3199 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:59] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [40:58, 14:11](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:38, 15:24](1941 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:42, 07:22](1076 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [42:01, 15:37](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:12, 26:16] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [39:03, 13:52](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [19:12, 18:39] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:56, 25:46](1939 MB) - -PASS -- COMPILE 's2swa_intel' [22:16, 21:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:00, 09:02](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:06, 09:34](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [26:58, 05:58](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:00, 09:04](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [23:00, 05:52](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:48, 07:42](3452 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:49, 08:55](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:48, 08:05](3169 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:00, 08:55](3225 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [35:48, 10:33](3438 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [19:14, 07:35](3608 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [46:04, 13:28](4191 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:08, 09:21](4347 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:45, 08:26](3207 MB) - -PASS -- COMPILE 's2sw_intel' [22:16, 21:21] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:14, 05:41](1928 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:21, 05:49](1992 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:16, 16:03] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:59, 10:28](3263 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:16, 15:22] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:31, 06:09](1943 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:12, 18:30] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 05:42](1992 MB) - -PASS -- COMPILE 's2s_intel' [19:12, 19:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:39, 07:45](2912 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:27, 02:07](2919 MB) -PASS -- TEST 'cpld_restart_c48_intel' [23:25, 01:14](2313 MB) - -PASS -- COMPILE 's2swa_faster_intel' [30:19, 30:11] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [27:52, 08:36](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 24:53] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:39, 15:26](1930 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:43, 07:33](1103 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:34, 17:56](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:12, 17:01] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [56:32, 27:24](1940 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:16, 17:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [32:21, 04:14](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [31:53, 03:43](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:45, 03:08](1580 MB) -PASS -- TEST 'control_latlon_intel' [31:39, 03:42](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [31:40, 03:43](1571 MB) -PASS -- TEST 'control_c48_intel' [24:15, 06:43](1605 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:55, 05:43](729 MB) -PASS -- TEST 'control_c192_intel' [18:04, 10:28](1694 MB) -PASS -- TEST 'control_c384_intel' [25:17, 18:32](1991 MB) -PASS -- TEST 'control_c384gdas_intel' [22:15, 14:32](1188 MB) -PASS -- TEST 'control_stochy_intel' [05:48, 02:16](630 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:39, 01:31](433 MB) -PASS -- TEST 'control_lndp_intel' [06:40, 02:43](629 MB) -PASS -- TEST 'control_iovr4_intel' [06:33, 03:05](626 MB) -PASS -- TEST 'control_iovr5_intel' [05:39, 03:04](624 MB) -PASS -- TEST 'control_p8_intel' [06:24, 04:02](1875 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:36, 04:22](1875 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:25, 04:14](1877 MB) -PASS -- TEST 'control_restart_p8_intel' [03:14, 02:07](1018 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:21, 03:59](1866 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:19, 02:42](1022 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:19, 03:52](1863 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:09, 03:16](1955 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:02, 05:47](1874 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:38](1924 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:15, 03:51](1881 MB) -PASS -- TEST 'merra2_thompson_intel' [05:36, 03:39](1876 MB) -PASS -- TEST 'regional_control_intel' [06:03, 05:04](864 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 03:04](864 MB) -PASS -- TEST 'regional_decomp_intel' [06:47, 05:20](865 MB) -PASS -- TEST 'regional_2threads_intel' [03:45, 03:03](1007 MB) -PASS -- TEST 'regional_noquilt_intel' [05:43, 04:55](1190 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:53, 04:51](863 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:44, 04:51](863 MB) -PASS -- TEST 'regional_wofs_intel' [07:43, 06:06](1593 MB) - -PASS -- COMPILE 'rrfs_intel' [17:12, 16:38] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [36:51, 07:02](1013 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:09, 04:06](1189 MB) -PASS -- TEST 'rap_decomp_intel' [36:51, 07:38](1010 MB) -PASS -- TEST 'rap_2threads_intel' [31:39, 06:26](1100 MB) -PASS -- TEST 'rap_restart_intel' [05:12, 03:31](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [35:49, 06:56](1010 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:37, 07:41](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:11, 05:24](882 MB) -PASS -- TEST 'hrrr_control_intel' [34:12, 04:00](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [34:12, 04:12](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [32:59, 03:14](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:38, 01:56](839 MB) -PASS -- TEST 'rrfs_v1beta_intel' [29:43, 07:30](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [29:04, 08:38](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [29:04, 08:24](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [19:11, 18:16] -PASS -- TEST 'control_csawmg_intel' [07:37, 06:51](964 MB) -PASS -- TEST 'control_ras_intel' [04:30, 03:48](656 MB) - -PASS -- COMPILE 'wam_intel' [14:15, 13:24] -PASS -- TEST 'control_wam_intel' [31:07, 02:39](366 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [22:16, 21:33] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:18, 04:21](1876 MB) -PASS -- TEST 'regional_control_faster_intel' [06:02, 04:55](868 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:14, 17:36] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:02, 03:18](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:15](1590 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:27](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:16, 03:11](787 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:22](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [05:02, 02:57](797 MB) -PASS -- TEST 'control_diag_debug_intel' [06:50, 03:53](1647 MB) -PASS -- TEST 'control_debug_p8_intel' [06:52, 03:53](1888 MB) -PASS -- TEST 'regional_debug_intel' [19:47, 16:27](889 MB) -PASS -- TEST 'rap_control_debug_intel' [09:34, 05:48](1172 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:34, 05:39](1170 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:34, 05:55](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:32, 05:47](1177 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 05:31](1172 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:00](1255 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:38, 05:53](1172 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:50](1172 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:44, 05:12](1174 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 05:22](1172 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:33, 05:05](1172 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:15](1170 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:16, 07:58](1172 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:38, 05:11](1168 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 06:07](1173 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:28, 05:14](1172 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:13, 08:35](1175 MB) - -PASS -- COMPILE 'wam_debug_intel' [14:13, 13:41] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:29, 05:19](400 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:14, 16:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 03:49](1050 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:05, 06:26](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:39, 03:37](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:09, 05:20](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:13, 02:50](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 03:37](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 04:32](786 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:46, 01:43](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:12, 19:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:05, 02:12](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:41, 01:04](1078 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:29, 02:04](977 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:11, 16:11] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:09, 04:54](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 11:58] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 05:07](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:35, 04:56](1050 MB) -PASS -- TEST 'conus13km_debug_intel' [15:57, 14:11](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:59, 14:24](811 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:51, 08:29](1115 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 14:11](1201 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:18, 10:35] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:37, 05:07](1069 MB) - -PASS -- COMPILE 'hafsw_intel' [18:16, 17:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:22, 05:26](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:41, 04:41](1057 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:34, 07:38](744 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:21, 12:33](790 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:34, 12:57](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:17, 05:20](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:44, 06:51](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:17, 02:56](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:44, 08:09](438 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:27, 03:46](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:43, 03:33](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:38, 04:53](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:45](406 MB) -PASS -- TEST 'gnv1_nested_intel' [06:28, 04:21](770 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:18, 12:53] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:01, 12:59](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [25:15, 24:55] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:29, 07:42](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:27, 07:48](786 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 18:36] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 05:59](786 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:16, 17:10] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:37, 06:08](749 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:36, 06:14](731 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:18, 20:07](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:17, 12:27] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:37](759 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:33](746 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:26](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:28, 02:32](637 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:33](637 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:35](759 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:30, 02:33](759 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:31](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:00, 06:12](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:57, 06:06](678 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:34](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:36, 04:39](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:36, 04:35](2019 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 08:55] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:25](744 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:17, 12:35] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:01, 02:40](759 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 04:11] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:10, 02:53](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:00, 02:22](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:52, 01:08](456 MB) - -PASS -- COMPILE 'atml_intel' [18:13, 17:31] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:57, 08:31](1899 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:56, 08:34](1899 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 03:48](1042 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:14, 12:02] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:48, 07:04](1914 MB) - -PASS -- COMPILE 'atmw_intel' [16:17, 15:42] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:26, 02:49](1904 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 14:27] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:23, 07:06](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:18, 07:16](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:10, 07:06](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:13, 11:46] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:26, 18:22](4490 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:12, 19:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:22, 08:14](3199 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:14, 22:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [28:25, 14:16](1925 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:22, 15:01](1929 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:34, 06:56](1076 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:07, 16:02](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:12, 24:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:57, 14:47](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:15, 13:19] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:01, 24:00](1940 MB) + +PASS -- COMPILE 's2swa_intel' [19:12, 18:34] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:10, 08:28](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:17, 08:56](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:35, 05:45](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:16, 08:48](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:15, 06:06](3178 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:00, 07:04](3452 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:56, 09:06](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:49, 08:25](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:17, 08:53](3227 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [24:18, 11:27](3443 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:23, 08:17](3601 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:24, 14:08](4192 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:08, 09:46](4344 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:28, 08:20](3206 MB) + +PASS -- COMPILE 's2sw_intel' [19:12, 19:05] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:29, 05:16](1930 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:34, 05:31](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:15, 13:45] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:05, 10:31](3264 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:41] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:32, 06:13](1943 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:13, 15:50] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:56, 05:30](1993 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 16:21] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:22, 07:05](2912 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:23, 02:17](2919 MB) +PASS -- TEST 'cpld_restart_c48_intel' [11:34, 01:15](2312 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:13, 28:30] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:03, 09:14](3223 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 24:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:17, 15:52](1931 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:12, 07:51](1104 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [49:05, 17:23](1910 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:16, 15:14] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:09, 26:58](1941 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [20:19, 19:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:44, 04:17](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [12:23, 03:32](1569 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:12, 03:39](1580 MB) +PASS -- TEST 'control_latlon_intel' [12:58, 03:44](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:13, 03:49](1571 MB) +PASS -- TEST 'control_c48_intel' [12:28, 06:45](1602 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:14, 05:45](728 MB) +PASS -- TEST 'control_c192_intel' [12:07, 10:18](1687 MB) +PASS -- TEST 'control_c384_intel' [21:01, 18:36](1991 MB) +PASS -- TEST 'control_c384gdas_intel' [19:44, 14:31](1188 MB) +PASS -- TEST 'control_stochy_intel' [04:45, 02:24](630 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:58, 01:08](432 MB) +PASS -- TEST 'control_lndp_intel' [03:48, 02:30](629 MB) +PASS -- TEST 'control_iovr4_intel' [04:40, 02:54](626 MB) +PASS -- TEST 'control_iovr5_intel' [04:41, 03:11](626 MB) +PASS -- TEST 'control_p8_intel' [05:42, 03:28](1873 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 04:04](1873 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:24, 04:10](1877 MB) +PASS -- TEST 'control_restart_p8_intel' [05:05, 02:20](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:23, 04:21](1867 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:48, 02:29](1021 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:15](1863 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:57, 03:25](1956 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:34, 05:53](1874 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:08, 04:51](1925 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:15, 03:49](1880 MB) +PASS -- TEST 'merra2_thompson_intel' [08:12, 04:31](1876 MB) +PASS -- TEST 'regional_control_intel' [07:00, 04:57](864 MB) +PASS -- TEST 'regional_restart_intel' [04:13, 02:45](862 MB) +PASS -- TEST 'regional_decomp_intel' [06:58, 05:09](871 MB) +PASS -- TEST 'regional_2threads_intel' [05:17, 03:09](1014 MB) +PASS -- TEST 'regional_noquilt_intel' [06:32, 04:50](1188 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:06](862 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:04, 05:18](868 MB) +PASS -- TEST 'regional_wofs_intel' [08:03, 06:11](1594 MB) + +PASS -- COMPILE 'rrfs_intel' [15:15, 15:00] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [15:51, 07:08](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:30, 04:41](1183 MB) +PASS -- TEST 'rap_decomp_intel' [16:43, 07:25](1010 MB) +PASS -- TEST 'rap_2threads_intel' [11:56, 06:30](1094 MB) +PASS -- TEST 'rap_restart_intel' [06:43, 03:36](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [15:51, 07:02](1013 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:51, 07:16](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:35, 05:00](882 MB) +PASS -- TEST 'hrrr_control_intel' [12:48, 04:05](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:48, 03:57](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:39, 03:36](1080 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:53, 02:42](839 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:56, 07:06](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:05, 08:26](1968 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:09, 08:08](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [15:16, 15:09] +PASS -- TEST 'control_csawmg_intel' [17:48, 07:13](964 MB) +PASS -- TEST 'control_ras_intel' [12:38, 03:39](655 MB) + +PASS -- COMPILE 'wam_intel' [15:16, 14:15] +PASS -- TEST 'control_wam_intel' [12:38, 02:20](366 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:14, 21:09] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:40, 03:27](1874 MB) +PASS -- TEST 'regional_control_faster_intel' [06:11, 04:51](862 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 16:05] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:41, 03:17](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 03:07](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:47, 03:35](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:42, 03:22](787 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:42](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [03:50, 03:05](797 MB) +PASS -- TEST 'control_diag_debug_intel' [05:18, 03:14](1646 MB) +PASS -- TEST 'control_debug_p8_intel' [06:19, 03:50](1888 MB) +PASS -- TEST 'regional_debug_intel' [19:18, 16:41](889 MB) +PASS -- TEST 'rap_control_debug_intel' [06:46, 05:24](1172 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:04, 05:33](1170 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:05, 05:23](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:01, 05:10](1177 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:46, 05:28](1172 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:57, 05:49](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:43, 05:14](1172 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:52, 05:37](1172 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:44, 05:36](1174 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:51, 05:10](1171 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:43, 05:28](1172 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [11:55, 05:23](1170 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:48, 08:28](1171 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [14:33, 05:20](1169 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [17:50, 06:32](1174 MB) +PASS -- TEST 'rap_flake_debug_intel' [21:51, 05:12](1174 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [24:29, 09:00](1173 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:16, 11:17] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [22:43, 05:24](400 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:12, 15:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:30, 04:06](1047 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [28:34, 06:15](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:06, 03:42](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [31:15, 05:35](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [33:04, 02:46](932 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [33:13, 03:41](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [17:11, 04:19](785 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:49, 01:43](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:16, 16:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [31:25, 02:09](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:50, 01:09](1077 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:44, 01:47](977 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:15, 16:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [34:19, 04:35](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 12:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:43, 05:00](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [32:48, 04:50](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [42:32, 14:14](1134 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [42:32, 13:52](810 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [36:16, 08:13](1116 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [41:14, 14:03](1201 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:11, 12:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [31:40, 05:03](1069 MB) + +PASS -- COMPILE 'hafsw_intel' [21:13, 20:22] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [32:40, 05:30](711 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [30:59, 04:38](1060 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [33:40, 07:39](744 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [36:42, 11:42](793 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [39:46, 13:02](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [30:25, 05:33](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:01, 06:47](504 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [25:21, 03:08](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:09, 08:04](448 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [22:17, 03:44](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:31, 03:31](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:34, 04:42](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [18:04, 01:48](406 MB) +PASS -- TEST 'gnv1_nested_intel' [18:26, 04:05](773 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:15, 14:58] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [22:20, 13:18](588 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [29:12, 28:19] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:26, 07:39](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:26, 07:47](788 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:17, 21:03] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:13, 06:03](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:13, 19:34] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:19, 06:14](753 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:28, 06:11](731 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:17, 20:03](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:12, 13:07] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:33, 02:37](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:36](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:27, 02:29](637 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:29, 02:28](637 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:36, 02:31](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:27, 02:33](759 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:27, 02:41](759 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:26, 02:34](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:07, 06:04](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:03, 05:51](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:32, 02:35](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 04:35](2021 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:30, 04:36](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:13, 10:28] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:30, 05:26](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:15, 14:07] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:32, 02:43](747 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 04:42] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:03, 02:18](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:54, 01:35](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:59, 01:10](456 MB) + +PASS -- COMPILE 'atml_intel' [20:12, 19:25] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:50, 07:32](1899 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:46, 07:24](1899 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:01, 04:02](1033 MB) + +PASS -- COMPILE 'atml_debug_intel' [15:15, 14:33] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:33, 06:25](1914 MB) + +PASS -- COMPILE 'atmw_intel' [19:13, 18:21] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:19, 02:24](1903 MB) + +PASS -- COMPILE 'atmaero_intel' [17:16, 17:11] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:22, 06:29](3118 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:21, 07:08](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:11, 07:01](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [14:17, 13:37] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:46, 18:23](4486 MB) SYNOPSIS: -Starting Date/Time: 20240528 00:29:32 -Ending Date/Time: 20240528 02:33:46 -Total Time: 02h:05m:29s +Starting Date/Time: 20240530 16:47:35 +Ending Date/Time: 20240530 19:00:29 +Total Time: 02h:13m:50s Compiles Completed: 39/39 Tests Completed: 183/183 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index d8a54f00f0..42c4ca1c90 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -adb3ce384d9e58337d4271b64b69f94a58bfca68 +e3ddf5cbeaa53d93d400ed4f5a6d6a06c30911f0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -24,371 +24,371 @@ 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-20240524 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2141740 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240530 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_3973640 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:18, 05:50](3320 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:05, 17:19](1992 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:17, 17:56](2167 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:11, 08:12](1256 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:58, 19:28](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 17:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:39, 17:02](1973 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:37] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:12, 22:58](1929 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 13:41] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:08, 06:03](3319 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:21, 06:05](3317 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:23, 03:33](3262 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:08, 05:59](3367 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:24, 03:36](3271 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:08, 05:45](3616 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:05, 06:08](3338 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:09, 04:57](3202 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:14, 06:07](3319 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:24, 10:28](3517 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:05, 06:33](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:52, 09:53](4280 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:21, 06:48](4367 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:10, 05:41](3325 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 12:58] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:11, 05:02](1968 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:18, 04:31](2049 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:38] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:12, 08:39](3352 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:09] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 05:50](2001 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 12:11] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:17, 04:28](2038 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 12:13] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:56, 09:35](3089 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:49](3075 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:40, 01:40](2494 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:12, 20:24] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:23, 05:43](3343 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:46] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:03, 17:36](2005 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 08:20](1260 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 19:55](1873 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:06] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:02, 24:55](1959 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:13, 12:01] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:26, 03:20](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:51, 02:56](1599 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:57, 03:00](1613 MB) -PASS -- TEST 'control_latlon_intel' [04:48, 02:57](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:54, 03:02](1606 MB) -PASS -- TEST 'control_c48_intel' [08:50, 07:38](1761 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 06:29](871 MB) -PASS -- TEST 'control_c192_intel' [12:12, 10:42](1751 MB) -PASS -- TEST 'control_c384_intel' [13:17, 10:30](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [12:30, 08:09](1402 MB) -PASS -- TEST 'control_stochy_intel' [02:25, 01:38](664 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:30, 01:03](509 MB) -PASS -- TEST 'control_lndp_intel' [02:26, 01:36](662 MB) -PASS -- TEST 'control_iovr4_intel' [03:27, 02:30](658 MB) -PASS -- TEST 'control_iovr5_intel' [03:27, 02:26](660 MB) -PASS -- TEST 'control_p8_intel' [05:06, 03:21](1894 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:06](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:04, 02:58](1895 MB) -PASS -- TEST 'control_restart_p8_intel' [02:46, 01:46](1138 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:58, 03:07](1894 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:06, 01:44](1163 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:50, 03:13](1888 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:52, 03:00](1990 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:47, 05:31](1870 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:57, 04:10](1963 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:54, 03:15](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [04:51, 03:27](1897 MB) -PASS -- TEST 'regional_control_intel' [06:40, 05:23](1109 MB) -PASS -- TEST 'regional_restart_intel' [03:39, 03:00](1098 MB) -PASS -- TEST 'regional_decomp_intel' [06:39, 05:44](1091 MB) -PASS -- TEST 'regional_2threads_intel' [04:45, 03:32](1087 MB) -PASS -- TEST 'regional_noquilt_intel' [06:44, 05:23](1396 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:49, 05:20](1095 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:22](1102 MB) -PASS -- TEST 'regional_wofs_intel' [07:43, 06:53](1915 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:14] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:43, 07:44](1112 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:10, 04:15](1301 MB) -PASS -- TEST 'rap_decomp_intel' [09:38, 08:07](1038 MB) -PASS -- TEST 'rap_2threads_intel' [08:38, 07:19](1187 MB) -PASS -- TEST 'rap_restart_intel' [04:45, 04:01](1104 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:41, 07:43](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 08:07](1042 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:47, 05:53](1138 MB) -PASS -- TEST 'hrrr_control_intel' [04:44, 03:59](1047 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 04:12](1037 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:36, 03:42](1118 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:37, 02:10](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:49, 07:38](1106 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:26](1983 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:33, 09:06](2054 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:46] -PASS -- TEST 'control_csawmg_intel' [07:42, 06:10](1021 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:21](737 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:35] -PASS -- TEST 'control_csawmg_gnu' [09:54, 08:32](750 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:17] -PASS -- TEST 'control_wam_intel' [02:22, 02:05](656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:12, 19:06] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:51, 02:45](1897 MB) -PASS -- TEST 'regional_control_faster_intel' [05:39, 04:49](1101 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 06:33] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 02:36](1627 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:33](1623 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:27, 03:01](824 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:23, 02:44](816 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:42, 04:20](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [03:23, 02:43](832 MB) -PASS -- TEST 'control_diag_debug_intel' [03:45, 02:40](1676 MB) -PASS -- TEST 'control_debug_p8_intel' [03:42, 03:02](1922 MB) -PASS -- TEST 'regional_debug_intel' [17:38, 17:04](1094 MB) -PASS -- TEST 'rap_control_debug_intel' [05:29, 04:54](1209 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:24, 04:49](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:49](1212 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:24, 04:51](1213 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 04:50](1211 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:44, 05:04](1297 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:26, 04:57](1208 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:25, 05:00](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:26, 04:55](1211 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:56](1210 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:49](1217 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:27, 04:50](1209 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 07:57](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:47](1205 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:48](1211 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:50](1208 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:46, 08:33](1214 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:53] -PASS -- TEST 'control_csawmg_debug_gnu' [03:38, 02:23](749 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:13, 04:15] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:23, 05:06](524 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 04:00](1177 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:27](1042 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:37, 03:22](999 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:42, 06:09](1092 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 03:09](967 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:41, 03:37](941 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:42, 04:51](1034 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:54](937 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 14:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:58, 02:05](1206 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:49, 01:00](1123 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:16](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:16](992 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:02] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:58](1089 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:22, 04:42](1077 MB) -PASS -- TEST 'conus13km_debug_intel' [16:03, 14:32](1242 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:28](941 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:48, 08:07](1165 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:53, 14:17](1306 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:29, 04:53](1127 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 12:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:40, 05:20](745 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:35, 07:16](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:25, 07:07](836 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:36, 13:48](875 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:51, 15:26](881 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:04, 05:53](500 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 07:17](519 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:49, 02:53](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:17, 07:40](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 04:00](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:03, 03:46](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:55, 04:17](593 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 01:18](403 MB) -PASS -- TEST 'gnv1_nested_intel' [05:45, 04:12](800 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:33] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:58, 12:48](588 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:12, 20:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:10, 08:58](675 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:11, 09:01](743 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 12:40] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:21, 06:32](728 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:30, 06:36](834 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:29, 06:34](820 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:59, 16:11](1216 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:09] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:40](1145 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:37](1105 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:33](1014 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:40](1012 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:22, 02:39](1025 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:21, 02:40](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:40](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:32](1027 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:50, 06:19](1060 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:46, 06:20](1033 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:40](1136 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:57](2476 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:58](2488 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 06:15](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 06:05] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:42](1155 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:11] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:54](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:52](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:33](322 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 12:29] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:23, 04:29](1879 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:17, 04:25](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:05, 02:32](1104 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:23] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:16, 05:56](1881 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:28] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 01:56](1932 MB) - -PASS -- COMPILE 'atmaero_intel' [11:12, 11:08] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:18, 04:08](3206 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:16, 04:57](3108 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:03, 04:58](3117 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:55] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [32:22, 30:02](4444 MB) - -PASS -- COMPILE 'atm_gnu' [05:12, 04:53] -PASS -- TEST 'control_c48_gnu' [12:47, 11:09](1541 MB) -PASS -- TEST 'control_stochy_gnu' [04:26, 03:24](502 MB) -PASS -- TEST 'control_ras_gnu' [05:28, 04:54](510 MB) -PASS -- TEST 'control_p8_gnu' [06:09, 04:52](1463 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:03, 04:44](1475 MB) -PASS -- TEST 'control_flake_gnu' [11:26, 10:33](545 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:12, 04:48] -PASS -- TEST 'rap_control_gnu' [11:41, 10:54](865 MB) -PASS -- TEST 'rap_decomp_gnu' [11:42, 10:48](866 MB) -PASS -- TEST 'rap_2threads_gnu' [10:42, 09:52](943 MB) -PASS -- TEST 'rap_restart_gnu' [06:48, 05:26](589 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:45, 10:57](862 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:41, 11:19](860 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:55, 07:57](591 MB) -PASS -- TEST 'hrrr_control_gnu' [06:47, 05:40](861 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:40, 05:36](846 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:36, 05:12](931 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:42, 05:39](859 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:41, 02:49](571 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:39, 02:48](667 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:54, 10:32](857 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:12, 08:26] -PASS -- TEST 'control_diag_debug_gnu' [03:04, 01:47](1289 MB) -PASS -- TEST 'regional_debug_gnu' [12:49, 11:10](742 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:36, 02:44](877 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:31, 02:39](869 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:29, 02:36](873 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:27, 02:40](875 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:48, 02:51](956 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:27, 04:04](870 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:25, 02:38](870 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:26, 02:42](868 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:23, 01:35](509 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:24, 02:01](503 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:43, 01:51](1456 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:25, 02:37](871 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:23, 02:53](877 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 04:22](878 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:12, 02:28] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:40] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:37, 09:21](725 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:42, 04:56](721 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:46, 08:45](768 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:38, 04:35](767 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:38, 05:04](718 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:44, 06:58](561 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:34](551 MB) -PASS -- TEST 'conus13km_control_gnu' [05:06, 03:15](886 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:46, 05:43](888 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:47](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:12, 12:28] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:47, 05:43](742 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:12, 08:32] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:26, 02:31](721 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:28, 02:27](719 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:04, 07:05](904 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:54, 07:01](593 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:50, 07:34](909 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:48, 06:44](971 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:12, 08:27] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:27, 02:36](744 MB) - -PASS -- COMPILE 's2swa_gnu' [15:11, 14:39] - -PASS -- COMPILE 's2s_gnu' [15:11, 14:27] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:17, 06:53](1545 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:24] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:37] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:07, 22:57](1450 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:18] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:59, 13:29](1476 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:12] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:20, 03:03](702 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [13:54, 13:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:51, 05:55](3280 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:36, 16:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:31, 17:18](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:40, 18:28](2158 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:37, 08:36](1225 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:44, 19:41](1843 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:37, 16:37] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:34, 17:04](1930 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 05:12] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:53, 23:00](1878 MB) + +PASS -- COMPILE 's2swa_intel' [13:32, 13:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:13, 06:03](3306 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:02, 06:02](3306 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:45, 04:15](3219 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:12, 06:17](3329 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:14, 03:48](3239 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:52, 06:00](3586 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:25, 06:45](3297 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:41, 05:29](3176 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:07, 06:07](3294 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:28, 10:38](3486 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:13, 06:42](3587 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:49, 10:26](4248 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:09, 06:32](4330 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:35, 05:42](3295 MB) + +PASS -- COMPILE 's2sw_intel' [12:46, 12:45] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:42, 04:56](1977 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:23, 04:33](2020 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:13, 05:13] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:37, 08:39](3316 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:52, 04:51] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:57, 06:02](1962 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:54, 11:54] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:20, 04:29](2025 MB) + +PASS -- COMPILE 's2s_intel' [11:54, 11:53] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:02, 09:28](3064 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:31, 02:58](3042 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:19, 01:32](2475 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:16, 21:16] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:36, 05:44](3315 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:34, 16:34] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:35, 17:47](1979 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:37, 08:26](1261 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:05, 20:11](1887 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:37, 05:37] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 25:01](1923 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:06, 13:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:57, 03:43](686 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:38, 03:09](1576 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:45, 03:15](1598 MB) +PASS -- TEST 'control_latlon_intel' [03:25, 03:02](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:34, 03:05](1590 MB) +PASS -- TEST 'control_c48_intel' [08:07, 07:44](1750 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 06:26](860 MB) +PASS -- TEST 'control_c192_intel' [11:47, 10:55](1728 MB) +PASS -- TEST 'control_c384_intel' [12:29, 11:00](2000 MB) +PASS -- TEST 'control_c384gdas_intel' [11:02, 08:26](1375 MB) +PASS -- TEST 'control_stochy_intel' [01:59, 01:43](645 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:24, 01:04](487 MB) +PASS -- TEST 'control_lndp_intel' [01:53, 01:37](639 MB) +PASS -- TEST 'control_iovr4_intel' [02:46, 02:32](643 MB) +PASS -- TEST 'control_iovr5_intel' [02:44, 02:31](635 MB) +PASS -- TEST 'control_p8_intel' [04:09, 03:14](1881 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:08, 03:12](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:09, 03:04](1888 MB) +PASS -- TEST 'control_restart_p8_intel' [03:19, 02:22](1120 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:12, 03:11](1880 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:44, 01:54](1148 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:04, 03:22](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:10, 03:14](1975 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:36, 05:41](1876 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:02, 04:21](1946 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:56, 03:19](1885 MB) +PASS -- TEST 'merra2_thompson_intel' [04:44, 04:00](1885 MB) +PASS -- TEST 'regional_control_intel' [06:20, 05:50](1075 MB) +PASS -- TEST 'regional_restart_intel' [03:25, 02:59](1090 MB) +PASS -- TEST 'regional_decomp_intel' [06:24, 05:57](1078 MB) +PASS -- TEST 'regional_2threads_intel' [04:00, 03:38](1081 MB) +PASS -- TEST 'regional_noquilt_intel' [05:53, 05:31](1384 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:57, 05:33](1091 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:53, 05:29](1079 MB) +PASS -- TEST 'regional_wofs_intel' [07:14, 06:52](1900 MB) + +PASS -- COMPILE 'rrfs_intel' [11:35, 11:34] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:24, 07:53](1096 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:08, 04:17](1277 MB) +PASS -- TEST 'rap_decomp_intel' [08:45, 08:15](1044 MB) +PASS -- TEST 'rap_2threads_intel' [07:47, 07:24](1168 MB) +PASS -- TEST 'rap_restart_intel' [04:45, 04:15](1086 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:18, 07:49](1096 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 08:11](1035 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:40, 06:02](1116 MB) +PASS -- TEST 'hrrr_control_intel' [04:39, 04:01](1046 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:46, 04:14](1035 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:17, 03:49](1100 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:36, 02:17](996 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:50, 08:00](1084 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:17, 09:41](1972 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:38, 09:17](2053 MB) + +PASS -- COMPILE 'csawmg_intel' [10:49, 10:49] +PASS -- TEST 'control_csawmg_intel' [06:38, 06:14](1002 MB) +PASS -- TEST 'control_ras_intel' [03:32, 03:18](723 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:45, 04:45] +PASS -- TEST 'control_csawmg_gnu' [09:08, 08:41](733 MB) + +PASS -- COMPILE 'wam_intel' [10:31, 10:31] +PASS -- TEST 'control_wam_intel' [02:29, 02:16](636 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:51, 18:51] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:37, 02:59](1874 MB) +PASS -- TEST 'regional_control_faster_intel' [05:25, 05:02](1080 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:14, 07:13] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:31, 02:51](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:29, 02:53](1581 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:27, 03:16](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:12, 03:00](793 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:55, 04:29](1122 MB) +PASS -- TEST 'control_ras_debug_intel' [03:04, 02:53](811 MB) +PASS -- TEST 'control_diag_debug_intel' [03:17, 02:45](1637 MB) +PASS -- TEST 'control_debug_p8_intel' [03:39, 03:12](1874 MB) +PASS -- TEST 'regional_debug_intel' [18:19, 17:54](1057 MB) +PASS -- TEST 'rap_control_debug_intel' [05:11, 04:58](1187 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:59, 04:48](1205 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:09, 04:58](1169 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 05:06](1176 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 05:00](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:45, 05:22](1254 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 05:02](1181 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:12, 05:01](1175 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:17, 05:04](1175 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:12](1171 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:16, 04:58](1175 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:30, 05:14](1172 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 08:07](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:18, 04:59](1166 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:13, 05:59](1178 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:14, 04:58](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:56, 08:27](1179 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:32, 05:32] +PASS -- TEST 'control_csawmg_debug_gnu' [02:49, 02:24](714 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:04, 06:04] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:11, 05:01](479 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:35, 12:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 04:22](1143 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:14, 06:45](1026 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:01, 03:37](977 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:59, 06:26](1086 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:41, 03:18](945 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:05, 03:39](915 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:35, 05:02](1025 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:10, 01:54](917 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:38, 15:38] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:47, 02:11](1181 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:34, 01:04](1098 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:55, 01:22](1099 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:57, 11:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:49, 04:21](974 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:47, 04:46] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:57, 04:45](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:58, 04:46](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [15:00, 14:24](1177 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:04, 14:26](879 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:45, 08:11](1105 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:23, 14:50](1246 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:29, 04:27] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:10, 04:57](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [12:57, 12:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:12, 05:11](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:58, 06:33](1099 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:01, 06:57](814 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:43, 13:43](833 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:48, 15:36](867 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:37, 05:54](482 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 07:26](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 03:05](353 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:49, 07:43](467 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 03:57](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:13, 03:39](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:01, 04:22](566 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:17](387 MB) +PASS -- TEST 'gnv1_nested_intel' [04:48, 04:16](786 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:36, 04:35] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:44, 13:04](532 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:57, 20:56] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:42, 08:56](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 09:03](693 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:48, 12:48] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:27, 06:43](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:56, 11:55] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:33, 06:40](812 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:36, 06:41](797 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:31, 15:54](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:12, 06:11] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:56, 02:47](1146 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:50, 01:40](1097 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:50, 02:41](1010 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:52, 02:42](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:43, 02:38](1013 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:45, 02:39](1146 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:48, 02:40](1137 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:44, 02:37](1005 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:29, 06:18](1057 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:05](1031 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:46, 02:41](1141 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:07, 03:58](2430 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:02, 03:53](2490 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:04, 03:03] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 06:19](1063 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:20, 06:20] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:46, 02:40](1147 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:27, 01:27] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:50](250 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:14, 00:59](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:32](316 MB) + +PASS -- COMPILE 'atml_intel' [12:44, 12:44] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:12, 04:29](1833 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:14, 04:30](1841 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:16, 02:37](1067 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:41, 05:41] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:41, 05:56](1855 MB) + +PASS -- COMPILE 'atmw_intel' [11:33, 11:32] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:29, 01:57](1893 MB) + +PASS -- COMPILE 'atmaero_intel' [11:34, 11:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:18, 04:25](3192 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:46, 05:05](3076 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:35, 05:05](3117 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:05, 04:05] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:38, 26:57](4444 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 05:11] +PASS -- TEST 'control_c48_gnu' [11:41, 11:19](1530 MB) +PASS -- TEST 'control_stochy_gnu' [03:44, 03:30](493 MB) +PASS -- TEST 'control_ras_gnu' [05:05, 04:51](496 MB) +PASS -- TEST 'control_p8_gnu' [05:50, 05:02](1450 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:23, 04:45](1476 MB) +PASS -- TEST 'control_flake_gnu' [11:04, 10:52](531 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:45, 04:45] +PASS -- TEST 'rap_control_gnu' [11:41, 11:11](847 MB) +PASS -- TEST 'rap_decomp_gnu' [11:33, 11:08](850 MB) +PASS -- TEST 'rap_2threads_gnu' [10:36, 10:12](929 MB) +PASS -- TEST 'rap_restart_gnu' [06:15, 05:40](574 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:46, 11:06](853 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:10, 11:13](840 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:29, 08:33](575 MB) +PASS -- TEST 'hrrr_control_gnu' [06:11, 05:42](847 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:22, 05:52](834 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:37, 05:10](919 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:17, 05:44](844 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:56](556 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:30, 02:57](649 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:18, 10:38](846 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:25, 08:25] +PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:49](1261 MB) +PASS -- TEST 'regional_debug_gnu' [11:57, 11:20](733 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:06, 02:45](845 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:44, 02:56](847 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:04, 02:49](852 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:44, 02:57](843 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:52, 03:05](927 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:43, 04:26](839 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:55, 03:16](850 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:57, 03:18](846 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:46, 02:15](484 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:17, 02:31](477 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:00, 01:58](1450 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:56, 03:25](846 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:43, 03:14](851 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:07, 04:29](857 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:28, 02:27] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:44, 04:44] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:41, 10:04](703 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:47, 05:22](704 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:40, 08:53](752 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:22, 04:49](748 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:44, 05:14](706 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 07:07](546 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:08, 02:41](540 MB) +PASS -- TEST 'conus13km_control_gnu' [04:12, 03:28](874 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:25, 05:56](881 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:24, 01:58](555 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:33, 12:32] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:25, 05:53](738 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:44, 08:43] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:08, 02:53](701 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 02:56](704 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:54, 07:12](873 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:54, 07:15](569 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:14, 07:42](873 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:47, 07:09](940 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:44, 08:43] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:48, 02:34](727 MB) + +PASS -- COMPILE 's2swa_gnu' [14:40, 14:40] + +PASS -- COMPILE 's2s_gnu' [14:26, 14:26] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:36, 06:49](1530 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:40, 03:39] + +PASS -- COMPILE 's2sw_pdlib_gnu' [14:51, 14:50] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:53, 22:04](1450 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:50, 03:49] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:49, 13:03](1445 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [14:09, 14:08] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:08, 03:02](699 MB) SYNOPSIS: -Starting Date/Time: 20240528 03:17:29 -Ending Date/Time: 20240528 04:51:37 -Total Time: 01h:34m:34s +Starting Date/Time: 20240531 03:20:59 +Ending Date/Time: 20240531 07:40:16 +Total Time: 04h:19m:41s Compiles Completed: 55/55 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 6501143574..41b78a23f8 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -adb3ce384d9e58337d4271b64b69f94a58bfca68 +8a8d1c6f77cad4d9ea86e48a6198e8f5155a9df5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (heads/develop) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) @@ -35,365 +35,366 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240524 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_958471 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240530 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1168867 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:43] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:06, 07:43](2119 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 18:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:21, 13:42](1991 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:47, 14:23](2300 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:21, 06:44](1316 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:11, 17:52](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 18:19] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:26, 15:09](1997 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:21] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:16, 20:34](1965 MB) - -PASS -- COMPILE 's2swa_intel' [11:11, 10:59] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:58, 08:24](2188 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:07, 08:44](2180 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:28, 04:26](1980 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:00, 08:26](2204 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:23, 05:10](1741 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:47, 09:43](2554 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:53, 07:55](2177 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:06, 06:42](2083 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:01, 08:02](2187 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:06, 16:18](2977 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:44, 06:35](2921 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:31, 09:10](3823 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:14, 06:39](3616 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:19, 05:45](2150 MB) - -PASS -- COMPILE 's2sw_intel' [11:11, 10:31] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:00, 07:35](2021 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:59, 04:27](2096 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:42] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:03, 07:40](2209 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:26] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:52, 06:35](2027 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:11, 09:37] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:54, 04:10](2072 MB) - -PASS -- COMPILE 's2s_intel' [10:11, 09:42] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:41, 07:28](3083 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 02:14](3068 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:33, 01:19](2502 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:58, 07:41](2190 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:56] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:01, 14:29](2040 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:31, 07:54](1404 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:02, 15:38](1953 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:06] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:53, 22:09](2009 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:18, 02:50](718 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:28, 02:33](1614 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:36, 02:40](1622 MB) -PASS -- TEST 'control_latlon_intel' [03:28, 02:36](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:35, 02:31](1617 MB) -PASS -- TEST 'control_c48_intel' [07:41, 07:06](1744 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:26, 05:47](864 MB) -PASS -- TEST 'control_c192_intel' [09:47, 08:55](1748 MB) -PASS -- TEST 'control_c384_intel' [11:28, 09:15](2064 MB) -PASS -- TEST 'control_c384gdas_intel' [10:45, 07:27](1527 MB) -PASS -- TEST 'control_stochy_intel' [02:18, 01:23](668 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:46, 00:53](532 MB) -PASS -- TEST 'control_lndp_intel' [02:25, 01:22](667 MB) -PASS -- TEST 'control_iovr4_intel' [02:25, 02:04](670 MB) -PASS -- TEST 'control_iovr5_intel' [02:23, 02:05](666 MB) -PASS -- TEST 'control_p8_intel' [04:00, 02:46](1912 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:55, 03:14](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:17, 04:15](1921 MB) -PASS -- TEST 'control_restart_p8_intel' [03:01, 01:37](1154 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:53, 03:10](1897 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:32, 02:22](1208 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:47, 02:44](1893 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:41, 02:35](1990 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:58, 04:46](1925 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:10, 03:42](1992 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:24, 04:10](1926 MB) -PASS -- TEST 'merra2_thompson_intel' [04:11, 03:01](1914 MB) -PASS -- TEST 'regional_control_intel' [05:27, 04:40](1194 MB) -PASS -- TEST 'regional_restart_intel' [03:37, 02:47](1179 MB) -PASS -- TEST 'regional_decomp_intel' [05:28, 04:53](1189 MB) -PASS -- TEST 'regional_2threads_intel' [03:27, 03:05](1160 MB) -PASS -- TEST 'regional_noquilt_intel' [05:26, 04:32](1517 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:28, 04:43](1202 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:57](1200 MB) -PASS -- TEST 'regional_wofs_intel' [06:29, 05:44](2074 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:10, 12:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:03, 07:48](2132 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 17:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:21, 13:28](1991 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:48, 14:23](2303 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:41, 07:15](1300 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:20, 15:25](1919 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:10, 17:27] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:30, 13:37](1990 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:48] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:20, 20:42](1955 MB) + +PASS -- COMPILE 's2swa_intel' [13:10, 12:56] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:00, 07:54](2176 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:07, 08:02](2175 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:19, 04:30](1985 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:00, 07:42](2197 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:19, 04:32](1727 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:03, 09:31](2544 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:59, 07:45](2170 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:59, 06:43](2089 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:07, 08:17](2187 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:42, 15:49](2976 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:07, 06:11](2925 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:04, 09:00](3789 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:44, 06:24](3626 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:57, 05:10](2161 MB) + +PASS -- COMPILE 's2sw_intel' [13:10, 12:16] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:56, 07:22](2030 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:58, 04:14](2078 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:48] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [08:54, 07:14](2208 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:47] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:00, 05:00](2033 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:58] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:57, 04:14](2082 MB) + +PASS -- COMPILE 's2s_intel' [10:10, 09:42] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:42, 07:29](3089 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:16](3067 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:38, 01:19](2497 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:10, 19:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:07, 07:35](2178 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 15:10] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:49, 14:10](2042 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:03, 06:55](1384 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:15, 15:32](1959 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:42] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:01, 22:40](2016 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:11, 09:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:17, 02:52](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 02:31](1605 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:37, 02:36](1623 MB) +PASS -- TEST 'control_latlon_intel' [03:27, 02:30](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:31](1621 MB) +PASS -- TEST 'control_c48_intel' [07:36, 07:05](1736 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:33, 05:42](850 MB) +PASS -- TEST 'control_c192_intel' [09:40, 09:01](1760 MB) +PASS -- TEST 'control_c384_intel' [10:13, 09:07](2054 MB) +PASS -- TEST 'control_c384gdas_intel' [09:03, 06:59](1522 MB) +PASS -- TEST 'control_stochy_intel' [02:18, 01:30](678 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:25, 00:55](535 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:23](663 MB) +PASS -- TEST 'control_iovr4_intel' [03:22, 02:12](656 MB) +PASS -- TEST 'control_iovr5_intel' [03:19, 02:12](665 MB) +PASS -- TEST 'control_p8_intel' [03:46, 02:45](1909 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:53, 02:42](1913 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:52, 02:36](1909 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:42](1156 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:41, 02:39](1904 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:57, 01:36](1193 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:39, 02:52](1902 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:40, 02:34](1987 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:35](1899 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:52, 03:37](1981 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:51, 03:13](1919 MB) +PASS -- TEST 'merra2_thompson_intel' [03:59, 03:03](1911 MB) +PASS -- TEST 'regional_control_intel' [05:31, 04:46](1201 MB) +PASS -- TEST 'regional_restart_intel' [03:26, 02:54](1179 MB) +PASS -- TEST 'regional_decomp_intel' [05:31, 05:03](1190 MB) +PASS -- TEST 'regional_2threads_intel' [04:26, 03:10](1165 MB) +PASS -- TEST 'regional_noquilt_intel' [05:30, 04:35](1525 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:48](1205 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:47](1203 MB) +PASS -- TEST 'regional_wofs_intel' [06:24, 05:44](2073 MB) PASS -- COMPILE 'rrfs_intel' [08:11, 07:45] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:57, 06:29](1191 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:59, 03:29](1453 MB) -PASS -- TEST 'rap_decomp_intel' [08:05, 06:49](1127 MB) -PASS -- TEST 'rap_2threads_intel' [07:55, 06:10](1370 MB) -PASS -- TEST 'rap_restart_intel' [05:16, 03:32](1148 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:04, 06:35](1202 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:04, 06:50](1143 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:03, 04:53](1231 MB) -PASS -- TEST 'hrrr_control_intel' [04:41, 03:26](1091 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:41, 03:29](1044 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:55, 03:06](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:48, 01:55](1032 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:19, 06:18](1199 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:25, 07:43](2008 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:26, 07:28](2189 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 07:04] -PASS -- TEST 'control_csawmg_intel' [06:31, 05:33](1063 MB) -PASS -- TEST 'control_ras_intel' [03:28, 02:54](831 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 03:48] -PASS -- TEST 'control_csawmg_gnu' [07:30, 06:43](1070 MB) - -PASS -- COMPILE 'wam_intel' [10:10, 09:54] -PASS -- TEST 'control_wam_intel' [02:34, 01:58](799 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 12:50] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:00, 02:28](1901 MB) -PASS -- TEST 'regional_control_faster_intel' [07:27, 06:52](1201 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:44] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:42, 02:18](1632 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:51, 02:14](1632 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:29, 02:33](832 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:18](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:32, 04:14](1147 MB) -PASS -- TEST 'control_ras_debug_intel' [03:20, 02:18](832 MB) -PASS -- TEST 'control_diag_debug_intel' [03:37, 02:15](1693 MB) -PASS -- TEST 'control_debug_p8_intel' [04:33, 03:20](1914 MB) -PASS -- TEST 'regional_debug_intel' [15:31, 14:46](1152 MB) -PASS -- TEST 'rap_control_debug_intel' [05:21, 04:11](1219 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:18, 04:04](1217 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:19, 04:08](1221 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 04:04](1221 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:23, 04:05](1215 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:39, 04:16](1303 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:10](1237 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:21, 04:02](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:24, 04:04](1221 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 03:58](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:26, 03:53](1223 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:18, 03:57](1222 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:27](1220 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 03:54](1216 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:19, 04:47](1217 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:18, 04:02](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:56, 06:54](1223 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:38] -PASS -- TEST 'control_csawmg_debug_gnu' [02:26, 01:58](1061 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:10, 02:38] ( 855 warnings ) +PASS -- TEST 'rap_control_intel' [07:36, 06:34](1195 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:44, 03:31](1417 MB) +PASS -- TEST 'rap_decomp_intel' [07:36, 06:50](1136 MB) +PASS -- TEST 'rap_2threads_intel' [06:48, 06:09](1365 MB) +PASS -- TEST 'rap_restart_intel' [04:54, 03:30](1128 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:42, 06:37](1198 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:42, 07:03](1139 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 04:59](1182 MB) +PASS -- TEST 'hrrr_control_intel' [04:42, 03:28](1075 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 03:37](1059 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:12](1113 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:27, 01:56](1019 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:54, 06:29](1189 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:42](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:24](2179 MB) + +PASS -- COMPILE 'csawmg_intel' [09:11, 08:17] +PASS -- TEST 'control_csawmg_intel' [06:31, 05:50](1049 MB) +PASS -- TEST 'control_ras_intel' [03:17, 02:57](816 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:26] +PASS -- TEST 'control_csawmg_gnu' [07:31, 06:43](1072 MB) + +PASS -- COMPILE 'wam_intel' [08:11, 07:24] +PASS -- TEST 'control_wam_intel' [02:23, 02:02](796 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 14:18] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:58, 02:31](1907 MB) +PASS -- TEST 'regional_control_faster_intel' [05:31, 04:27](1202 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:55] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:36, 02:18](1637 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:37, 02:14](1645 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:28, 02:35](826 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:18](829 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:28, 04:07](1160 MB) +PASS -- TEST 'control_ras_debug_intel' [03:32, 02:25](852 MB) +PASS -- TEST 'control_diag_debug_intel' [03:50, 02:34](1687 MB) +PASS -- TEST 'control_debug_p8_intel' [04:35, 03:17](1927 MB) +PASS -- TEST 'regional_debug_intel' [15:29, 14:36](1143 MB) +PASS -- TEST 'rap_control_debug_intel' [04:22, 04:04](1230 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:18, 04:00](1219 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:18, 04:03](1210 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 04:05](1221 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 04:10](1214 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:27, 04:18](1300 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 04:10](1221 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:37](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:21](1215 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 04:14](1221 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:21, 04:05](1215 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:20, 04:20](1219 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:24, 06:36](1225 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:22, 04:07](1218 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:23, 04:56](1221 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:24, 04:05](1219 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:54, 06:53](1221 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:27] +PASS -- TEST 'control_csawmg_debug_gnu' [02:41, 01:53](1052 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 03:02] ( 855 warnings ) PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 07:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:52, 03:18](1277 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:00, 05:24](1145 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:54, 02:59](1023 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:43, 05:11](1279 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:48, 02:37](1038 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:42, 03:02](992 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:56, 04:15](1104 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 01:38](949 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:37] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:41, 01:47](1312 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:30, 01:00](1200 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:09](1143 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 06:53] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:33, 03:51](1085 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:02] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:22, 04:01](1095 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:25, 03:55](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [12:34, 11:37](1335 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:35, 12:15](993 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:27, 06:50](1249 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:40, 11:42](1413 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:21, 04:07](1157 MB) - -PASS -- COMPILE 'hafsw_intel' [11:10, 10:19] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:11, 05:40](873 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:38, 05:24](1289 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:26, 06:17](965 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:06, 14:12](981 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:25, 15:26](1017 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:45](604 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:24, 06:53](619 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:47, 02:40](437 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:17, 07:45](541 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:48, 03:59](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:17, 04:08](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:58, 04:58](680 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:13](450 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:53] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:47, 11:23](640 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:53, 17:22](753 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:12, 16:42](840 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:28] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:56, 10:32](825 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:10, 09:28] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:10, 05:24](943 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:02, 05:39](929 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 16:22](1342 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [05:11, 04:52] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:19](1139 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:24](1102 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 02:09](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:17](1016 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:34, 02:07](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:21, 02:17](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:11](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:17, 02:06](1008 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:12, 05:25](1142 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:27, 05:16](1157 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:14](1153 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:22, 03:05](2456 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:22, 03:06](2431 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:57] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:15](1068 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:14] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:14](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:47] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:25, 00:57](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:57](570 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:31](570 MB) - -PASS -- COMPILE 'atml_intel' [09:11, 08:25] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:13, 06:01](1899 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:55](1899 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:50, 03:16](1129 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:46] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:16](1911 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 09:52] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:52, 01:43](1957 MB) - -PASS -- COMPILE 'atmaero_intel' [08:11, 08:03] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:53, 03:45](2026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:53, 04:16](1806 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:21](1836 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:48] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:03, 17:15](4600 MB) - -PASS -- COMPILE 'atm_gnu' [04:10, 03:58] -PASS -- TEST 'control_c48_gnu' [10:37, 09:30](1558 MB) -PASS -- TEST 'control_stochy_gnu' [03:31, 02:22](733 MB) -PASS -- TEST 'control_ras_gnu' [04:24, 03:46](731 MB) -PASS -- TEST 'control_p8_gnu' [04:50, 03:50](1732 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:47, 05:44](1731 MB) -PASS -- TEST 'control_flake_gnu' [05:27, 04:28](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 04:25] -PASS -- TEST 'rap_control_gnu' [09:02, 07:50](1093 MB) -PASS -- TEST 'rap_decomp_gnu' [09:02, 07:59](1088 MB) -PASS -- TEST 'rap_2threads_gnu' [08:56, 07:17](1120 MB) -PASS -- TEST 'rap_restart_gnu' [05:06, 03:57](882 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:51, 07:43](1081 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:50, 07:54](1089 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:07, 05:46](882 MB) -PASS -- TEST 'hrrr_control_gnu' [04:56, 04:02](1069 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:52, 04:19](1133 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:04, 03:52](1027 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:52, 04:18](1068 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:34, 02:09](880 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:40, 02:12](931 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:07, 07:36](1080 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:17, 07:21] -PASS -- TEST 'control_diag_debug_gnu' [02:48, 01:20](1625 MB) -PASS -- TEST 'regional_debug_gnu' [07:34, 06:35](1126 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:23, 02:06](1099 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:20, 02:03](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:19, 02:04](1097 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:20, 02:01](1095 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:49, 02:09](1272 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:24, 03:11](1106 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:02](1103 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:29, 02:13](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:17, 01:15](724 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:26, 01:28](733 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:30, 02:38](1723 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:25, 02:00](1100 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:19](1106 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:53, 03:35](1102 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:25] -PASS -- TEST 'control_wam_debug_gnu' [02:27, 02:02](499 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:49] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:34, 07:17](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:57, 03:53](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:49, 06:44](990 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:30](874 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:56, 04:01](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:42, 05:32](858 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:22, 02:02](855 MB) -PASS -- TEST 'conus13km_control_gnu' [03:42, 02:34](1265 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:26, 01:36](1175 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:38](929 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:10, 09:18] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:32, 04:33](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:10, 09:27] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:18, 01:59](982 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:21, 02:05](974 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:48, 05:35](1285 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:39, 05:40](978 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:33, 03:14](1196 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:57](1352 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 06:54] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:29, 02:19](1009 MB) - -PASS -- COMPILE 's2swa_gnu' [16:11, 16:06] - -PASS -- COMPILE 's2s_gnu' [16:11, 15:47] - -PASS -- COMPILE 's2swa_debug_gnu' [09:10, 08:30] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:10, 15:45] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:10, 08:28] - -PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 15:07] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:50, 03:26](1268 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:31, 05:32](1143 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:58, 02:57](1012 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:49, 05:05](1299 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:40, 02:45](1042 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:37, 03:07](999 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:50, 04:07](1115 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 01:42](963 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 10:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:38, 01:45](1311 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:45](1195 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:31, 01:12](1139 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:39, 03:49](1091 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:14] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 04:12](1090 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:23, 03:55](1097 MB) +PASS -- TEST 'conus13km_debug_intel' [12:38, 11:39](1349 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:36, 12:03](999 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:29, 06:42](1238 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:32, 11:43](1410 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:09] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 04:07](1171 MB) + +PASS -- COMPILE 'hafsw_intel' [11:11, 10:55] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:29](879 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:22](1277 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:13, 06:24](950 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:07, 14:41](989 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:08, 15:09](1013 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:53, 05:43](605 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:22, 07:11](614 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:52, 02:44](437 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:06, 08:03](542 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 04:13](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:41, 03:54](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:52](684 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:17](445 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:33] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:46, 11:34](634 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:11] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:51, 17:16](873 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:52, 16:57](854 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:12, 10:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:52, 09:46](834 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:14, 10:38] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:06, 05:37](954 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:03, 05:38](931 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 16:34](1337 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:10] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:09](1138 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:18, 01:33](1104 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:12](1010 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:16, 02:09](1017 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 02:09](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:08](1133 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:08](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:09](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:56, 04:58](1164 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:59, 04:57](1149 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:13](1153 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:02](2317 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:16, 03:08](2396 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:23] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:14](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:44] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:12](1129 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:33] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:08](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:56](569 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:34](571 MB) + +PASS -- COMPILE 'atml_intel' [10:10, 09:11] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:20, 06:10](1903 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 06:20](1905 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 03:12](1135 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 04:27] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:10, 04:51](1913 MB) + +PASS -- COMPILE 'atmw_intel' [10:10, 09:28] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:47, 01:45](1951 MB) + +PASS -- COMPILE 'atmaero_intel' [09:10, 08:11] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:53, 03:48](2026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:50, 04:43](1821 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:46, 04:42](1819 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:11] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:32, 16:47](4606 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:53] +PASS -- TEST 'control_c48_gnu' [10:40, 09:47](1552 MB) +PASS -- TEST 'control_stochy_gnu' [03:20, 02:16](731 MB) +PASS -- TEST 'control_ras_gnu' [04:26, 04:04](737 MB) +PASS -- TEST 'control_p8_gnu' [04:55, 03:52](1726 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:39, 03:44](1733 MB) +PASS -- TEST 'control_flake_gnu' [05:20, 04:30](815 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 04:43] +PASS -- TEST 'rap_control_gnu' [08:47, 07:43](1081 MB) +PASS -- TEST 'rap_decomp_gnu' [08:35, 07:45](1081 MB) +PASS -- TEST 'rap_2threads_gnu' [08:34, 07:09](1144 MB) +PASS -- TEST 'rap_restart_gnu' [04:56, 03:58](883 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:44, 07:44](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:32, 07:47](1085 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:51, 05:46](881 MB) +PASS -- TEST 'hrrr_control_gnu' [04:50, 04:04](1069 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:45, 04:05](1135 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:41, 03:40](1021 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:46, 04:08](1070 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:26, 02:05](878 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:23, 02:04](931 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:48](1098 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 08:20] +PASS -- TEST 'control_diag_debug_gnu' [02:44, 01:24](1627 MB) +PASS -- TEST 'regional_debug_gnu' [07:32, 06:34](1122 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:34, 01:58](1100 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:34, 02:01](1091 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:25, 02:04](1098 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:09](1097 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:25, 02:09](1270 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:10](1097 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:18, 02:04](1100 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:19, 02:02](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:12](731 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:21, 01:21](725 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:35, 01:28](1729 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:20, 02:00](1100 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 02:12](1109 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:58, 03:21](1109 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:39] +PASS -- TEST 'control_wam_debug_gnu' [02:23, 01:58](499 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:17] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:35, 07:13](961 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:02, 03:47](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:44, 06:41](979 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:27](893 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:42, 03:50](952 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:54, 05:36](859 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:20, 02:01](854 MB) +PASS -- TEST 'conus13km_control_gnu' [03:38, 02:33](1268 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:33, 01:05](1171 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:31, 01:29](943 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 11:38] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:32, 04:21](992 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:59] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 01:57](981 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:18, 01:59](974 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:28](1285 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 05:38](964 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:14](1194 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:27, 05:27](1349 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:55] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 02:00](1003 MB) + +PASS -- COMPILE 's2swa_gnu' [17:11, 16:33] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:27] + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 04:53] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:27] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:11, 06:17] + +PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:48] SYNOPSIS: -Starting Date/Time: 20240527 14:04:25 -Ending Date/Time: 20240527 15:19:34 -Total Time: 01h:15m:31s +Starting Date/Time: 20240531 08:41:18 +Ending Date/Time: 20240531 09:56:16 +Total Time: 01h:15m:20s Compiles Completed: 55/55 Tests Completed: 238/238 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 941060cd03..8da67a6ffe 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -c028fa43556f266cd1e672d315d9b64cc4346722 +e3ddf5cbeaa53d93d400ed4f5a6d6a06c30911f0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (heads/develop) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) @@ -35,248 +35,248 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240524 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3198872 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240530 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1093842 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [40:14, 40:12] ( 1 warnings 1382 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:50, 08:37](2020 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:18, 49:26] ( 1 warnings 1426 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [29:39, 22:04](1887 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:42, 22:18](2019 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:58, 12:13](1129 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:05, 25:20](1845 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:17, 48:55] ( 1 warnings 1423 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [28:51, 22:05](1876 MB) - -PASS -- COMPILE 's2swa_intel' [42:14, 41:22] ( 1380 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:58, 08:52](2056 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:41, 09:02](2040 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:59, 05:20](1722 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:01, 09:21](2051 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:02, 06:35](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:48, 09:14](2314 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:51, 08:55](2043 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 08:06](1993 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:16, 09:24](2060 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [18:11, 08:49](2035 MB) - -PASS -- COMPILE 's2sw_intel' [39:14, 38:22] ( 1278 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:52, 07:40](1906 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:00, 07:14](1974 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:31] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:53, 11:19](2072 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:45] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:34, 07:54](1920 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [40:15, 35:08] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:28, 07:40](1970 MB) - -PASS -- COMPILE 's2s_intel' [38:16, 35:25] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [15:23, 13:33](3055 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:11, 04:18](3045 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:10, 02:29](2467 MB) - -PASS -- COMPILE 's2swa_faster_intel' [36:22, 33:59] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:21, 08:18](2006 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [44:16, 43:13] ( 1338 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:30, 22:16](1913 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:54, 11:14](1139 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:44, 25:06](1898 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:31] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:32, 33:16](1926 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:16, 38:29] ( 1 warnings 1147 remarks ) -PASS -- TEST 'control_flake_intel' [06:48, 04:53](649 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [16:09, 03:56](1546 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [20:16, 04:17](1550 MB) -PASS -- TEST 'control_latlon_intel' [18:04, 03:56](1538 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:15, 04:00](1551 MB) -PASS -- TEST 'control_c48_intel' [14:17, 11:58](1735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:55, 10:12](845 MB) -PASS -- TEST 'control_c192_intel' [24:30, 14:26](1680 MB) -PASS -- TEST 'control_c384_intel' [28:37, 17:55](1812 MB) -PASS -- TEST 'control_c384gdas_intel' [25:37, 13:33](1019 MB) -PASS -- TEST 'control_stochy_intel' [03:52, 02:40](603 MB) -PASS -- TEST 'control_stochy_restart_intel' [14:37, 01:24](432 MB) -PASS -- TEST 'control_lndp_intel' [03:52, 02:19](604 MB) -PASS -- TEST 'control_iovr4_intel' [04:50, 03:57](595 MB) -PASS -- TEST 'control_iovr5_intel' [04:48, 03:57](606 MB) -PASS -- TEST 'control_p8_intel' [20:43, 04:45](1854 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:39, 04:45](1847 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [21:48, 04:37](1851 MB) -PASS -- TEST 'control_restart_p8_intel' [04:22, 02:48](1050 MB) -PASS -- TEST 'control_noqr_p8_intel' [22:37, 04:46](1820 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:40, 02:45](1071 MB) -PASS -- TEST 'control_decomp_p8_intel' [21:26, 04:52](1837 MB) -PASS -- TEST 'control_2threads_p8_intel' [16:45, 04:50](1940 MB) -PASS -- TEST 'control_p8_lndp_intel' [18:14, 07:59](1850 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [17:50, 05:51](1893 MB) -PASS -- TEST 'control_p8_mynn_intel' [21:43, 04:42](1852 MB) -PASS -- TEST 'merra2_thompson_intel' [20:01, 05:08](1856 MB) -PASS -- TEST 'regional_control_intel' [11:56, 08:18](1015 MB) -PASS -- TEST 'regional_restart_intel' [09:41, 04:41](1009 MB) -PASS -- TEST 'regional_decomp_intel' [10:54, 08:54](1007 MB) -PASS -- TEST 'regional_2threads_intel' [09:58, 06:49](1004 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:54, 08:23](1009 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:41, 08:13](1012 MB) - -PASS -- COMPILE 'rrfs_intel' [36:15, 35:38] ( 3 warnings 1114 remarks ) -PASS -- TEST 'rap_control_intel' [13:32, 10:14](983 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:38, 05:44](1212 MB) -PASS -- TEST 'rap_decomp_intel' [15:06, 10:59](976 MB) -PASS -- TEST 'rap_2threads_intel' [15:06, 09:50](1075 MB) -PASS -- TEST 'rap_restart_intel' [07:23, 05:22](992 MB) -PASS -- TEST 'rap_sfcdiff_intel' [15:13, 10:15](988 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:13, 10:52](973 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:23, 07:44](996 MB) -PASS -- TEST 'hrrr_control_intel' [10:16, 05:30](987 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:16, 05:32](977 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:08, 05:02](1060 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:53](908 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:49, 10:12](987 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:36, 12:37](1939 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:37, 12:21](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [33:14, 32:50] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:44, 08:54](961 MB) -PASS -- TEST 'control_ras_intel' [05:28, 04:33](667 MB) - -PASS -- COMPILE 'wam_intel' [25:14, 25:00] ( 981 remarks ) -PASS -- TEST 'control_wam_intel' [07:34, 02:44](501 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:22, 14:26] ( 1298 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:56, 04:32](1830 MB) -PASS -- TEST 'regional_control_faster_intel' [12:07, 08:42](1004 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:37] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:03, 03:26](1547 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:06, 03:22](1564 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:33, 03:50](768 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:25](769 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:58, 06:01](1080 MB) -PASS -- TEST 'control_ras_debug_intel' [05:33, 03:32](770 MB) -PASS -- TEST 'control_diag_debug_intel' [08:04, 03:26](1625 MB) -PASS -- TEST 'control_debug_p8_intel' [09:10, 04:28](1858 MB) -PASS -- TEST 'regional_debug_intel' [27:01, 22:38](1039 MB) -PASS -- TEST 'rap_control_debug_intel' [08:35, 06:06](1152 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:35, 05:59](1151 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:34, 06:06](1157 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:35, 06:07](1152 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:28, 06:09](1154 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:41, 06:29](1236 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:25, 06:17](1151 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:25, 06:17](1153 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:28, 06:09](1152 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 06:08](1155 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:05](1150 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 06:07](1147 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 09:56](1147 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:30, 06:03](1147 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:21](1150 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:29, 06:08](1155 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:29, 10:35](1161 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:12, 04:46] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [07:24, 06:15](447 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [38:13, 30:36] ( 3 warnings 1027 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 05:29](1084 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:03, 09:39](906 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:44, 04:50](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:20, 09:05](950 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:11, 04:39](910 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:11, 05:18](858 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:21, 06:36](904 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:40, 03:05](840 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [55:19, 50:44] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:01, 03:19](1112 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:04, 01:30](1056 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:01, 01:37](1024 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:15, 30:45] ( 3 warnings 1047 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:01, 06:26](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:55] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 06:13](1033 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:35, 05:56](1033 MB) -PASS -- TEST 'conus13km_debug_intel' [24:13, 18:36](1144 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:13, 18:43](857 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:59, 10:45](1093 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:07, 18:26](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 04:43] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:09](1071 MB) - -PASS -- COMPILE 'hafsw_intel' [39:16, 39:01] ( 1 warnings 1426 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [13:39, 08:17](710 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:49, 08:59](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:01, 10:26](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:53, 16:41](803 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:06, 18:42](825 MB) -PASS -- TEST 'gnv1_nested_intel' [13:48, 06:38](781 MB) - -PASS -- COMPILE 'hafs_all_intel' [35:15, 34:11] ( 1267 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [16:48, 09:53](769 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:48, 10:48](755 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:17] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:25, 03:42](1058 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:40, 02:22](1039 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:24, 03:35](929 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:25, 03:46](922 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:24, 03:41](934 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:25, 03:46](1067 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:49](1063 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:25, 03:40](931 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:03, 09:16](882 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:42, 08:37](845 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:22, 03:44](1074 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:26, 05:42](2339 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:26, 05:45](2392 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:25] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:06](1011 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:08] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 04:37](1069 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:51] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:44, 02:17](231 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:37, 02:00](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 01:56](250 MB) - -PASS -- COMPILE 'atml_intel' [38:13, 38:06] ( 8 warnings 1185 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:42, 10:44](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:43, 10:17](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:49, 05:49](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:36] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:00, 09:05](1872 MB) - -PASS -- COMPILE 'atmw_intel' [35:13, 34:34] ( 1259 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:29, 03:00](1862 MB) - -PASS -- COMPILE 'atmaero_intel' [34:14, 33:26] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:24, 06:01](1947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:29, 06:35](1716 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:14, 06:31](1733 MB) +PASS -- COMPILE 's2swa_32bit_intel' [43:19, 42:05] ( 1 warnings 1382 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:52, 07:51](2010 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:19, 49:01] ( 1 warnings 1426 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:03, 21:48](1886 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:18, 26:34](2015 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:53, 12:48](1132 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:34, 24:47](1851 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:19, 48:41] ( 1 warnings 1423 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:48, 21:25](1889 MB) + +PASS -- COMPILE 's2swa_intel' [43:18, 42:31] ( 1380 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:27, 08:47](2020 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:56, 08:40](2046 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:44, 05:57](1720 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:28, 08:46](2072 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:44, 06:00](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:18, 08:35](2318 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:32, 09:02](2021 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:44, 07:50](1959 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:46, 08:28](2040 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:44, 08:15](2038 MB) + +PASS -- COMPILE 's2sw_intel' [41:19, 39:58] ( 1278 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:57, 07:00](1896 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:00, 06:44](1973 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:39, 07:01] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:06, 11:27](2082 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:15] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:36, 08:13](1919 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [37:17, 34:53] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:47, 11:24](1969 MB) + +PASS -- COMPILE 's2s_intel' [37:18, 36:47] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [16:27, 14:01](3058 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:41, 05:02](3037 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:09, 02:34](2477 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:24, 33:49] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:08, 08:11](2051 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:19, 47:22] ( 1338 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:42, 21:32](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:48, 11:06](1121 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:51, 24:54](1877 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:47] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:45, 33:41](1922 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:18, 39:00] ( 1 warnings 1147 remarks ) +PASS -- TEST 'control_flake_intel' [17:34, 04:35](645 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:20, 04:17](1538 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:33, 04:14](1551 MB) +PASS -- TEST 'control_latlon_intel' [18:16, 04:11](1547 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:23, 04:08](1549 MB) +PASS -- TEST 'control_c48_intel' [21:31, 12:02](1731 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:59, 10:11](844 MB) +PASS -- TEST 'control_c192_intel' [28:36, 14:43](1682 MB) +PASS -- TEST 'control_c384_intel' [24:36, 17:56](1816 MB) +PASS -- TEST 'control_c384gdas_intel' [29:33, 13:41](1021 MB) +PASS -- TEST 'control_stochy_intel' [15:33, 02:19](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:51, 01:46](433 MB) +PASS -- TEST 'control_lndp_intel' [03:31, 02:09](604 MB) +PASS -- TEST 'control_iovr4_intel' [12:37, 03:21](596 MB) +PASS -- TEST 'control_iovr5_intel' [15:36, 03:20](603 MB) +PASS -- TEST 'control_p8_intel' [18:50, 05:02](1845 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [19:31, 05:03](1851 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [18:10, 04:55](1848 MB) +PASS -- TEST 'control_restart_p8_intel' [05:44, 03:04](1038 MB) +PASS -- TEST 'control_noqr_p8_intel' [18:09, 04:40](1836 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:13, 03:02](1070 MB) +PASS -- TEST 'control_decomp_p8_intel' [18:44, 05:03](1839 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:00, 04:58](1930 MB) +PASS -- TEST 'control_p8_lndp_intel' [21:20, 07:58](1849 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [20:23, 06:26](1905 MB) +PASS -- TEST 'control_p8_mynn_intel' [19:25, 05:10](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [19:38, 05:26](1848 MB) +PASS -- TEST 'regional_control_intel' [22:11, 08:23](1018 MB) +PASS -- TEST 'regional_restart_intel' [05:49, 04:37](1007 MB) +PASS -- TEST 'regional_decomp_intel' [22:09, 08:56](1003 MB) +PASS -- TEST 'regional_2threads_intel' [12:09, 06:12](999 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [21:03, 08:27](1005 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [14:42, 08:13](1010 MB) + +PASS -- COMPILE 'rrfs_intel' [37:14, 36:06] ( 3 warnings 1114 remarks ) +PASS -- TEST 'rap_control_intel' [15:08, 10:09](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:25, 05:44](1217 MB) +PASS -- TEST 'rap_decomp_intel' [13:31, 10:44](980 MB) +PASS -- TEST 'rap_2threads_intel' [12:41, 09:44](1076 MB) +PASS -- TEST 'rap_restart_intel' [07:31, 05:22](989 MB) +PASS -- TEST 'rap_sfcdiff_intel' [15:06, 10:10](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:40, 10:43](974 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:20, 07:46](997 MB) +PASS -- TEST 'hrrr_control_intel' [10:08, 05:13](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:09, 05:27](978 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:35, 04:47](1056 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:52](898 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:50, 10:04](989 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:33, 12:23](1947 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:37, 12:08](1939 MB) + +PASS -- COMPILE 'csawmg_intel' [35:16, 33:54] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:49, 08:46](968 MB) +PASS -- TEST 'control_ras_intel' [05:30, 04:30](668 MB) + +PASS -- COMPILE 'wam_intel' [30:14, 30:00] ( 981 remarks ) +PASS -- TEST 'control_wam_intel' [03:28, 02:47](502 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [24:25, 13:49] ( 1298 remarks ) +PASS -- TEST 'control_p8_faster_intel' [14:42, 04:25](1841 MB) +PASS -- TEST 'regional_control_faster_intel' [08:50, 07:31](1006 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:28] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:58, 03:19](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:04, 03:16](1566 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:47](760 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 03:22](765 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:58, 05:57](1083 MB) +PASS -- TEST 'control_ras_debug_intel' [04:33, 03:25](776 MB) +PASS -- TEST 'control_diag_debug_intel' [05:02, 03:22](1626 MB) +PASS -- TEST 'control_debug_p8_intel' [07:13, 04:20](1836 MB) +PASS -- TEST 'regional_debug_intel' [25:00, 22:34](1038 MB) +PASS -- TEST 'rap_control_debug_intel' [07:37, 06:06](1154 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:37, 06:00](1147 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:36, 06:06](1148 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 06:08](1154 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:36, 06:09](1153 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:36](1238 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 06:19](1153 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 06:18](1153 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:36, 06:12](1154 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:32, 06:50](1156 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:33, 06:01](1151 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:27, 06:06](1160 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 09:54](1149 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:27, 06:02](1145 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:23](1158 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 06:04](1153 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 10:30](1163 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:27] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [08:23, 06:16](446 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:16, 30:25] ( 3 warnings 1027 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:19, 05:25](1074 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:01, 08:29](904 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:24, 04:35](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:27, 08:05](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 04:11](916 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:24, 04:49](867 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:06, 06:11](902 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 02:29](844 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [51:17, 50:58] ( 3 warnings 1197 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:13, 02:59](1112 MB) +PASS -- TEST 'conus13km_2threads_intel' [10:54, 01:34](1054 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [10:51, 01:43](1023 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:16, 31:20] ( 3 warnings 1047 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:00, 05:35](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 06:02](1037 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:33, 05:59](1027 MB) +PASS -- TEST 'conus13km_debug_intel' [24:06, 18:22](1145 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:06, 18:33](860 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:57, 10:41](1091 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:59, 18:22](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 04:19] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:11](1073 MB) + +PASS -- COMPILE 'hafsw_intel' [38:16, 38:00] ( 1 warnings 1426 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:25, 07:15](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:35, 06:41](1077 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:51, 09:22](782 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:35, 17:03](806 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:57, 18:17](825 MB) +PASS -- TEST 'gnv1_nested_intel' [10:22, 05:42](775 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:14, 33:15] ( 1267 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:45, 08:49](775 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:48, 08:57](759 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:09] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 03:39](1050 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:12](1032 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:35](924 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:37](924 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 03:38](919 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:39](1071 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 03:39](1056 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 03:33](924 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:22, 07:50](894 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 07:59](849 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:39](1061 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:36](2340 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 05:19](2407 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 07:58](1016 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:02] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:30, 03:34](1057 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:43] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:35, 01:40](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:31, 01:24](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [09:34, 01:06](254 MB) + +PASS -- COMPILE 'atml_intel' [38:17, 37:49] ( 8 warnings 1185 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:54, 09:50](1871 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:54, 10:16](1852 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:51, 05:49](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:24] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:46, 08:20](1871 MB) + +PASS -- COMPILE 'atmw_intel' [43:16, 35:22] ( 1259 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:28, 02:57](1845 MB) + +PASS -- COMPILE 'atmaero_intel' [35:14, 33:30] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:37, 05:57](1947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:49, 06:23](1722 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:17, 06:35](1740 MB) SYNOPSIS: -Starting Date/Time: 20240528 04:20:37 -Ending Date/Time: 20240528 08:21:13 -Total Time: 04h:01m:14s +Starting Date/Time: 20240530 20:47:50 +Ending Date/Time: 20240531 00:48:10 +Total Time: 04h:00m:56s Compiles Completed: 34/34 Tests Completed: 162/162 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index ba3aa42ff9..8d21f31e87 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,32 +1,32 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -0b42e893a2bb2ecf3074ffc61315ee8f742e8c33 +8a8d1c6f77cad4d9ea86e48a6198e8f5155a9df5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ea39d44907b07409b42b635ef7b9ad1e81543316 FV3 (remotes/origin/cs_perts) - a5c5ebfa556876c0e3e92880ce374d096bd2060e FV3/atmos_cubed_sphere (remotes/origin/cs_perts) - 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e) - 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (heads/develop) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -35,277 +35,281 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_202383 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240530 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_102432 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [15:28, 15:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:59, 05:36](3175 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:35, 18:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:44, 17:19](1743 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:50, 18:20](2022 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 08:33](1111 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:01, 19:34](1597 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:28, 05:28] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:23, 22:57](1660 MB) - -PASS -- COMPILE 's2swa_intel' [14:06, 14:06] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:01, 05:50](3214 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:58, 05:52](3209 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:04, 03:35](3257 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:13, 05:52](3241 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:09, 03:33](3262 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:15, 06:13](3553 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:55, 05:50](3201 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:59, 04:51](3070 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:06, 05:47](3210 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:25, 10:34](3330 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:23, 06:36](3623 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:42, 10:59](4119 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:50, 07:06](4352 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:44, 05:32](3173 MB) - -PASS -- COMPILE 's2sw_intel' [13:08, 13:08] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:42, 04:51](1732 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:33, 04:30](1782 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:28, 05:28] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:43, 08:37](3248 MB) - -PASS -- COMPILE 's2sw_debug_intel' [04:56, 04:56] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:04, 06:01](1756 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:16, 12:16] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:37, 04:29](1771 MB) - -PASS -- COMPILE 's2s_intel' [13:33, 13:33] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:14, 12:36](2757 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:36, 02:45](2770 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:52, 01:25](2243 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:34, 18:34] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:45, 05:33](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:53, 18:53] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:16, 17:22](1765 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:40, 08:32](1182 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:34, 19:35](1678 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:20, 05:19] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:53, 24:57](1716 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:24, 13:23] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:42, 03:28](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 02:53](1600 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:38, 03:01](1605 MB) -PASS -- TEST 'control_latlon_intel' [03:36, 02:59](1596 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:57](1602 MB) -PASS -- TEST 'control_c48_intel' [08:07, 07:37](1773 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 08:11](821 MB) -PASS -- TEST 'control_c192_intel' [11:25, 10:35](1740 MB) -PASS -- TEST 'control_c384_intel' [13:09, 11:37](1996 MB) -PASS -- TEST 'control_c384gdas_intel' [11:10, 09:08](1357 MB) -PASS -- TEST 'control_stochy_intel' [01:59, 01:43](652 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:14, 01:01](505 MB) -PASS -- TEST 'control_lndp_intel' [01:51, 01:37](655 MB) -PASS -- TEST 'control_iovr4_intel' [02:44, 02:32](656 MB) -PASS -- TEST 'control_iovr5_intel' [02:52, 02:35](653 MB) -PASS -- TEST 'control_p8_intel' [03:57, 03:02](1636 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:54, 03:00](1635 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:54](1640 MB) -PASS -- TEST 'control_restart_p8_intel' [02:39, 01:45](887 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:54, 02:57](1626 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:36, 01:42](930 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:02, 03:05](1618 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:10, 03:11](1717 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:52, 05:19](1634 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:08, 04:04](1694 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:08, 03:06](1639 MB) -PASS -- TEST 'merra2_thompson_intel' [04:40, 03:23](1639 MB) -PASS -- TEST 'regional_control_intel' [05:34, 05:12](855 MB) -PASS -- TEST 'regional_restart_intel' [03:03, 02:45](1020 MB) -PASS -- TEST 'regional_decomp_intel' [06:02, 05:32](847 MB) -PASS -- TEST 'regional_2threads_intel' [04:16, 03:46](847 MB) -PASS -- TEST 'regional_noquilt_intel' [05:37, 05:09](1367 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:42, 05:10](858 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:44, 05:12](859 MB) -PASS -- TEST 'regional_wofs_intel' [07:11, 06:40](1919 MB) - -PASS -- COMPILE 'rrfs_intel' [11:16, 11:16] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:40, 07:44](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:27, 04:43](1295 MB) -PASS -- TEST 'rap_decomp_intel' [09:09, 08:09](1024 MB) -PASS -- TEST 'rap_2threads_intel' [08:57, 07:56](1180 MB) -PASS -- TEST 'rap_restart_intel' [04:59, 04:02](1104 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:48, 07:47](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:08, 08:10](1040 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:50, 05:55](1128 MB) -PASS -- TEST 'hrrr_control_intel' [05:04, 04:00](1040 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:13, 04:13](1030 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:42, 07:39](1060 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:24, 02:09](999 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:45](1106 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:34, 09:16](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:11, 08:58](2076 MB) - -PASS -- COMPILE 'csawmg_intel' [11:17, 11:17] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:37, 06:09](755 MB) -PASS -- TEST 'control_ras_intel' [03:42, 03:27](688 MB) - -PASS -- COMPILE 'wam_intel' [10:31, 10:31] -PASS -- TEST 'control_wam_intel' [02:30, 02:17](616 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:48, 11:48] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:57, 02:48](1614 MB) -PASS -- TEST 'regional_control_faster_intel' [05:26, 04:51](850 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:33, 06:33] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:36, 03:01](1553 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:26, 02:47](1614 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:09](825 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:13, 02:58](823 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:47, 04:17](869 MB) -PASS -- TEST 'control_ras_debug_intel' [03:08, 02:54](830 MB) -PASS -- TEST 'control_diag_debug_intel' [03:21, 02:48](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [03:28, 03:03](1639 MB) -PASS -- TEST 'regional_debug_intel' [17:53, 17:25](851 MB) -PASS -- TEST 'rap_control_debug_intel' [05:36, 05:20](1195 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:57, 04:43](1200 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:59, 04:50](1211 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:05, 04:55](1206 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:11, 04:56](1204 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:54, 05:12](1282 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 05:01](1206 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:34, 05:03](1199 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:22, 05:06](1206 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 04:58](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:11, 04:56](1204 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:08, 04:54](1204 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:09, 07:54](1202 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:51](1205 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:45, 06:14](1208 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:53](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:49, 08:28](1205 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:46, 03:46] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:16, 05:04](511 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:22, 10:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:42, 04:35](1161 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:46, 06:29](1058 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 03:30](992 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:03, 06:47](1087 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:24, 06:57](917 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:11, 03:40](925 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:55, 04:53](1036 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:10, 01:54](929 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:40, 12:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:02, 02:12](1203 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:43, 01:09](1123 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:19](1053 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:52, 13:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:49, 04:17](994 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:50, 05:49] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:08, 04:52](1085 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:55, 04:44](1081 MB) -PASS -- TEST 'conus13km_debug_intel' [14:55, 14:23](1230 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:28, 14:53](923 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:56, 08:28](1100 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:52, 14:19](1295 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:49, 05:49] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 05:01](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [12:53, 12:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:40, 05:39](686 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 06:01](1109 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:09, 07:01](834 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:16, 13:15](866 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:17, 14:59](887 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:01, 06:18](451 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:40, 07:29](521 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:46, 03:09](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:02, 08:04](481 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:46, 04:12](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 04:00](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:18, 05:26](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:49, 01:28](402 MB) -PASS -- TEST 'gnv1_nested_intel' [05:53, 05:02](803 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:06, 04:05] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:46, 13:00](574 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:42, 14:42] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:41, 11:54](666 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:45, 09:49](742 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:24, 14:24] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:00, 07:06](730 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:58, 12:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:28, 06:31](830 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:32, 06:32](813 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:51, 16:05](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:14, 08:14] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:48, 02:39](1143 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:49, 01:38](1100 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:41, 02:34](1014 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:46, 02:36](1016 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:52, 02:42](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:52, 02:42](1133 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:52, 02:44](1137 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:40, 02:32](1010 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:54, 05:58](1052 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:51, 05:55](1030 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:47, 02:41](1132 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:49, 03:39](2493 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:37, 03:31](2442 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:52, 03:52] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:18, 06:12](1055 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:01, 07:01] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:43, 02:36](1133 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:58, 00:58] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:15, 00:50](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:43](329 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:52, 00:36](324 MB) - -PASS -- COMPILE 'atml_intel' [13:42, 13:42] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:29, 04:17](1602 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:38, 04:20](1614 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:04, 02:36](857 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:01, 05:01] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:14, 05:49](1632 MB) - -PASS -- COMPILE 'atmw_intel' [13:08, 13:08] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 01:48](1663 MB) - -PASS -- COMPILE 'atmaero_intel' [12:52, 12:52] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:09, 04:02](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:59, 04:55](3035 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:59, 05:03](3104 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:44, 03:44] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:17, 25:47](4582 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 16:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:08, 05:44](3302 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:58, 17:27](1974 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:09, 18:42](2152 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:05, 08:32](1250 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:49, 19:43](1870 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:12](1924 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:56] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:47, 22:54](1919 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 15:16] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:43, 05:54](3341 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:10, 05:58](3338 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:02, 03:53](3262 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:43, 05:58](3353 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:02, 03:58](3275 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:48, 06:28](3611 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:41, 05:57](3323 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:34, 04:55](3213 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:06, 05:54](3339 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:00, 10:40](3514 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:36, 06:56](3547 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:09, 11:30](4275 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:43, 07:08](4372 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:54, 05:40](3316 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 14:29] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:07, 04:57](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:27, 04:38](2034 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:17] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:26, 08:51](3380 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:45] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:12, 06:16](1993 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:53] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:44](1978 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 14:06] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:57, 08:26](3085 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:52, 02:39](3072 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:49, 01:39](2494 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:11, 23:15] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:04, 05:36](3341 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 22:32] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 17:29](1981 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:28, 08:36](1249 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:14, 19:51](1890 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:43] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:10, 24:46](1958 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:28, 03:35](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:55, 03:02](1596 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:58, 03:09](1609 MB) +PASS -- TEST 'control_latlon_intel' [03:47, 03:03](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 03:06](1592 MB) +PASS -- TEST 'control_c48_intel' [08:55, 07:16](1760 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 06:11](875 MB) +PASS -- TEST 'control_c192_intel' [12:03, 10:40](1736 MB) +PASS -- TEST 'control_c384_intel' [14:12, 11:41](2005 MB) +PASS -- TEST 'control_c384gdas_intel' [12:14, 09:06](1358 MB) +PASS -- TEST 'control_stochy_intel' [02:28, 01:45](652 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:27, 01:05](506 MB) +PASS -- TEST 'control_lndp_intel' [02:28, 01:38](653 MB) +PASS -- TEST 'control_iovr4_intel' [03:31, 02:39](649 MB) +PASS -- TEST 'control_iovr5_intel' [03:32, 02:33](653 MB) +PASS -- TEST 'control_p8_intel' [05:09, 03:15](1896 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:18, 03:16](1897 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:32, 03:09](1892 MB) +PASS -- TEST 'control_restart_p8_intel' [03:20, 01:54](1132 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:24, 03:05](1887 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:10, 01:49](1140 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:19, 03:14](1878 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:18, 03:20](1985 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:45, 05:28](1895 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:34, 04:14](1966 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:17](1903 MB) +PASS -- TEST 'merra2_thompson_intel' [05:49, 03:33](1898 MB) +PASS -- TEST 'regional_control_intel' [06:41, 05:35](1100 MB) +PASS -- TEST 'regional_restart_intel' [03:46, 02:58](1099 MB) +PASS -- TEST 'regional_decomp_intel' [06:35, 05:47](1094 MB) +PASS -- TEST 'regional_2threads_intel' [04:34, 04:05](1090 MB) +PASS -- TEST 'regional_noquilt_intel' [06:36, 05:20](1393 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:38, 05:27](1098 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 05:27](1101 MB) +PASS -- TEST 'regional_wofs_intel' [07:45, 06:46](1918 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:03] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:38, 07:52](1109 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:10, 04:48](1235 MB) +PASS -- TEST 'rap_decomp_intel' [10:02, 08:21](1032 MB) +PASS -- TEST 'rap_2threads_intel' [09:14, 08:01](1182 MB) +PASS -- TEST 'rap_restart_intel' [06:28, 04:12](1097 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:29, 07:52](1097 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:20, 08:18](989 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:25, 05:50](1131 MB) +PASS -- TEST 'hrrr_control_intel' [05:27, 04:05](1044 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:23, 04:11](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 03:28](1117 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:33, 02:19](998 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:25, 07:44](1093 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:28, 09:17](1999 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 09:05](2072 MB) + +PASS -- COMPILE 'csawmg_intel' [15:11, 12:45] +PASS -- TEST 'control_csawmg_intel' [07:48, 06:16](1014 MB) +PASS -- TEST 'control_ras_intel' [04:27, 03:24](743 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 10:56] +PASS -- TEST 'control_wam_intel' [03:22, 02:12](660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:36] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:40, 02:50](1897 MB) +PASS -- TEST 'regional_control_faster_intel' [05:38, 04:56](1094 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:35] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:08, 02:52](1612 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:11, 02:49](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:38, 03:16](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:36, 02:55](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:05, 04:22](1132 MB) +PASS -- TEST 'control_ras_debug_intel' [03:36, 03:04](832 MB) +PASS -- TEST 'control_diag_debug_intel' [04:09, 02:55](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [05:08, 03:08](1905 MB) +PASS -- TEST 'regional_debug_intel' [19:04, 17:29](1114 MB) +PASS -- TEST 'rap_control_debug_intel' [05:38, 04:59](1207 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:40, 04:48](1206 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:40, 04:57](1204 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:39, 05:00](1205 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:38, 05:04](1206 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:44, 05:08](1289 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:31, 05:06](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:04](1202 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:28, 05:06](1200 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 05:01](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:27, 05:02](1204 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 05:01](1201 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 08:07](1203 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 04:53](1199 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:07](1203 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:58](1212 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:42](1213 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 04:55] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:20, 05:10](524 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:06, 04:32](1171 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:26, 06:47](1054 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:10, 03:31](958 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:18, 06:52](1094 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:42, 03:04](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:09, 03:43](920 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:53, 05:02](1033 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:26, 01:54](931 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:11, 17:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:04, 02:12](1207 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:50, 01:07](1120 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:23](1112 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:46, 04:20](999 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:42] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:28, 04:51](1077 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:28, 04:50](1075 MB) +PASS -- TEST 'conus13km_debug_intel' [17:57, 14:10](1198 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:54, 14:19](934 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:14](1160 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:45, 14:09](1299 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 05:01] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 05:01](1117 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 15:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:18, 05:34](742 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 05:48](1117 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:56](836 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:19, 13:31](859 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:26, 15:04](884 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 06:22](504 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:22, 07:40](470 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:57, 03:12](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:48, 08:11](472 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:49, 04:18](533 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:03, 04:03](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 05:22](584 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 01:31](404 MB) +PASS -- TEST 'gnv1_nested_intel' [06:00, 04:41](810 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:20] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:52, 13:36](574 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [26:13, 25:41] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:07, 09:46](676 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:02, 09:49](747 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:10] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 07:09](694 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:10, 13:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:26](829 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:31](818 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 16:08](1208 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:30] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:43](1135 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:45](1086 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:35](1014 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:34](1006 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:41](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:47](1093 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:43](1125 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:37](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:22, 05:54](1065 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:19, 05:56](1034 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:39](1094 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:32](2482 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:41](2438 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 04:29] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:17](1044 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:44] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:39](1127 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:52](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:55](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:31](318 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 15:12] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:30](1857 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:33, 04:28](1859 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:46, 02:29](1100 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:47] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:30, 05:49](1887 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 12:30] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 01:54](1920 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 12:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:10](3191 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:14, 04:54](3086 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 05:04](3107 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 04:00] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:00, 21:12](4588 MB) SYNOPSIS: -Starting Date/Time: 20240509 17:23:56 -Ending Date/Time: 20240509 22:45:12 -Total Time: 05h:22m:02s -Compiles Completed: 38/38 -Tests Completed: 182/182 +Starting Date/Time: 20240531 08:06:00 +Ending Date/Time: 20240531 09:33:03 +Total Time: 01h:27m:32s +Compiles Completed: 39/39 +Tests Completed: 183/183 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 4e9500d28d..54f4feabd5 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -c028fa43556f266cd1e672d315d9b64cc4346722 +e3ddf5cbeaa53d93d400ed4f5a6d6a06c30911f0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 46093ebc3a5aa7c98c578ad4610ad378c2d9291b FV3 (remotes/origin/fhbucket) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (remotes/origin/HEAD) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) @@ -35,242 +35,238 @@ 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-20240524 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_161031 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240530 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_164577 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [37:56, 36:43] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:56, 01:04](3098 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:30, 12:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [32:29, 01:48](1821 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:30, 01:40](1836 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:30, 02:14](985 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [32:30, 01:25](1799 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:33, 16:06] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [29:26, 01:13](1822 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [21:38, 20:58] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:22, 01:43](1842 MB) - -PASS -- COMPILE 's2swa_intel' [12:29, 11:21] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:30, 01:10](3131 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:30, 01:20](3128 MB) -PASS -- TEST 'cpld_restart_p8_intel' [25:14, 01:42](3064 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [33:30, 01:04](3148 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [25:15, 01:35](3082 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [33:30, 01:35](3355 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [33:30, 01:04](3121 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:31, 01:14](3074 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:30, 01:26](3134 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:39, 04:01](4109 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:00, 03:38](4253 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [33:30, 01:39](3111 MB) - -PASS -- COMPILE 's2sw_intel' [27:45, 26:39] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:15, 01:00](1835 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:15, 01:16](1901 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [27:45, 27:19] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [18:15, 01:13](1893 MB) - -PASS -- COMPILE 's2s_intel' [22:40, 21:35] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [23:18, 01:35](2904 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [23:18, 01:19](2911 MB) -PASS -- TEST 'cpld_restart_c48_intel' [19:16, 01:10](2303 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:37, 20:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [25:22, 01:36](3135 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:29, 11:25] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:30, 00:58](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:00, 01:24](1007 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:01, 01:34](1803 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:17] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:12, 00:43](1843 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [20:35, 20:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [12:54, 00:20](574 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [12:54, 00:24](1467 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:54, 00:23](1474 MB) -PASS -- TEST 'control_latlon_intel' [12:54, 00:20](1468 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:54, 00:27](1471 MB) -PASS -- TEST 'control_c48_intel' [12:53, 00:57](1596 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:53, 00:50](717 MB) -PASS -- TEST 'control_c192_intel' [12:54, 00:37](1592 MB) -PASS -- TEST 'control_c384_intel' [12:58, 01:16](1895 MB) -PASS -- TEST 'control_c384gdas_intel' [12:58, 01:52](1092 MB) -PASS -- TEST 'control_stochy_intel' [12:54, 00:29](528 MB) -PASS -- TEST 'control_stochy_restart_intel' [10:23, 01:00](332 MB) -PASS -- TEST 'control_lndp_intel' [12:54, 00:29](530 MB) -PASS -- TEST 'control_iovr4_intel' [12:54, 00:39](522 MB) -PASS -- TEST 'control_iovr5_intel' [12:54, 00:41](525 MB) -PASS -- TEST 'control_p8_intel' [12:54, 01:52](1766 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:54, 01:52](1771 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:54, 01:53](1777 MB) -PASS -- TEST 'control_restart_p8_intel' [07:24, 00:55](920 MB) -PASS -- TEST 'control_noqr_p8_intel' [12:21, 01:27](1763 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:17, 00:47](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [12:19, 01:24](1767 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:55, 01:39](1851 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:40, 00:58](1764 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:38, 01:51](1824 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:26, 01:39](1777 MB) -PASS -- TEST 'merra2_thompson_intel' [09:24, 01:36](1775 MB) -PASS -- TEST 'regional_control_intel' [09:21, 01:08](839 MB) -PASS -- TEST 'regional_restart_intel' [02:41, 00:54](854 MB) -PASS -- TEST 'regional_decomp_intel' [09:17, 00:52](849 MB) -PASS -- TEST 'regional_2threads_intel' [09:09, 00:42](914 MB) -PASS -- TEST 'regional_noquilt_intel' [09:05, 00:21](1176 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:03, 00:19](850 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:58, 01:05](851 MB) -PASS -- TEST 'regional_wofs_intel' [08:23, 00:39](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [34:52, 34:36] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [57:37, 00:58](913 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [57:38, 01:21](1099 MB) -PASS -- TEST 'rap_decomp_intel' [57:23, 01:35](911 MB) -PASS -- TEST 'rap_2threads_intel' [56:25, 01:08](999 MB) -PASS -- TEST 'rap_restart_intel' [46:36, 01:16](783 MB) -PASS -- TEST 'rap_sfcdiff_intel' [56:23, 01:19](910 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [55:55, 00:56](913 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [46:02, 01:26](783 MB) -PASS -- TEST 'hrrr_control_intel' [55:55, 01:15](906 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [55:52, 01:41](907 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [55:42, 01:39](986 MB) -PASS -- TEST 'hrrr_control_restart_intel' [49:32, 00:43](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [55:36, 01:13](905 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [55:32, 01:03](1874 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [55:27, 01:10](1859 MB) - -PASS -- COMPILE 'csawmg_intel' [19:35, 19:10] -PASS -- TEST 'control_csawmg_intel' [07:26, 00:25](874 MB) -PASS -- TEST 'control_ras_intel' [07:25, 00:48](561 MB) - -PASS -- COMPILE 'wam_intel' [15:29, 14:15] -PASS -- TEST 'control_wam_intel' [07:18, 00:54](269 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [29:46, 29:25] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [55:27, 02:00](1764 MB) -PASS -- TEST 'regional_control_faster_intel' [55:14, 00:41](847 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:30, 14:51] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:54, 01:18](1491 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:10, 01:26](1492 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:37, 00:54](690 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:19, 00:16](694 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:10, 00:51](1005 MB) -PASS -- TEST 'control_ras_debug_intel' [04:58, 01:12](704 MB) -PASS -- TEST 'control_diag_debug_intel' [04:50, 00:21](1550 MB) -PASS -- TEST 'control_debug_p8_intel' [04:29, 01:11](1788 MB) -PASS -- TEST 'regional_debug_intel' [04:02, 00:11](882 MB) -PASS -- TEST 'rap_control_debug_intel' [04:03, 01:14](1075 MB) -PASS -- TEST 'hrrr_control_debug_intel' [03:55, 00:23](1069 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [03:53, 00:21](1073 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [03:25, 00:42](1072 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [03:25, 00:36](1077 MB) -PASS -- TEST 'rap_diag_debug_intel' [03:16, 00:38](1166 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [02:59, 00:48](1076 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [02:40, 01:05](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [02:21, 00:26](1079 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [02:13, 00:40](1077 MB) -PASS -- TEST 'rap_noah_debug_intel' [01:45, 01:00](1073 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [01:31, 00:54](1075 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [01:24, 01:08](1074 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [00:46, 00:57](1073 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [00:44, 00:42](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [00:35, 01:00](1077 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [00:26, 02:03](1085 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:21, 06:30] ( 842 warnings ) -PASS -- TEST 'control_wam_debug_intel' [15:56, 01:00](305 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:40, 22:56] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [54:36, 00:44](958 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [54:16, 01:40](793 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [53:57, 02:11](791 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:30, 01:32](852 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [53:31, 01:13](844 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:13, 00:54](791 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:52, 01:07](690 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [46:11, 00:40](674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [38:58, 38:08] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [39:16, 00:33](1008 MB) -PASS -- TEST 'conus13km_2threads_intel' [35:26, 01:15](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [35:25, 01:07](882 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:41, 20:16] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [55:13, 01:19](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 06:04] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [00:06, 01:02](955 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [00:05, 01:07](953 MB) -PASS -- TEST 'conus13km_debug_intel' [59:44, 00:48](1045 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [58:59, 01:00](719 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [58:35, 00:46](1044 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:20, 00:47](1111 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 04:20] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:05, 01:17](982 MB) - -PASS -- COMPILE 'hafsw_intel' [15:31, 15:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [50:55, 01:20](616 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [48:59, 00:46](969 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [48:53, 02:09](664 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [48:52, 01:53](698 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:48, 01:34](716 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:30, 01:28](394 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:27, 01:35](406 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [48:27, 00:53](283 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [48:28, 01:54](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [47:06, 01:07](425 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [46:27, 00:55](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [46:19, 01:13](493 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [46:13, 00:39](315 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:29, 11:54] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [55:11, 00:53](515 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [30:56, 30:13] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:10, 00:49](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:10, 01:37](714 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:33, 14:08] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [46:12, 01:17](714 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:34, 16:19] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [45:57, 02:12](658 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [45:42, 02:04](643 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [45:07, 00:48](897 MB) - -PASS -- COMPILE 'atml_intel' [22:38, 19:55] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [34:59, 01:56](1800 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [34:59, 01:54](1801 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [27:22, 01:16](947 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:23, 08:19] ( 868 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [44:57, 01:48](1814 MB) - -PASS -- COMPILE 'atmaero_intel' [10:24, 09:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [44:51, 01:44](3028 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [44:07, 01:30](2913 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [43:33, 01:10](2923 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [15:30, 13:54] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [39:45, 00:56](4440 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:57, 01:22](3097 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:39, 23:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:44, 01:48](1822 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [58:52, 01:36](1846 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [58:19, 02:15](985 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:45, 02:19](1805 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:39, 23:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:43, 01:07](1821 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:34, 17:28] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:50, 01:38](1839 MB) + +PASS -- COMPILE 's2swa_intel' [11:25, 11:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [29:58, 01:25](3134 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [29:58, 01:43](3131 MB) +PASS -- TEST 'cpld_restart_p8_intel' [21:31, 01:45](3069 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [29:58, 01:23](3153 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [21:30, 01:38](3083 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [29:58, 00:59](3366 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [29:58, 01:20](3127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [29:59, 01:30](3076 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:58, 01:46](3132 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:07, 03:50](4111 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:25, 04:02](4254 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [29:58, 01:47](3112 MB) + +PASS -- COMPILE 's2sw_intel' [22:38, 22:20] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:44, 01:32](1832 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:44, 01:46](1892 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [30:50, 29:58] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:34, 01:57](1893 MB) + +PASS -- COMPILE 's2s_intel' [12:26, 11:19] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [28:56, 01:33](2909 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [28:56, 01:16](2912 MB) +PASS -- TEST 'cpld_restart_c48_intel' [24:53, 00:59](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:34, 18:33] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:50, 01:49](3133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:28, 11:18] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:55, 00:55](1831 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:31, 01:32](1002 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:32, 01:39](1800 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [24:39, 23:32] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [03:09, 00:57](1852 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [31:49, 30:53] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [56:48, 00:20](574 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [55:46, 00:25](1475 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [55:17, 01:21](1477 MB) +PASS -- TEST 'control_latlon_intel' [55:08, 00:21](1470 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [55:07, 00:29](1475 MB) +PASS -- TEST 'control_c48_intel' [55:02, 00:46](1595 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [54:55, 00:57](717 MB) +PASS -- TEST 'control_c192_intel' [54:55, 01:34](1591 MB) +PASS -- TEST 'control_c384_intel' [54:34, 02:27](1906 MB) +PASS -- TEST 'control_c384gdas_intel' [54:34, 01:47](1091 MB) +PASS -- TEST 'control_stochy_intel' [54:30, 00:23](534 MB) +PASS -- TEST 'control_stochy_restart_intel' [52:05, 01:03](336 MB) +PASS -- TEST 'control_lndp_intel' [54:07, 00:26](529 MB) +PASS -- TEST 'control_iovr4_intel' [54:05, 00:40](528 MB) +PASS -- TEST 'control_iovr5_intel' [53:44, 00:42](526 MB) +PASS -- TEST 'control_p8_intel' [53:34, 01:52](1769 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [53:22, 01:52](1769 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [52:17, 01:56](1770 MB) +PASS -- TEST 'control_restart_p8_intel' [48:13, 01:52](913 MB) +PASS -- TEST 'control_noqr_p8_intel' [52:05, 01:33](1762 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [47:05, 00:42](924 MB) +PASS -- TEST 'control_decomp_p8_intel' [52:01, 01:18](1762 MB) +PASS -- TEST 'control_2threads_p8_intel' [51:39, 00:41](1861 MB) +PASS -- TEST 'control_p8_lndp_intel' [51:29, 01:01](1777 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [51:18, 01:54](1833 MB) +PASS -- TEST 'control_p8_mynn_intel' [51:14, 01:48](1779 MB) +PASS -- TEST 'merra2_thompson_intel' [51:10, 01:48](1775 MB) +PASS -- TEST 'regional_control_intel' [50:55, 01:09](856 MB) +PASS -- TEST 'regional_restart_intel' [44:15, 00:20](853 MB) +PASS -- TEST 'regional_decomp_intel' [50:34, 00:48](858 MB) +PASS -- TEST 'regional_2threads_intel' [50:33, 00:45](910 MB) +PASS -- TEST 'regional_noquilt_intel' [50:32, 00:21](1174 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [50:31, 00:20](851 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [50:15, 01:11](845 MB) +PASS -- TEST 'regional_wofs_intel' [49:59, 00:43](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [28:44, 27:46] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [59:43, 01:44](918 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [59:44, 01:08](1096 MB) +PASS -- TEST 'rap_decomp_intel' [59:42, 01:29](917 MB) +PASS -- TEST 'rap_2threads_intel' [59:42, 01:44](1001 MB) +PASS -- TEST 'rap_restart_intel' [49:58, 01:17](789 MB) +PASS -- TEST 'rap_sfcdiff_intel' [59:42, 02:18](913 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [59:42, 02:03](916 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [49:58, 01:51](785 MB) +PASS -- TEST 'hrrr_control_intel' [59:42, 01:05](910 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [59:40, 01:04](913 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [59:40, 01:29](994 MB) +PASS -- TEST 'hrrr_control_restart_intel' [49:50, 01:03](746 MB) +PASS -- TEST 'rrfs_v1beta_intel' [59:39, 01:10](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [59:34, 00:54](1877 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [49:39, 01:08](1861 MB) + +PASS -- COMPILE 'csawmg_intel' [22:38, 21:59] +PASS -- TEST 'control_csawmg_intel' [06:16, 00:41](872 MB) +PASS -- TEST 'control_ras_intel' [06:16, 00:54](561 MB) + +PASS -- COMPILE 'wam_intel' [11:26, 10:52] +PASS -- TEST 'control_wam_intel' [11:23, 00:53](270 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [31:46, 30:53] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [48:08, 01:58](1772 MB) +PASS -- TEST 'regional_control_faster_intel' [48:01, 00:15](849 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:27, 11:32] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:16, 01:17](1488 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:16, 01:25](1489 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:16, 00:50](691 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:16, 01:09](689 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:16, 00:37](1000 MB) +PASS -- TEST 'control_ras_debug_intel' [06:16, 01:07](702 MB) +PASS -- TEST 'control_diag_debug_intel' [06:16, 01:12](1553 MB) +PASS -- TEST 'control_debug_p8_intel' [06:16, 00:56](1789 MB) +PASS -- TEST 'regional_debug_intel' [06:15, 00:52](881 MB) +PASS -- TEST 'rap_control_debug_intel' [06:16, 00:50](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:16, 01:00](1072 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:16, 00:52](1074 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:16, 00:51](1077 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 00:52](1075 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:16, 00:46](1157 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:16, 00:46](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 00:46](1077 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:16, 00:48](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:16, 00:52](1071 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:16, 00:57](1070 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [01:44, 00:56](1073 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [01:44, 00:47](1070 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [01:44, 01:00](1071 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [01:43, 01:05](1082 MB) +PASS -- TEST 'rap_flake_debug_intel' [01:33, 00:52](1078 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [01:29, 02:14](1079 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:26, 11:40] ( 842 warnings ) +PASS -- TEST 'control_wam_debug_intel' [01:28, 01:00](304 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 10:44] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:23, 01:20](954 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:09, 01:16](789 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [00:48, 02:17](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [00:23, 01:23](858 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [47:44, 02:25](845 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:21, 01:38](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [47:02, 01:26](689 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:01, 01:15](669 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:49, 26:54] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [43:25, 00:56](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [39:35, 00:51](1011 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [39:34, 00:42](883 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:37, 16:09] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:01, 01:17](809 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:25, 09:59] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [46:56, 00:58](947 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [46:16, 01:07](946 MB) +PASS -- TEST 'conus13km_debug_intel' [45:56, 01:24](1043 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [45:53, 01:14](713 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [45:34, 00:26](1046 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:54, 00:57](1111 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:26, 10:18] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:54, 00:46](982 MB) + +PASS -- COMPILE 'hafsw_intel' [18:39, 18:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [44:50, 01:59](615 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [44:50, 00:48](969 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [44:32, 01:48](660 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [43:58, 01:29](697 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:58, 02:10](712 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [43:57, 01:00](393 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [43:37, 02:12](407 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [43:16, 01:26](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [42:53, 02:23](375 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [42:44, 01:35](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [42:22, 00:51](415 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [42:24, 00:48](489 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [42:15, 00:29](312 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:37, 14:20] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:03, 01:32](503 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:47, 23:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [40:32, 00:48](535 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [40:29, 01:47](710 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:39, 15:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [42:03, 00:50](715 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:38, 16:59] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [39:30, 01:20](657 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:30, 01:17](648 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:17, 00:25](880 MB) + +PASS -- COMPILE 'atml_intel' [15:37, 15:12] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [17:36, 16:44] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:24, 10:01] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [41:15, 01:21](3028 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [40:36, 01:48](2907 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [40:34, 01:47](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:23, 09:24] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [39:40, 01:40](4439 MB) SYNOPSIS: -Starting Date/Time: 20240528 14:13:31 -Ending Date/Time: 20240528 15:46:38 -Total Time: 01h:33m:47s +Starting Date/Time: 20240531 01:18:02 +Ending Date/Time: 20240531 02:46:47 +Total Time: 01h:29m:27s Compiles Completed: 32/32 -Tests Completed: 159/159 +Tests Completed: 155/155 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/rt.conf b/tests/rt.conf index eda2ad0f6f..dbd84e0cb1 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -22,251 +22,251 @@ ### Intel Tests ### ### S2S tests ### COMPILE | s2swa_32bit | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | -RUN | cpld_control_p8_mixedmode | - noaacloud | baseline | +RUN | cpld_control_p8_mixedmode | - noaacloud | baseline | #GFS COMPILE | s2swa_32bit_pdlib | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | -RUN | cpld_control_gfsv17 | - noaacloud | baseline | -RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17 -RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 -RUN | cpld_mpi_gfsv17 | - noaacloud | | +RUN | cpld_control_gfsv17 | - noaacloud | baseline | +RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17 +RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 +RUN | cpld_mpi_gfsv17 | - noaacloud | | #SFS COMPILE | s2swa_32bit_pdlib_sfs | intel | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | -RUN | cpld_control_sfs | - noaacloud | baseline | +RUN | cpld_control_sfs | - noaacloud | baseline | COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | -RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | +RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_p8 | - noaacloud | baseline | -RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | -RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 -RUN | cpld_control_qr_p8 | - noaacloud | | -RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 -RUN | cpld_2threads_p8 | - noaacloud | | -RUN | cpld_decomp_p8 | - noaacloud | | -RUN | cpld_mpi_p8 | - noaacloud | | -RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | -RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline | -RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8 -RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | -RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 +RUN | cpld_control_p8 | - noaacloud | baseline | +RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | +RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 +RUN | cpld_control_qr_p8 | - noaacloud | | +RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 +RUN | cpld_2threads_p8 | - noaacloud | | +RUN | cpld_decomp_p8 | - noaacloud | | +RUN | cpld_mpi_p8 | - noaacloud | | +RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | +RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline | +RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8 +RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | +RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 # Aerosol, no Wave -RUN | cpld_s2sa_p8 | - noaacloud | baseline | +RUN | cpld_s2sa_p8 | - noaacloud | baseline | COMPILE | s2sw | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_noaero_p8 | | baseline | -RUN | cpld_control_nowave_noaero_p8 | - noaacloud | baseline | +RUN | cpld_control_noaero_p8 | | baseline | +RUN | cpld_control_nowave_noaero_p8 | - noaacloud | baseline | COMPILE | s2swa_debug | intel | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | -RUN | cpld_debug_p8 | - wcoss2 acorn noaacloud | baseline | +RUN | cpld_debug_p8 | - wcoss2 acorn noaacloud | baseline | COMPILE | s2sw_debug | intel | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | -RUN | cpld_debug_noaero_p8 | - wcoss2 acorn noaacloud | baseline | +RUN | cpld_debug_noaero_p8 | - wcoss2 acorn noaacloud | baseline | # Waves and aerosol off for computing fluxes in mediator COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | -RUN | cpld_control_noaero_p8_agrid | | baseline | +RUN | cpld_control_noaero_p8_agrid | | baseline | COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_c48 | | baseline | -RUN | cpld_warmstart_c48 | - noaacloud | baseline | -RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 +RUN | cpld_control_c48 | | baseline | +RUN | cpld_warmstart_c48 | - noaacloud | baseline | +RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 | -RUN | cpld_control_p8_faster | - noaacloud | baseline | +RUN | cpld_control_p8_faster | - noaacloud | baseline | # Unstructured WW3 mesh COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 | -RUN | cpld_control_pdlib_p8 | - noaacloud | baseline | -RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 -RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 +RUN | cpld_control_pdlib_p8 | - noaacloud | baseline | +RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 +RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 COMPILE | s2sw_pdlib_debug | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | +RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | ### ATM tests ### COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | -RUN | control_flake | | baseline | -RUN | control_CubedSphereGrid | | baseline | -RUN | control_CubedSphereGrid_parallel | - noaacloud | baseline | -RUN | control_latlon | | baseline | -RUN | control_wrtGauss_netcdf_parallel | | baseline | -RUN | control_c48 | | baseline | -RUN | control_c48.v2.sfc | | baseline | -RUN | control_c192 | - noaacloud | baseline | -RUN | control_c384 | | baseline | -RUN | control_c384gdas | - noaacloud | baseline | -RUN | control_stochy | | baseline | -RUN | control_stochy_restart | - noaacloud | | control_stochy -RUN | control_lndp | | baseline | -RUN | control_iovr4 | | baseline | -RUN | control_iovr5 | | baseline | -RUN | control_p8 | - noaacloud | baseline | -RUN | control_p8.v2.sfc | - noaacloud | baseline | -RUN | control_p8_ugwpv1 | - noaacloud | baseline | -RUN | control_restart_p8 | - noaacloud | | control_p8 -RUN | control_noqr_p8 | - noaacloud | | -RUN | control_restart_noqr_p8 | - noaacloud | | control_noqr_p8 -RUN | control_decomp_p8 | - noaacloud | | -RUN | control_2threads_p8 | - noaacloud | | -RUN | control_p8_lndp | | baseline | -RUN | control_p8_rrtmgp | - noaacloud | baseline | -RUN | control_p8_mynn | - noaacloud | baseline | -RUN | merra2_thompson | - noaacloud | baseline | -RUN | regional_control | | baseline | -RUN | regional_restart | - noaacloud | | regional_control -RUN | regional_decomp | - noaacloud | | -RUN | regional_2threads | - derecho noaacloud | | -RUN | regional_noquilt | - jet s4 | baseline | -RUN | regional_netcdf_parallel | - acorn | baseline | -RUN | regional_2dwrtdecomp | | | -RUN | regional_wofs | - jet s4 | baseline | +RUN | control_flake | | baseline | +RUN | control_CubedSphereGrid | | baseline | +RUN | control_CubedSphereGrid_parallel | - noaacloud | baseline | +RUN | control_latlon | | baseline | +RUN | control_wrtGauss_netcdf_parallel | | baseline | +RUN | control_c48 | | baseline | +RUN | control_c48.v2.sfc | | baseline | +RUN | control_c192 | - noaacloud | baseline | +RUN | control_c384 | | baseline | +RUN | control_c384gdas | - noaacloud | baseline | +RUN | control_stochy | | baseline | +RUN | control_stochy_restart | - noaacloud | | control_stochy +RUN | control_lndp | | baseline | +RUN | control_iovr4 | | baseline | +RUN | control_iovr5 | | baseline | +RUN | control_p8 | - noaacloud | baseline | +RUN | control_p8.v2.sfc | - noaacloud | baseline | +RUN | control_p8_ugwpv1 | - noaacloud | baseline | +RUN | control_restart_p8 | - noaacloud | | control_p8 +RUN | control_noqr_p8 | - noaacloud | | +RUN | control_restart_noqr_p8 | - noaacloud | | control_noqr_p8 +RUN | control_decomp_p8 | - noaacloud | | +RUN | control_2threads_p8 | - noaacloud | | +RUN | control_p8_lndp | | baseline | +RUN | control_p8_rrtmgp | - noaacloud | baseline | +RUN | control_p8_mynn | - noaacloud | baseline | +RUN | merra2_thompson | - noaacloud | baseline | +RUN | regional_control | | baseline | +RUN | regional_restart | - noaacloud | | regional_control +RUN | regional_decomp | - noaacloud | | +RUN | regional_2threads | - derecho noaacloud | | +RUN | regional_noquilt | - jet s4 | baseline | +RUN | regional_netcdf_parallel | - acorn | baseline | +RUN | regional_2dwrtdecomp | | | +RUN | regional_wofs | - jet s4 | baseline | COMPILE | ifi | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON | + acorn | fv3 | -RUN | regional_ifi_control | + acorn | baseline | -RUN | regional_ifi_decomp | + acorn | | -RUN | regional_ifi_2threads | + acorn | | +RUN | regional_ifi_control | + acorn | baseline | +RUN | regional_ifi_decomp | + acorn | | +RUN | regional_ifi_2threads | + acorn | | COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | -RUN | rap_control | | baseline | -RUN | regional_spp_sppt_shum_skeb | | baseline | -RUN | rap_decomp | - noaacloud | | -RUN | rap_2threads | - noaacloud | | -RUN | rap_restart | - noaacloud | | rap_control -RUN | rap_sfcdiff | - noaacloud | baseline | -RUN | rap_sfcdiff_decomp | - noaacloud | | -RUN | rap_sfcdiff_restart | - noaacloud | | rap_sfcdiff -RUN | hrrr_control | - noaacloud | baseline | -RUN | hrrr_control_decomp | - noaacloud | | -RUN | hrrr_control_2threads | - noaacloud | | -RUN | hrrr_control_restart | - noaacloud | | hrrr_control -RUN | rrfs_v1beta | | baseline | -RUN | rrfs_v1nssl | | baseline | -RUN | rrfs_v1nssl_nohailnoccn | | baseline | +RUN | rap_control | | baseline | +RUN | regional_spp_sppt_shum_skeb | | baseline | +RUN | rap_decomp | - noaacloud | | +RUN | rap_2threads | - noaacloud | | +RUN | rap_restart | - noaacloud | | rap_control +RUN | rap_sfcdiff | - noaacloud | baseline | +RUN | rap_sfcdiff_decomp | - noaacloud | | +RUN | rap_sfcdiff_restart | - noaacloud | | rap_sfcdiff +RUN | hrrr_control | - noaacloud | baseline | +RUN | hrrr_control_decomp | - noaacloud | | +RUN | hrrr_control_2threads | - noaacloud | | +RUN | hrrr_control_restart | - noaacloud | | hrrr_control +RUN | rrfs_v1beta | | baseline | +RUN | rrfs_v1nssl | | baseline | +RUN | rrfs_v1nssl_nohailnoccn | | baseline | COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | -RUN | control_csawmg | - noaacloud | baseline | -RUN | control_ras | - noaacloud acorn | baseline | +RUN | control_csawmg | - noaacloud | baseline | +RUN | control_ras | - noaacloud acorn | baseline | COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | + hera hercules | fv3 | -RUN | control_csawmg | + hera hercules | baseline | +RUN | control_csawmg | + hera hercules | baseline | # Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 | -RUN | control_wam | - noaacloud | baseline | +RUN | control_wam | - noaacloud | baseline | COMPILE | atm_faster_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON | | fv3 | -RUN | control_p8_faster | - noaacloud | baseline | -RUN | regional_control_faster | | baseline | +RUN | control_p8_faster | - noaacloud | baseline | +RUN | regional_control_faster | | baseline | ### DEBUG ATM tests ### COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | - noaacloud | fv3 | -RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | -RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | -RUN | control_stochy_debug | - noaacloud | baseline | -RUN | control_lndp_debug | - noaacloud | baseline | -RUN | control_csawmg_debug | - noaacloud | baseline | -RUN | control_ras_debug | - noaacloud | baseline | -RUN | control_diag_debug | - noaacloud | baseline | -RUN | control_debug_p8 | - noaacloud | baseline | -RUN | regional_debug | - noaacloud | baseline | -RUN | rap_control_debug | - noaacloud | baseline | -RUN | hrrr_control_debug | - noaacloud | baseline | -RUN | hrrr_gf_debug | - noaacloud | baseline | -RUN | hrrr_c3_debug | - noaacloud | baseline | -RUN | rap_unified_drag_suite_debug | - noaacloud | | -RUN | rap_diag_debug | - noaacloud | baseline | -RUN | rap_cires_ugwp_debug | - noaacloud | baseline | -RUN | rap_unified_ugwp_debug | - noaacloud | | -RUN | rap_lndp_debug | - noaacloud | baseline | -RUN | rap_progcld_thompson_debug | - noaacloud | baseline | -RUN | rap_noah_debug | - noaacloud | baseline | -RUN | rap_sfcdiff_debug | - noaacloud | baseline | -RUN | rap_noah_sfcdiff_cires_ugwp_debug | - noaacloud | baseline | -RUN | rrfs_v1beta_debug | - noaacloud | baseline | -RUN | rap_clm_lake_debug | - noaacloud | baseline | -RUN | rap_flake_debug | - noaacloud | baseline | -RUN | gnv1_c96_no_nest_debug | - noaacloud | baseline | +RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | +RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | +RUN | control_stochy_debug | - noaacloud | baseline | +RUN | control_lndp_debug | - noaacloud | baseline | +RUN | control_csawmg_debug | - noaacloud | baseline | +RUN | control_ras_debug | - noaacloud | baseline | +RUN | control_diag_debug | - noaacloud | baseline | +RUN | control_debug_p8 | - noaacloud | baseline | +RUN | regional_debug | - noaacloud | baseline | +RUN | rap_control_debug | - noaacloud | baseline | +RUN | hrrr_control_debug | - noaacloud | baseline | +RUN | hrrr_gf_debug | - noaacloud | baseline | +RUN | hrrr_c3_debug | - noaacloud | baseline | +RUN | rap_unified_drag_suite_debug | - noaacloud | | +RUN | rap_diag_debug | - noaacloud | baseline | +RUN | rap_cires_ugwp_debug | - noaacloud | baseline | +RUN | rap_unified_ugwp_debug | - noaacloud | | +RUN | rap_lndp_debug | - noaacloud | baseline | +RUN | rap_progcld_thompson_debug | - noaacloud | baseline | +RUN | rap_noah_debug | - noaacloud | baseline | +RUN | rap_sfcdiff_debug | - noaacloud | baseline | +RUN | rap_noah_sfcdiff_cires_ugwp_debug | - noaacloud | baseline | +RUN | rrfs_v1beta_debug | - noaacloud | baseline | +RUN | rap_clm_lake_debug | - noaacloud | baseline | +RUN | rap_flake_debug | - noaacloud | baseline | +RUN | gnv1_c96_no_nest_debug | - noaacloud | baseline | ### DEBUG ATM tests ### COMPILE | atm_debug_dyn32 | gnu | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | + hera hercules | fv3 | -RUN | control_csawmg_debug | + hera hercules | baseline | +RUN | control_csawmg_debug | + hera hercules | baseline | COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | control_wam_debug | - noaacloud hercules | baseline | +RUN | control_wam_debug | - noaacloud hercules | baseline | ### 32-bit physics tests ### COMPILE | rrfs_dyn32_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | -RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | - noaacloud | baseline | -RUN | rap_control_dyn32_phy32 | - noaacloud | baseline | -RUN | hrrr_control_dyn32_phy32 | - noaacloud | baseline | -RUN | rap_2threads_dyn32_phy32 | - noaacloud | | -RUN | hrrr_control_2threads_dyn32_phy32 | - noaacloud | | -RUN | hrrr_control_decomp_dyn32_phy32 | - noaacloud | | -RUN | rap_restart_dyn32_phy32 | - noaacloud | | rap_control_dyn32_phy32 -RUN | hrrr_control_restart_dyn32_phy32 | - noaacloud | | hrrr_control_dyn32_phy32 +RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | - noaacloud | baseline | +RUN | rap_control_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_dyn32_phy32 | - noaacloud | baseline | +RUN | rap_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_decomp_dyn32_phy32 | - noaacloud | | +RUN | rap_restart_dyn32_phy32 | - noaacloud | | rap_control_dyn32_phy32 +RUN | hrrr_control_restart_dyn32_phy32 | - noaacloud | | hrrr_control_dyn32_phy32 COMPILE | rrfs_dyn32_phy32_faster | intel | -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | -RUN | conus13km_control | - noaacloud | baseline | -RUN | conus13km_2threads | - noaacloud | | conus13km_control -RUN | conus13km_restart_mismatch | - noaacloud | baseline | conus13km_control +RUN | conus13km_control | - noaacloud | baseline | +RUN | conus13km_2threads | - noaacloud | | conus13km_control +RUN | conus13km_restart_mismatch | - noaacloud | baseline | conus13km_control # Expected to fail: -# RUN | conus13km_restart | - noaacloud | | conus13km_control -# RUN | conus13km_decomp | - noaacloud | | conus13km_control +# RUN | conus13km_restart | - noaacloud | | conus13km_control +# RUN | conus13km_decomp | - noaacloud | | conus13km_control COMPILE | rrfs_dyn64_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | - noaacloud | fv3 | -RUN | rap_control_dyn64_phy32 | - noaacloud | baseline | +RUN | rap_control_dyn64_phy32 | - noaacloud | baseline | COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | -RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | -RUN | conus13km_debug | - noaacloud | baseline | -RUN | conus13km_debug_qr | - noaacloud | | -RUN | conus13km_debug_2threads | - noaacloud | | -RUN | conus13km_radar_tten_debug | - noaacloud | baseline | +RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | conus13km_debug | - noaacloud | baseline | +RUN | conus13km_debug_qr | - noaacloud | | +RUN | conus13km_debug_2threads | - noaacloud | | +RUN | conus13km_radar_tten_debug | - noaacloud | baseline | # Expected to fail: -# RUN | conus13km_debug_decomp | - noaacloud | | +# RUN | conus13km_debug_decomp | - noaacloud | | COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | +RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | ### HAFS tests ### COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON | | fv3 | -RUN | hafs_regional_atm | | baseline | -RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | -RUN | hafs_regional_atm_ocn | | baseline | -RUN | hafs_regional_atm_wav | | baseline | -RUN | hafs_regional_atm_ocn_wav | - noaacloud | baseline | -RUN | hafs_regional_1nest_atm | - jet s4 noaacloud | baseline | -RUN | hafs_regional_telescopic_2nests_atm | - jet s4 noaacloud | baseline | -RUN | hafs_global_1nest_atm | - jet s4 noaacloud | baseline | -RUN | hafs_global_multiple_4nests_atm | - jet s4 noaacloud | baseline | -RUN | hafs_regional_specified_moving_1nest_atm | - jet s4 noaacloud | baseline | -RUN | hafs_regional_storm_following_1nest_atm | - jet s4 noaacloud | baseline | -RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 noaacloud | baseline | -RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_atm | | baseline | +RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | +RUN | hafs_regional_atm_ocn | | baseline | +RUN | hafs_regional_atm_wav | | baseline | +RUN | hafs_regional_atm_ocn_wav | - noaacloud | baseline | +RUN | hafs_regional_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_telescopic_2nests_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_multiple_4nests_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_specified_moving_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 noaacloud | baseline | +RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud | baseline | # This probably works on S4, but I cannot know for certain. I don't have access to the machine. -RUN | gnv1_nested | - hercules wcoss2 s4 noaacloud | baseline | +RUN | gnv1_nested | - hercules wcoss2 s4 noaacloud | baseline | COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON | -jet noaacloud s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet s4 noaacloud | baseline | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_inline | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_inline | - jet s4 noaacloud | baseline | COMPILE | hafs_mom6w | intel| -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON | -jet noaacloud s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | - jet s4 noaacloud | baseline | COMPILE | hafs_all | intel | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - noaacloud | fv3 | -RUN | hafs_regional_docn | - noaacloud | baseline | -RUN | hafs_regional_docn_oisst | - noaacloud | baseline | -RUN | hafs_regional_datm_cdeps | - jet s4 noaacloud | baseline | +RUN | hafs_regional_docn | - noaacloud | baseline | +RUN | hafs_regional_docn_oisst | - noaacloud | baseline | +RUN | hafs_regional_datm_cdeps | - jet s4 noaacloud | baseline | ### CDEPS Data Atmosphere tests ### COMPILE | datm_cdeps | intel | -DAPP=NG-GODAS | - wcoss2 | fv3 | @@ -298,12 +298,12 @@ RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud ### ATM-LND tests ### COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 | -RUN | control_p8_atmlnd_sbs | - noaacloud | baseline | -RUN | control_p8_atmlnd | - noaacloud | baseline | -RUN | control_restart_p8_atmlnd | - noaacloud | | control_p8_atmlnd +RUN | control_p8_atmlnd_sbs | - noaacloud wcoss2 | baseline | +RUN | control_p8_atmlnd | - noaacloud wcoss2 | baseline | +RUN | control_restart_p8_atmlnd | - noaacloud wcoss2 | | control_p8_atmlnd COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON | | fv3 | -RUN | control_p8_atmlnd_debug | - noaacloud | baseline | +RUN | control_p8_atmlnd_debug | - noaacloud wcoss2 | baseline | ### ATM-WAV tests ### #mediator (cmeps) @@ -321,110 +321,110 @@ RUN | atmaero_control_p8_rad_micro | - noaacloud #RUN | regional_atmaq | - jet s4 | baseline | COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 | -RUN | regional_atmaq_debug | - jet s4 noaacloud | baseline | +RUN | regional_atmaq_debug | - jet s4 noaacloud | baseline | ### GNU TESTS ### ### CCPP PROD tests ### COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 | + hera hercules | fv3 | -RUN | control_c48 | + hera hercules | baseline | -RUN | control_stochy | + hera hercules | baseline | -RUN | control_ras | + hera hercules | baseline | -RUN | control_p8 | + hera hercules | baseline | -RUN | control_p8_ugwpv1 | + hera hercules | baseline | -RUN | control_flake | + hera hercules | baseline | +RUN | control_c48 | + hera hercules | baseline | +RUN | control_stochy | + hera hercules | baseline | +RUN | control_ras | + hera hercules | baseline | +RUN | control_p8 | + hera hercules | baseline | +RUN | control_p8_ugwpv1 | + hera hercules | baseline | +RUN | control_flake | + hera hercules | baseline | COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | + hera hercules | fv3 | -RUN | rap_control | + hera hercules | baseline | -RUN | rap_decomp | + hera hercules | | -RUN | rap_2threads | + hera hercules | | -RUN | rap_restart | + hera hercules | | rap_control -RUN | rap_sfcdiff | + hera hercules | baseline | -RUN | rap_sfcdiff_decomp | + hera hercules | | -RUN | rap_sfcdiff_restart | + hera hercules | | rap_sfcdiff -RUN | hrrr_control | + hera hercules | baseline | -RUN | hrrr_control_noqr | + hera hercules | | -RUN | hrrr_control_2threads | + hera hercules | | -RUN | hrrr_control_decomp | + hera hercules | | -RUN | hrrr_control_restart | + hera hercules | | hrrr_control -RUN | hrrr_control_restart_noqr | + hera hercules | | hrrr_control_noqr -RUN | rrfs_v1beta | + hera hercules | baseline | +RUN | rap_control | + hera hercules | baseline | +RUN | rap_decomp | + hera hercules | | +RUN | rap_2threads | + hera hercules | | +RUN | rap_restart | + hera hercules | | rap_control +RUN | rap_sfcdiff | + hera hercules | baseline | +RUN | rap_sfcdiff_decomp | + hera hercules | | +RUN | rap_sfcdiff_restart | + hera hercules | | rap_sfcdiff +RUN | hrrr_control | + hera hercules | baseline | +RUN | hrrr_control_noqr | + hera hercules | | +RUN | hrrr_control_2threads | + hera hercules | | +RUN | hrrr_control_decomp | + hera hercules | | +RUN | hrrr_control_restart | + hera hercules | | hrrr_control +RUN | hrrr_control_restart_noqr | + hera hercules | | hrrr_control_noqr +RUN | rrfs_v1beta | + hera hercules | baseline | ### CCPP DEBUG tests ### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) COMPILE | atm_dyn32_debug | gnu | -DAPP=ATM -D32BIT=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | control_diag_debug | + hera hercules | baseline | -RUN | regional_debug | + hera hercules | baseline | -RUN | rap_control_debug | + hera hercules | baseline | -RUN | hrrr_control_debug | + hera hercules | baseline | -RUN | hrrr_gf_debug | + hera hercules | baseline | -RUN | hrrr_c3_debug | + hera hercules | baseline | -RUN | rap_diag_debug | + hera hercules | baseline | -RUN | rap_noah_sfcdiff_cires_ugwp_debug | + hera hercules | baseline | -RUN | rap_progcld_thompson_debug | + hera hercules | baseline | -RUN | rrfs_v1beta_debug | + hera hercules | baseline | -RUN | control_ras_debug | + hera hercules | baseline | -RUN | control_stochy_debug | + hera hercules | baseline | -RUN | control_debug_p8 | + hera hercules | baseline | -RUN | rap_flake_debug | + hera hercules | baseline | -RUN | rap_clm_lake_debug | + hera hercules | baseline | -RUN | gnv1_c96_no_nest_debug | + hera hercules | baseline | +RUN | control_diag_debug | + hera hercules | baseline | +RUN | regional_debug | + hera hercules | baseline | +RUN | rap_control_debug | + hera hercules | baseline | +RUN | hrrr_control_debug | + hera hercules | baseline | +RUN | hrrr_gf_debug | + hera hercules | baseline | +RUN | hrrr_c3_debug | + hera hercules | baseline | +RUN | rap_diag_debug | + hera hercules | baseline | +RUN | rap_noah_sfcdiff_cires_ugwp_debug | + hera hercules | baseline | +RUN | rap_progcld_thompson_debug | + hera hercules | baseline | +RUN | rrfs_v1beta_debug | + hera hercules | baseline | +RUN | control_ras_debug | + hera hercules | baseline | +RUN | control_stochy_debug | + hera hercules | baseline | +RUN | control_debug_p8 | + hera hercules | baseline | +RUN | rap_flake_debug | + hera hercules | baseline | +RUN | rap_clm_lake_debug | + hera hercules | baseline | +RUN | gnv1_c96_no_nest_debug | + hera hercules | baseline | COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | control_wam_debug | + hercules | baseline | +RUN | control_wam_debug | + hercules | baseline | ### 32-bit physics tests ### COMPILE | rrfs_dyn32_phy32 | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | + hera hercules | fv3 | -RUN | rap_control_dyn32_phy32 | + hera hercules | baseline | -RUN | hrrr_control_dyn32_phy32 | + hera hercules | baseline | -RUN | rap_2threads_dyn32_phy32 | + hera hercules | | -RUN | hrrr_control_2threads_dyn32_phy32 | + hera hercules | | -RUN | hrrr_control_decomp_dyn32_phy32 | + hera hercules | | -RUN | rap_restart_dyn32_phy32 | + hera hercules | | rap_control_dyn32_phy32 -RUN | hrrr_control_restart_dyn32_phy32 | + hera hercules | | hrrr_control_dyn32_phy32 -RUN | conus13km_control | + hera hercules | baseline | -RUN | conus13km_2threads | + hera hercules | | conus13km_control -RUN | conus13km_restart_mismatch | + hera hercules | baseline | conus13km_control +RUN | rap_control_dyn32_phy32 | + hera hercules | baseline | +RUN | hrrr_control_dyn32_phy32 | + hera hercules | baseline | +RUN | rap_2threads_dyn32_phy32 | + hera hercules | | +RUN | hrrr_control_2threads_dyn32_phy32 | + hera hercules | | +RUN | hrrr_control_decomp_dyn32_phy32 | + hera hercules | | +RUN | rap_restart_dyn32_phy32 | + hera hercules | | rap_control_dyn32_phy32 +RUN | hrrr_control_restart_dyn32_phy32 | + hera hercules | | hrrr_control_dyn32_phy32 +RUN | conus13km_control | + hera hercules | baseline | +RUN | conus13km_2threads | + hera hercules | | conus13km_control +RUN | conus13km_restart_mismatch | + hera hercules | baseline | conus13km_control # Expected to fail: -# RUN | conus13km_restart | + hera hercules | | conus13km_control -# RUN | conus13km_decomp | + hera hercules | | conus13km_control +# RUN | conus13km_restart | + hera hercules | | conus13km_control +# RUN | conus13km_decomp | + hera hercules | | conus13km_control COMPILE | atm_dyn64_phy32 | gnu | -DAPP=ATM -DCCPP_32BIT=ON | + hera hercules | fv3 | -RUN | rap_control_dyn64_phy32 | + hera hercules | baseline | +RUN | rap_control_dyn64_phy32 | + hera hercules | baseline | COMPILE | atm_dyn32_phy32_debug | gnu | -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | rap_control_debug_dyn32_phy32 | + hera hercules | baseline | -RUN | hrrr_control_debug_dyn32_phy32 | + hera hercules | baseline | -RUN | conus13km_debug | + hera hercules | baseline | -RUN | conus13km_debug_qr | + hera hercules | | -RUN | conus13km_debug_2threads | + hera hercules | | -RUN | conus13km_radar_tten_debug | + hera hercules | baseline | +RUN | rap_control_debug_dyn32_phy32 | + hera hercules | baseline | +RUN | hrrr_control_debug_dyn32_phy32 | + hera hercules | baseline | +RUN | conus13km_debug | + hera hercules | baseline | +RUN | conus13km_debug_qr | + hera hercules | | +RUN | conus13km_debug_2threads | + hera hercules | | +RUN | conus13km_radar_tten_debug | + hera hercules | baseline | # Expected to fail: -# RUN | conus13km_debug_decomp | + hera derecho hercules | | +# RUN | conus13km_debug_decomp | + hera derecho hercules | | COMPILE | atm_dyn64_phy32_debug | gnu | -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | rap_control_dyn64_phy32_debug | + hera hercules | baseline | +RUN | rap_control_dyn64_phy32_debug | + hera hercules | baseline | ### S2S tests ### COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -# RUN | cpld_control_p8 | + hera | baseline | +# RUN | cpld_control_p8 | + hera | baseline | COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -RUN | cpld_control_nowave_noaero_p8 | + hera | baseline | +RUN | cpld_control_nowave_noaero_p8 | + hera | baseline | COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -# RUN | cpld_debug_p8 | + hera | baseline | +# RUN | cpld_debug_p8 | + hera | baseline | # Unstructured WW3 COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera hercules | fv3 | -RUN | cpld_control_pdlib_p8 | + hera | baseline | +RUN | cpld_control_pdlib_p8 | + hera | baseline | COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | cpld_debug_pdlib_p8 | + hera | baseline | +RUN | cpld_debug_pdlib_p8 | + hera | baseline | ### CDEPS Data Atmosphere test ### COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera hercules | fv3 | -RUN | datm_cdeps_control_cfsr | + hera | baseline | +RUN | datm_cdeps_control_cfsr | + hera | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index c55eeaaddb..ee899c2f17 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -28,7 +28,6 @@ usage() { echo " -v verbose output" echo " -w for weekly_test, skip comparing baseline results" echo - set -x } [[ $# -eq 0 ]] && usage @@ -155,11 +154,11 @@ update_rtconf() { generate_log() { echo "rt.sh: Generating Regression Testing Log..." - set -x COMPILE_COUNTER=0 FAILED_COMPILES=() TEST_COUNTER=0 FAILED_TESTS=() + SKIPPED_TESTS=() FAILED_TEST_ID=() FAILED_COMPILE_LOGS=() FAILED_TEST_LOGS=() @@ -255,14 +254,14 @@ EOF COMPILE_RESULT="FAILED: UNABLE TO START COMPILE" FAIL_LOG="N/A" elif [[ -f fail_compile_${COMPILE_ID} ]]; then - COMPILE_RESULT="FAILED: UNABLE TO COMPILE" + COMPILE_RESULT="FAILED: UNABLE TO FINISH COMPILE" FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" if grep -q "quota" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then COMPILE_RESULT="FAILED: DISK QUOTA ISSUE" FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" - elif grep -q "timeout" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then - COMPILE_RESULT="FAILED: TEST TIMED OUT" - FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" + elif grep -q "TIME LIMIT" "${RUNDIR_ROOT}/compile_${COMPILE_ID}/err"; then + COMPILE_RESULT="FAILED: COMPILE TIMED OUT" + FAIL_LOG="${RUNDIR_ROOT}/compile_${COMPILE_ID}/err" fi else COMPILE_RESULT="PASS" @@ -330,21 +329,25 @@ EOF RT_TEST_TIME="" RT_TEST_MEM="" if [[ ${CREATE_BASELINE} == true && ${GEN_BASELINE} != "baseline" ]]; then - TEST_RESULT="SKIPPED (TEST DOES NOT GENERATE BASELINE)" + TEST_RESULT="SKIPPED: TEST DOES NOT GENERATE BASELINE" + SKIPPED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}") + elif [[ ${COMPILE_RESULT} =~ FAILED ]]; then + TEST_RESULT="SKIPPED: ASSOCIATED COMPILE FAILED" + SKIPPED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}") elif [[ ! -f "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" ]]; then - TEST_RESULT="FAILED: UNABLE TO START RUN" + TEST_RESULT="FAILED: UNABLE TO START TEST" FAIL_LOG="N/A" elif [[ -f fail_test_${TEST_NAME}_${COMPILER} ]]; then if [[ -f "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" ]]; then if grep -q "FAIL" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"; then - TEST_RESULT="FAILED: UNABLE TO RUN COMPARISON" + TEST_RESULT="FAILED: UNABLE TO COMPLETE COMPARISON" FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" # We need to catch a "PASS" in rt_*.log even if a fail_test_* files exists # I am not sure why this can happen. elif grep -q "PASS" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"; then TEST_RESULT="PASS" else - TEST_RESULT="FAILED: BASELINE COMPARISON" + TEST_RESULT="FAILED: UNSUCCESSFUL BASELINE COMPARISON" FAIL_LOG="${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" fi else @@ -354,9 +357,9 @@ EOF if grep -q "quota" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then TEST_RESULT="FAILED: DISK QUOTA ISSUE" FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" - elif grep -q "timeout" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then + elif grep -q "TIME LIMIT" "${RUNDIR_ROOT}/${TEST_NAME}_${COMPILER}/err"; then TEST_RESULT="FAILED: TEST TIMED OUT" - FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" + FAIL_LOG="${RUNDIR_ROOT}/${TEST_NAME}_${COMPILER}/err" fi else TEST_RESULT="PASS" @@ -399,7 +402,7 @@ Starting Date/Time: ${TEST_START_TIME} Ending Date/Time: ${TEST_END_TIME} Total Time: ${elapsed_time} Compiles Completed: $((COMPILE_COUNTER-${#FAILED_COMPILES[@]}))/${COMPILE_COUNTER} -Tests Completed: $((TEST_COUNTER-${#FAILED_TESTS[@]}))/${TEST_COUNTER} +Tests Completed: $((TEST_COUNTER-${#FAILED_TESTS[@]}-${#SKIPPED_TESTS[@]}))/${TEST_COUNTER} EOF # PRINT FAILED COMPILES if [[ "${#FAILED_COMPILES[@]}" -ne "0" ]]; then @@ -674,14 +677,10 @@ done #B&N not run together [[ ${NEW_BASELINES_FILE} != '' && ${RUN_SINGLE_TEST} == true ]] && die "-b and -n options cannot be used at the same time" -[[ -o xtrace ]] && set_x='set -x' || set_x='set +x' - if [[ ${RTVERBOSE} == true ]]; then set -x fi -[[ -o xtrace ]] && set_x='set -x' || set_x='set +x' - if [[ -z "${ACCNR}" ]]; then echo "Please use -a to set group account to use on HPC" exit 1 @@ -694,12 +693,10 @@ echo "Account: ${ACCNR}" case ${MACHINE_ID} in wcoss2|acorn) echo "rt.sh: Setting up WCOSS2/Acorn" - set -x if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.6.0.13 fi module load intel/19.1.3.304 python/3.8.6 - export colonifnco=":output" # hack DISKNM="/lfs/h2/emc/nems/noscrub/emc.nems/RT" QUEUE="dev" @@ -714,7 +711,6 @@ case ${MACHINE_ID} in ;; gaea) echo "rt.sh: Setting up gaea..." - set -x if [[ "${ROCOTO:-false}" == true ]] ; then module use /ncrc/proj/epic/rocoto/modulefiles module load rocoto @@ -747,7 +743,6 @@ case ${MACHINE_ID} in ;; hera) echo "rt.sh: Setting up hera..." - set -x if [[ "${ROCOTO:-false}" == true ]] ; then module load rocoto ROCOTO_SCHEDULER=slurm @@ -770,7 +765,6 @@ case ${MACHINE_ID} in ;; orion) echo "rt.sh: Setting up orion..." - set -x module load git/2.28.0 module load gcc/10.2.0 module load python/3.9.2 @@ -800,7 +794,6 @@ case ${MACHINE_ID} in ;; hercules) echo "rt.sh: Setting up hercules..." - set -x if [[ "${ROCOTO:-false}" == true ]] ; then module load contrib rocoto ROCOTO_SCHEDULER="slurm" @@ -828,7 +821,6 @@ case ${MACHINE_ID} in ;; jet) echo "rt.sh: Setting up jet..." - set -x CurJetOS=$(lsb_release -is) echo "=======Running on ${CurJetOS}=======" if [[ ${CurJetOS} == "CentOS" ]]; then @@ -861,7 +853,6 @@ case ${MACHINE_ID} in ;; s4) echo "rt.sh: Setting up s4..." - set -x if [[ "${ROCOTO:-false}" == true ]] ; then module load rocoto/1.3.2 ROCOTO_SCHEDULER=slurm @@ -892,7 +883,6 @@ case ${MACHINE_ID} in ;; derecho) echo "rt.sh: Setting up derecho..." - set -x if [[ "${ROCOTO:-false}" == true ]] ; then module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles module load rocoto @@ -930,7 +920,6 @@ case ${MACHINE_ID} in ;; stampede) echo "rt.sh: Setting up stampede..." - set -x export PYTHONPATH= if [[ "${ECFLOW:-false}" == true ]] ; then ECFLOW_START= @@ -948,7 +937,6 @@ case ${MACHINE_ID} in ;; expanse) echo "rt.sh: Setting up expanse..." - set -x export PYTHONPATH= if [[ "${ECFLOW:-false}" == true ]] ; then @@ -965,7 +953,6 @@ case ${MACHINE_ID} in ;; noaacloud) echo "rt.sh: Setting up noaacloud..." - set -x export PATH="/contrib/EPIC/bin:${PATH}" module use /apps/modules/modulefiles @@ -987,7 +974,6 @@ case ${MACHINE_ID} in die "Unknown machine ID, please edit detect_machine.sh file" ;; esac -eval "${set_x}" mkdir -p "${STMP}/${USER}" @@ -1374,5 +1360,4 @@ fi ## Lets verify all tests were run and that they passed generate_log -eval "${set_x}" echo "******Regression Testing Script Completed******" diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 9f08aad3b4..403ecc4506 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -15,9 +15,7 @@ ECFLOW_RUNNING=false jobid=0 function compute_petbounds_and_tasks() { - echo "rt_utils.sh: ${TEST_ID}: Computing PET bounds and tasks." - [[ -o xtrace ]] && set_x='set -x' || set_x='set +x' - set +x + # each test MUST define ${COMPONENT}_tasks variable for all components it is using # and MUST NOT define those that it's not using or set the value to 0. @@ -96,13 +94,10 @@ function compute_petbounds_and_tasks() { # TASKS is now set to UFS_TASKS export TASKS=${UFS_tasks} - eval "${set_x}" } interrupt_job() { - echo "rt_utils.sh: Job ${jobid} interupted" - set -x - #echo "run_util.sh: interrupt_job called | Job#: ${jobid}" + echo "rt_utils.sh: Job ${jobid} interrupted" case ${SCHEDULER} in pbs) qdel "${jobid}" @@ -120,9 +115,6 @@ submit_and_wait() { echo "rt_utils.sh: Submitting job on scheduler: ${SCHEDULER}" [[ -z $1 ]] && exit 1 - [[ -o xtrace ]] && set_x='set -x' || set_x='set +x' - set +x - local -r job_card=$1 ROCOTO=${ROCOTO:-false} @@ -156,9 +148,9 @@ submit_and_wait() { do case ${SCHEDULER} in pbs) - set +e + set +e job_info=$( qstat "${jobid}" ) - set -e + set -e ;; slurm) job_info=$( squeue -u "${USER}" -j "${jobid}" ) @@ -185,9 +177,9 @@ submit_and_wait() { do case ${SCHEDULER} in pbs) - set +e + set +e job_info=$( qstat "${jobid}" ) - set -e + set -e ;; slurm) job_info=$( squeue -u "${USER}" -j "${jobid}" ) @@ -228,7 +220,6 @@ submit_and_wait() { echo "rt_utils.sh: *** WARNING ***: Job in a HELD state. Might want to stop manually." ;; #fail/completed cases - #pbs: E #slurm: F/FAILED TO/TIMEOUT CA/CANCELLED F|TO|CA|FAILED|TIMEOUT|CANCELLED) echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!!" @@ -253,14 +244,10 @@ submit_and_wait() { (( n=n+1 )) sleep 60 & wait $! done - - eval "${set_x}" } check_results() { echo "rt_utils.sh: Checking results of the regression test: ${TEST_ID}" - [[ -o xtrace ]] && set_x='set -x' || set_x='set +x' - set +x ROCOTO=${ROCOTO:-false} ECFLOW=${ECFLOW:-false} @@ -271,7 +258,7 @@ check_results() { #sleep 60 { - echo + echo echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" echo "working dir = ${RUNDIR}" echo "Checking test ${TEST_ID} results ...." @@ -391,8 +378,6 @@ check_results() { exit 1 fi fi - - eval "${set_x}" } @@ -411,7 +396,7 @@ kill_job() { rocoto_create_compile_task() { echo "rt_utils.sh: ${COMPILE_ID}: Creating ROCOTO compile task." - #new_compile=true + new_compile=true if [[ ${in_metatask} == true ]]; then in_metatask=false echo " " >> "${ROCOTO_XML}" @@ -528,7 +513,6 @@ rocoto_kill() { rocoto_step() { echo "rt_utils.sh: Running one iteration of rocotorun and rocotostat..." - set -e echo "Unknown" > rocoto_workflow.state # Run one iteration of rocotorun and rocotostat. ${ROCOTORUN} -v 10 -w "${ROCOTO_XML}" -d "${ROCOTO_DB}" @@ -566,19 +550,15 @@ rocoto_run() { set -e if [[ "${state:-Unknown}" == Done ]] ; then - set +x echo "Rocoto workflow has completed." - set -x return 0 elif [[ ${result} == 0 ]] ; then break # rocoto_step succeeded elif (( now_time-start_time > max_time || step_attempts >= max_step_attempts )) ; then - set +x hostnamein=$(hostname) echo "Rocoto commands have failed ${step_attempts} times, for $(( (now_time-start_time+30)/60 )) minutes." echo "There may be something wrong with the ${hostnamein} node or the batch system." echo "I'm giving up. Sorry." - set -x return 2 fi sleep $(( naptime * 2**((step_attempts-1)%4) * RANDOM/32767 )) @@ -592,7 +572,6 @@ ecflow_create_compile_task() { echo "rt_utils.sh: ${COMPILE_ID}: Creating ECFLOW compile task" export new_compile=true - 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 & @@ -625,7 +604,7 @@ EOF else echo " trigger compile_${COMPILE_ID} == complete" >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" fi - + } ecflow_run() { @@ -633,7 +612,7 @@ ecflow_run() { # NOTE: ECFLOW IS NOT SAFE TO RUN WITH set -e, PLEASE AVOID #ECF_HOST="${ECF_HOST:-${HOSTNAME}}" - + # Make sure ECF_HOST and ECF_PORT are set/ready on systems that have an # explicit ecflow node if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then @@ -665,11 +644,11 @@ ecflow_run() { ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}" not_running=$? set -e - + if [[ ${not_running} -eq 1 ]]; then echo "rt_utils.sh: ecflow_server is not running on ${ECF_HOST}:${ECF_PORT}" echo "rt_utils.sh: attempting to start ecflow_server..." - + save_traps=$(trap) trap "" SIGINT # Ignore INT signal during ecflow startup case ${MACHINE_ID} in @@ -679,7 +658,7 @@ ecflow_run() { ;; *) ${ECFLOW_START} -p "${ECF_PORT}" -d "${RUNDIR_ROOT}/ecflow_server" - ;; + ;; esac ECFLOW_RUNNING=true @@ -689,7 +668,7 @@ ecflow_run() { ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}" not_running=$? set -e - + if [[ ${not_running} -eq 1 ]]; then echo "rt_utils.sh: ERROR -- Failure to start ecflow. Exiting..." exit 1 @@ -698,7 +677,7 @@ ecflow_run() { echo "rt_utils.sh: Confirmed: ecflow_server is running on ${ECF_HOST}:${ECF_PORT}" ECFLOW_RUNNING=true fi - + echo "rt_utils.sh: Starting ECFLOW tasks..." set +e ecflow_client --load="${ECFLOW_RUN}/${ECFLOW_SUITE}.def" --host="${ECF_HOST}" --port="${ECF_PORT}" @@ -712,6 +691,7 @@ ecflow_run() { max_active_tasks=$( grep "task " <<< "${max_active_tasks}" ) max_active_tasks=$( grep -cP 'state:active|state:submitted|state:queued' <<< "${max_active_tasks}" ) echo "rt_utils.sh: Total number of tasks processed -- ${max_active_tasks}" + prev_active_tasks=${active_tasks} while [[ "${active_tasks}" -ne 0 ]] do sleep 10 & wait $! @@ -720,7 +700,13 @@ ecflow_run() { active_tasks=$( grep "task " <<< "${active_tasks}" ) active_tasks=$( grep -cP 'state:active|state:submitted|state:queued' <<< "${active_tasks}" ) set -e - echo "ECFLOW Tasks Remaining: ${active_tasks}/${max_active_tasks}" + if [[ ${active_tasks} -ne ${prev_active_tasks} ]]; then + echo + echo -n "ECFLOW Tasks Remaining: ${active_tasks}/${max_active_tasks} " + prev_active_tasks=${active_tasks} + else + echo -n "." + fi "${PATHRT}/abort_dep_tasks.py" done diff --git a/tests/test_changes.list b/tests/test_changes.list index be46fc186d..1cf267012f 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,222 +1 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -control_flake intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c48.v2.sfc intel -control_c192 intel -control_c384 intel -control_c384gdas intel -control_stochy intel -control_stochy_restart intel -control_lndp intel -control_iovr4 intel -control_iovr5 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 intel -control_restart_p8 intel -control_noqr_p8 intel -control_restart_noqr_p8 intel -control_decomp_p8 intel -control_2threads_p8 intel -control_p8_lndp intel -control_p8_rrtmgp intel -control_p8_mynn intel -merra2_thompson intel -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_netcdf_parallel 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_wam intel -control_p8_faster intel -regional_control_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_stochy_debug intel -control_lndp_debug intel -control_csawmg_debug intel -control_ras_debug intel -control_diag_debug intel -control_debug_p8 intel -regional_debug intel -rap_control_debug intel -hrrr_control_debug intel -hrrr_gf_debug intel -hrrr_c3_debug intel -rap_unified_drag_suite_debug intel -rap_diag_debug intel -rap_cires_ugwp_debug intel -rap_unified_ugwp_debug intel -rap_lndp_debug intel -rap_progcld_thompson_debug intel -rap_noah_debug intel -rap_sfcdiff_debug intel -rap_noah_sfcdiff_cires_ugwp_debug intel -rrfs_v1beta_debug intel -rap_clm_lake_debug intel -rap_flake_debug intel -gnv1_c96_no_nest_debug intel -control_csawmg_debug gnu -control_wam_debug intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -conus13km_control intel -conus13km_2threads intel -conus13km_restart_mismatch intel -rap_control_dyn64_phy32 intel -rap_control_debug_dyn32_phy32 intel -hrrr_control_debug_dyn32_phy32 intel -conus13km_debug intel -conus13km_debug_qr intel -conus13km_debug_2threads intel -conus13km_radar_tten_debug intel -rap_control_dyn64_phy32_debug intel -hafs_regional_atm intel -hafs_regional_atm_thompson_gfdlsf intel -hafs_regional_atm_ocn intel -hafs_regional_atm_wav intel -hafs_regional_atm_ocn_wav intel -hafs_regional_1nest_atm intel -hafs_regional_telescopic_2nests_atm intel -hafs_global_1nest_atm intel -hafs_global_multiple_4nests_atm intel -hafs_regional_specified_moving_1nest_atm intel -hafs_regional_storm_following_1nest_atm intel -hafs_regional_storm_following_1nest_atm_ocn intel -hafs_global_storm_following_1nest_atm intel -gnv1_nested intel -hafs_regional_storm_following_1nest_atm_ocn_debug intel -hafs_regional_storm_following_1nest_atm_ocn_wav intel -hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel -hafs_regional_docn intel -hafs_regional_docn_oisst intel -control_p8_atmlnd_sbs intel -control_p8_atmlnd intel -control_restart_p8_atmlnd intel -control_p8_atmlnd_debug intel -atmwav_control_noaero_p8 intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -regional_atmaq_debug intel -control_c48 gnu -control_stochy gnu -control_ras gnu -control_p8 gnu -control_p8_ugwpv1 gnu -control_flake gnu -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rrfs_v1beta gnu -control_diag_debug gnu -regional_debug gnu -rap_control_debug gnu -hrrr_control_debug gnu -hrrr_gf_debug gnu -hrrr_c3_debug gnu -rap_diag_debug gnu -rap_noah_sfcdiff_cires_ugwp_debug gnu -rap_progcld_thompson_debug gnu -rrfs_v1beta_debug gnu -control_ras_debug gnu -control_stochy_debug gnu -control_debug_p8 gnu -rap_flake_debug gnu -rap_clm_lake_debug gnu -gnv1_c96_no_nest_debug gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -conus13km_control gnu -conus13km_2threads gnu -conus13km_restart_mismatch gnu -rap_control_dyn64_phy32 gnu -rap_control_debug_dyn32_phy32 gnu -hrrr_control_debug_dyn32_phy32 gnu -conus13km_debug gnu -conus13km_debug_qr gnu -conus13km_debug_2threads gnu -conus13km_radar_tten_debug gnu -rap_control_dyn64_phy32_debug gnu -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu From 485ccdfc4a7ed6deeb02d82c2cebe51b37e892f5 Mon Sep 17 00:00:00 2001 From: RatkoVasic-NOAA <37597874+RatkoVasic-NOAA@users.noreply.github.com> Date: Wed, 5 Jun 2024 13:48:33 -0400 Subject: [PATCH 16/16] Upgrade spack-stack from version 1.5.1 to 1.6.0 (#2093) *UFSWM: *Updates modulefiles to spack-stack version 1.6.0 *Updates Hera GNU version to 13.3 --- modulefiles/ufs_acorn.intel.lua | 2 +- modulefiles/ufs_common.lua | 10 +- modulefiles/ufs_gaea.intel.lua | 4 +- modulefiles/ufs_hera.gnu.lua | 11 +- modulefiles/ufs_hera.intel.lua | 2 +- modulefiles/ufs_hercules.gnu.lua | 2 +- modulefiles/ufs_hercules.intel.lua | 2 +- modulefiles/ufs_jet.intel.lua | 2 +- modulefiles/ufs_noaacloud.intel.lua | 3 +- modulefiles/ufs_orion.intel.lua | 2 +- modulefiles/ufs_s4.intel.lua | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 512 +++++----- tests/logs/RegressionTests_derecho.log | 530 +++++----- tests/logs/RegressionTests_gaea.log | 532 +++++------ tests/logs/RegressionTests_hera.log | 902 +++++++++++------- tests/logs/RegressionTests_hercules.log | 783 ++++++++------- tests/logs/RegressionTests_jet.log | 470 ++++----- tests/logs/RegressionTests_orion.log | 532 +++++------ tests/logs/RegressionTests_wcoss2.log | 452 ++++----- tests/rt.conf | 14 +- tests/test_changes.list | 38 +- 25 files changed, 2626 insertions(+), 2299 deletions(-) diff --git a/modulefiles/ufs_acorn.intel.lua b/modulefiles/ufs_acorn.intel.lua index aba7519d72..4257dc8b3f 100644 --- a/modulefiles/ufs_acorn.intel.lua +++ b/modulefiles/ufs_acorn.intel.lua @@ -2,7 +2,7 @@ help([[ Load environment to build UFS on Acorn with Intel compiler ]]) -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") load("stack-intel") load("stack-cray-mpich") diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index 1f395d9769..6e9c1f6f45 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -8,19 +8,19 @@ local ufs_modules = { {["libpng"] = "1.6.37"}, {["hdf5"] = "1.14.0"}, {["netcdf-c"] = "4.9.2"}, - {["netcdf-fortran"] = "4.6.0"}, + {["netcdf-fortran"] = "4.6.1"}, {["parallelio"] = "2.5.10"}, - {["esmf"] = "8.5.0"}, - {["fms"] = "2023.02.01"}, + {["esmf"] = "8.6.0"}, + {["fms"] = "2023.04"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0"}, {["g2"] = "3.4.5"}, {["g2tmpl"] = "1.10.2"}, {["ip"] = "4.3.0"}, - {["sp"] = "2.3.3"}, + {["sp"] = "2.5.0"}, {["w3emc"] = "2.10.0"}, {["gftl-shared"] = "1.6.1"}, - {["mapl"] = "2.40.3-esmf-8.5.0"}, + {["mapl"] = "2.40.3-esmf-8.6.0"}, {["scotch"] = "7.0.4"}, } diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index c40c1a056d..629a69e9c5 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -10,7 +10,7 @@ load("intel-classic/2023.1.0") load("cray-mpich/8.1.25") load("python/3.9.12") -prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/modulefiles") stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" @@ -19,7 +19,7 @@ load(pathJoin("stack-intel", stack_intel_ver)) stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) -stack_python_ver=os.getenv("stack_python_ver") or "3.10.8" +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" load(pathJoin("stack-python", stack_python_ver)) load("ufs_common") diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index a67f41b678..861019fb02 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -2,12 +2,14 @@ help([[ loads UFS Model prerequisites for Hera/GNU ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env-rocky8/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/gnu/modulefiles") +prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/openmpi/modulefiles") +prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/ufs-wm-srw-rocky8/install/modulefiles/Core") -stack_gnu_ver=os.getenv("stack_gnu_ver") or "9.2.0" +stack_gnu_ver=os.getenv("stack_gnu_ver") or "13.3.0" load(pathJoin("stack-gcc", stack_gnu_ver)) -stack_openmpi_ver=os.getenv("stack_openmpi_ver") or "4.1.5" +stack_openmpi_ver=os.getenv("stack_openmpi_ver") or "4.1.6" load(pathJoin("stack-openmpi", stack_openmpi_ver)) cmake_ver=os.getenv("cmake_ver") or "3.23.1" @@ -18,6 +20,9 @@ load("ufs_common") nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" load(pathJoin("nccmp", nccmp_ver)) +prepend_path("CPPFLAGS", " -I/apps/slurm_hera/23.11.3/include/slurm"," ") +prepend_path("LD_LIBRARY_PATH", "/apps/slurm_hera/23.11.3/lib") + setenv("CC", "mpicc") setenv("CXX", "mpic++") setenv("FC", "mpif90") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 67a610c306..993e05372a 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env-rocky8/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_hercules.gnu.lua b/modulefiles/ufs_hercules.gnu.lua index 1e4849aa5a..69534c28d8 100644 --- a/modulefiles/ufs_hercules.gnu.lua +++ b/modulefiles/ufs_hercules.gnu.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/GNU ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") -- for mvapich2, need: prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/modulefiles") diff --git a/modulefiles/ufs_hercules.intel.lua b/modulefiles/ufs_hercules.intel.lua index 605fe5792b..63cfaa989c 100644 --- a/modulefiles/ufs_hercules.intel.lua +++ b/modulefiles/ufs_hercules.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index e7c76783f1..94283ea83a 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Jet/Intel ]]) -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env-rocky8/install/modulefiles/Core") +prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_noaacloud.intel.lua b/modulefiles/ufs_noaacloud.intel.lua index 64ef71a38c..98397ef11c 100644 --- a/modulefiles/ufs_noaacloud.intel.lua +++ b/modulefiles/ufs_noaacloud.intel.lua @@ -2,8 +2,7 @@ help([[ loads UFS Model prerequisites for NOAA Parallelworks/Intel ]]) - -prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.3.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index fe54d07737..104d08fd29 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Orion/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2022.0.2" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_s4.intel.lua b/modulefiles/ufs_s4.intel.lua index 7156e57f30..e42a2ddde6 100644 --- a/modulefiles/ufs_s4.intel.lua +++ b/modulefiles/ufs_s4.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for S4/Intel ]]) -prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 0a5ae08102..64bc75ee81 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240530 +export BL_DATE=20240603 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index dfa57fe5af..5836422c01 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu May 30 23:49:24 UTC 2024 +Tue Jun 4 22:17:00 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_1853474/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1695475/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 = 207.284592 - 0: The maximum resident set size (KB) = 1909148 + 0: The total amount of wall time = 283.395800 + 0: The maximum resident set size (KB) = 1444564 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_1853474/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1695475/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 = 2019.198702 - 0: The maximum resident set size (KB) = 1873432 + 0: The total amount of wall time = 976.634482 + 0: The maximum resident set size (KB) = 1416500 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_1853474/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1695475/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 = 177.233106 - 0: The maximum resident set size (KB) = 1879672 + 0: The total amount of wall time = 253.914740 + 0: The maximum resident set size (KB) = 1420920 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_1853474/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1695475/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 = 177.213010 - 0: The maximum resident set size (KB) = 1883996 + 0: The total amount of wall time = 249.447063 + 0: The maximum resident set size (KB) = 1432868 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_1853474/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1695475/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 = 215.448488 - 0: The maximum resident set size (KB) = 1881620 + 0: The total amount of wall time = 248.336854 + 0: The maximum resident set size (KB) = 1423912 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_1853474/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1695475/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 = 178.761689 - 0: The maximum resident set size (KB) = 1879288 + 0: The total amount of wall time = 252.084050 + 0: The maximum resident set size (KB) = 1429872 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_1853474/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1695475/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 = 176.979771 - 0: The maximum resident set size (KB) = 1880244 + 0: The total amount of wall time = 252.909572 + 0: The maximum resident set size (KB) = 1408380 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri May 31 01:21:09 UTC 2024 -Elapsed time: 01h:31m:46s. Have a nice day! +Tue Jun 4 23:22:43 UTC 2024 +Elapsed time: 01h:05m:43s. 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 68fb1819a4..65412b9d56 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,6 +1,9 @@ +Wed Jun 5 13:31:08 UTC 2024 +Start Operation Requirement Test + baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_326777/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3079325/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -63,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 = 1511.676145 - 0: The maximum resident set size (KB) = 1553376 + 0: The total amount of wall time = 1510.383503 + 0: The maximum resident set size (KB) = 1529668 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1319479/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3079325/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -132,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 = 431.329311 - 0: The maximum resident set size (KB) = 1519904 + 0: The total amount of wall time = 517.813920 + 0: The maximum resident set size (KB) = 1524680 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_326777/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3079325/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -202,8 +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 = 407.381438 - 0: The maximum resident set size (KB) = 1545864 + 0: The total amount of wall time = 430.945213 + 0: The maximum resident set size (KB) = 1513244 Test std_base PASS +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Wed Jun 5 14:37:12 UTC 2024 +Elapsed time: 01h:06m:04s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 591216702e..291ec018eb 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri May 31 13:00:26 UTC 2024 +Wed Jun 5 02:54:52 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1237170/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836548/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 = 1296.278977 - 0: The maximum resident set size (KB) = 754104 + 0: The total amount of wall time = 1240.233579 + 0: The maximum resident set size (KB) = 738044 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1237170/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836548/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 = 2177.504571 - 0: The maximum resident set size (KB) = 730460 + 0: The total amount of wall time = 2160.002829 + 0: The maximum resident set size (KB) = 712880 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1237170/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836548/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 = 2282.002035 - 0: The maximum resident set size (KB) = 719212 + 0: The total amount of wall time = 2262.226051 + 0: The maximum resident set size (KB) = 711912 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1237170/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836548/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -70,11 +70,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2158.092660 - 0: The maximum resident set size (KB) = 707756 + 0: The total amount of wall time = 2237.695388 + 0: The maximum resident set size (KB) = 699580 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri May 31 15:32:45 UTC 2024 -Elapsed time: 02h:32m:21s. Have a nice day! +Wed Jun 5 05:20:18 UTC 2024 +Elapsed time: 02h:25m:27s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index f2288bc165..c27d9e6948 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -8a8d1c6f77cad4d9ea86e48a6198e8f5155a9df5 +6822d08c616e7b83cd7cfe533fe35d771c6a9a70 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -35,268 +35,268 @@ 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-20240530 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_120014 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240603 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_71363 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:25, 11:57] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:33, 01:01](3167 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 15:51] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [36:29, 01:15](1886 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:35, 01:28](1915 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 01:31](1046 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:30, 01:28](1858 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 15:48] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [36:30, 01:12](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:13] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [47:42, 01:43](1910 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 10:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [41:34, 01:18](3198 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:34, 00:53](3197 MB) -PASS -- TEST 'cpld_restart_p8_intel' [29:14, 01:26](3141 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [41:34, 01:24](3220 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [28:14, 01:44](3148 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [41:34, 01:01](3426 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [41:34, 01:27](3192 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [41:35, 01:33](3142 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:34, 01:25](3200 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [41:34, 00:45](3179 MB) - -PASS -- COMPILE 's2sw_intel' [11:24, 10:14] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [41:35, 00:49](1891 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [41:35, 01:00](1949 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:28, 09:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [42:31, 00:59](1953 MB) - -PASS -- COMPILE 's2s_intel' [11:24, 10:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [41:33, 00:33](2927 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [41:33, 01:23](2935 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:29, 01:05](2328 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:33, 18:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [33:26, 01:16](3199 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 16:14] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:28, 01:16](1891 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:56, 00:46](1065 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [10:53, 01:29](1863 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:50] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:25, 01:23](1914 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:46] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [33:01, 00:50](642 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [33:01, 00:20](1538 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [33:01, 00:34](1546 MB) -PASS -- TEST 'control_latlon_intel' [33:01, 00:45](1537 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [33:01, 00:50](1534 MB) -PASS -- TEST 'control_c48_intel' [33:00, 01:02](1623 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [33:00, 01:22](745 MB) -PASS -- TEST 'control_c192_intel' [33:01, 00:44](1651 MB) -PASS -- TEST 'control_c384_intel' [33:05, 01:27](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [33:05, 02:02](1159 MB) -PASS -- TEST 'control_stochy_intel' [33:01, 00:21](596 MB) -PASS -- TEST 'control_stochy_restart_intel' [16:21, 00:43](400 MB) -PASS -- TEST 'control_lndp_intel' [33:01, 00:54](595 MB) -PASS -- TEST 'control_iovr4_intel' [30:06, 01:10](592 MB) -PASS -- TEST 'control_iovr5_intel' [27:31, 01:01](590 MB) -PASS -- TEST 'control_p8_intel' [27:14, 01:36](1842 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [27:11, 01:39](1831 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [27:00, 01:51](1834 MB) -PASS -- TEST 'control_restart_p8_intel' [09:49, 01:01](985 MB) -PASS -- TEST 'control_noqr_p8_intel' [26:57, 01:18](1833 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [09:49, 00:37](980 MB) -PASS -- TEST 'control_decomp_p8_intel' [25:28, 01:25](1833 MB) -PASS -- TEST 'control_2threads_p8_intel' [21:50, 00:57](1926 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:19, 00:39](1834 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [16:40, 01:18](1890 MB) -PASS -- TEST 'control_p8_mynn_intel' [16:34, 01:32](1844 MB) -PASS -- TEST 'merra2_thompson_intel' [16:19, 01:58](1838 MB) -PASS -- TEST 'regional_control_intel' [16:09, 00:16](878 MB) -PASS -- TEST 'regional_restart_intel' [08:32, 00:59](876 MB) -PASS -- TEST 'regional_decomp_intel' [15:31, 00:25](879 MB) -PASS -- TEST 'regional_2threads_intel' [15:20, 00:13](979 MB) -PASS -- TEST 'regional_noquilt_intel' [13:57, 00:09](1201 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:56, 01:07](878 MB) -PASS -- TEST 'regional_wofs_intel' [13:50, 00:52](1611 MB) - -PASS -- COMPILE 'ifi_intel' [08:20, 08:09] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [34:09, 00:30](881 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [34:09, 01:05](876 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [34:10, 00:59](970 MB) - -PASS -- COMPILE 'rrfs_intel' [09:22, 09:08] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:14, 01:06](980 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:00, 00:37](1151 MB) -PASS -- TEST 'rap_decomp_intel' [12:43, 00:47](976 MB) -PASS -- TEST 'rap_2threads_intel' [12:24, 01:07](1057 MB) -PASS -- TEST 'rap_restart_intel' [03:03, 01:08](846 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:40, 01:13](971 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 00:45](974 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [00:23, 01:55](848 MB) -PASS -- TEST 'hrrr_control_intel' [09:49, 01:37](967 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:45, 01:25](974 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:34, 01:51](1047 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:25, 00:15](804 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:25, 01:22](969 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:47, 00:31](1938 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:45, 00:56](1922 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:33] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:36, 00:18](930 MB) - -PASS -- COMPILE 'wam_intel' [08:22, 08:11] ( 1 warnings ) -PASS -- TEST 'control_wam_intel' [33:12, 00:40](334 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:30, 16:01] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:22, 00:57](1831 MB) -PASS -- TEST 'regional_control_faster_intel' [07:19, 01:09](874 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:23, 05:08] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:01, 00:29](1559 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:52, 00:28](1567 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:41, 00:59](766 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:53, 00:53](766 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:36, 00:16](1076 MB) -PASS -- TEST 'control_ras_debug_intel' [03:51, 00:12](775 MB) -PASS -- TEST 'control_diag_debug_intel' [03:03, 01:07](1621 MB) -PASS -- TEST 'control_debug_p8_intel' [02:49, 00:55](1859 MB) -PASS -- TEST 'regional_debug_intel' [02:24, 00:50](925 MB) -PASS -- TEST 'rap_control_debug_intel' [00:22, 00:46](1148 MB) -PASS -- TEST 'hrrr_control_debug_intel' [00:08, 00:14](1140 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [00:04, 01:08](1143 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [59:58, 00:35](1142 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [59:46, 00:39](1146 MB) -PASS -- TEST 'rap_diag_debug_intel' [59:24, 00:40](1227 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [59:14, 00:45](1145 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [57:59, 00:46](1146 MB) -PASS -- TEST 'rap_lndp_debug_intel' [57:27, 01:11](1149 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [57:25, 00:47](1145 MB) -PASS -- TEST 'rap_noah_debug_intel' [57:10, 00:57](1146 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [56:56, 00:42](1144 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [56:23, 00:30](1145 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [56:13, 00:32](1139 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [56:13, 01:00](1147 MB) -PASS -- TEST 'rap_flake_debug_intel' [55:58, 01:01](1143 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:48, 01:21](1151 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:25, 03:08] ( 856 warnings ) -PASS -- TEST 'control_wam_debug_intel' [55:11, 00:48](381 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:33, 08:30] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [53:57, 00:36](1015 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [52:43, 01:34](850 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [52:41, 01:58](844 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [51:36, 01:14](908 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [51:31, 01:27](903 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [51:19, 01:36](851 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:52, 01:02](742 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [46:03, 01:03](725 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:34, 12:12] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [51:06, 00:59](1056 MB) -PASS -- TEST 'conus13km_2threads_intel' [47:22, 00:20](1040 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [47:21, 00:22](939 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:30, 08:35] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [50:48, 01:14](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:26, 03:22] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [50:45, 00:41](1023 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [50:36, 00:41](1023 MB) -PASS -- TEST 'conus13km_debug_intel' [50:33, 00:44](1120 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [50:00, 00:47](798 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [49:58, 00:20](1094 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [49:43, 01:13](1186 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [53:09, 03:18] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [39:52, 00:15](1047 MB) - -PASS -- COMPILE 'hafsw_intel' [00:15, 09:59] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [32:01, 01:29](676 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [32:01, 00:24](1029 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [31:59, 01:58](719 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [31:59, 01:36](761 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:00, 01:27](774 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:59, 00:42](443 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [32:00, 01:59](464 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [32:00, 01:28](340 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:03, 02:36](412 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:38, 01:08](478 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [31:04, 01:13](477 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:27, 01:01](542 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:25, 00:26](369 MB) -PASS -- TEST 'gnv1_nested_intel' [30:25, 00:42](729 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [54:13, 04:00] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [38:01, 00:46](579 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [01:15, 16:53] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:54, 00:45](584 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:59, 00:58](756 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [53:10, 09:46] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:50, 01:27](749 MB) - -PASS -- COMPILE 'hafs_all_intel' [51:05, 09:12] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [32:58, 01:53](710 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [32:58, 01:35](695 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [32:56, 01:08](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [47:00, 08:36] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [33:44, 00:41](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [28:19, 00:55](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [33:44, 00:22](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [33:44, 00:18](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [33:44, 00:34](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [33:44, 00:51](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [33:44, 00:38](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [33:44, 00:55](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:45, 01:05](647 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [33:45, 01:30](632 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [33:44, 00:28](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [33:44, 00:50](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [33:44, 00:50](2016 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [47:03, 08:50] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [28:19, 01:02](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [35:52, 00:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [40:04, 00:36](274 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:04, 01:01](411 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [37:38, 00:16](411 MB) - -PASS -- COMPILE 'atml_intel' [42:58, 10:24] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [28:21, 01:13](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [28:21, 01:21](1853 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 00:26](1008 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:17, 04:01] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [35:47, 01:38](1891 MB) - -PASS -- COMPILE 'atmw_intel' [09:22, 09:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [27:25, 01:45](1865 MB) - -PASS -- COMPILE 'atmaero_intel' [09:22, 08:53] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [27:20, 01:04](3097 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [26:19, 01:19](2980 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [26:18, 01:23](2990 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:17, 03:24] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:37, 01:36](4504 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:41] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:10, 01:19](3172 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:52] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:05, 01:22](1883 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:37, 01:14](1913 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [24:37, 01:50](1030 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:06, 01:47](1854 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 15:56] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:05, 00:49](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:11] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:17, 01:48](1913 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 10:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:10, 01:17](3200 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:10, 01:42](3198 MB) +PASS -- TEST 'cpld_restart_p8_intel' [54:21, 00:57](3132 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:10, 01:12](3219 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [56:22, 01:07](3153 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [22:10, 01:30](3425 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [22:10, 01:05](3196 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [22:11, 01:11](3144 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [22:10, 01:05](3200 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [22:10, 01:26](3180 MB) + +PASS -- COMPILE 's2sw_intel' [10:23, 09:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [23:11, 01:22](1898 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [23:11, 00:52](1962 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:22] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [23:11, 01:06](1962 MB) + +PASS -- COMPILE 's2s_intel' [10:23, 09:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [23:09, 00:26](2935 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [23:09, 01:12](2943 MB) +PASS -- TEST 'cpld_restart_c48_intel' [43:33, 00:44](2334 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:32, 17:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:02, 00:58](3198 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 15:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:04, 01:16](1901 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [40:27, 01:10](1064 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:06, 00:56](1873 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:53] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:00, 01:28](1921 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:41] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:44, 01:00](633 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:11, 00:42](1539 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:51, 01:03](1533 MB) +PASS -- TEST 'control_latlon_intel' [06:52, 01:02](1530 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:44, 01:16](1545 MB) +PASS -- TEST 'control_c48_intel' [02:22, 00:28](1618 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [00:54, 00:47](736 MB) +PASS -- TEST 'control_c192_intel' [59:37, 01:10](1649 MB) +PASS -- TEST 'control_c384_intel' [56:44, 01:41](1961 MB) +PASS -- TEST 'control_c384gdas_intel' [56:23, 01:49](1145 MB) +PASS -- TEST 'control_stochy_intel' [55:09, 00:39](594 MB) +PASS -- TEST 'control_stochy_restart_intel' [23:14, 00:57](395 MB) +PASS -- TEST 'control_lndp_intel' [53:19, 01:08](592 MB) +PASS -- TEST 'control_iovr4_intel' [50:51, 01:13](590 MB) +PASS -- TEST 'control_iovr5_intel' [50:51, 00:56](588 MB) +PASS -- TEST 'control_p8_intel' [50:33, 01:32](1833 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [50:33, 01:41](1837 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [49:18, 01:46](1833 MB) +PASS -- TEST 'control_restart_p8_intel' [18:53, 01:31](981 MB) +PASS -- TEST 'control_noqr_p8_intel' [46:38, 00:40](1822 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [17:22, 00:54](985 MB) +PASS -- TEST 'control_decomp_p8_intel' [40:46, 01:05](1825 MB) +PASS -- TEST 'control_2threads_p8_intel' [33:12, 01:37](1917 MB) +PASS -- TEST 'control_p8_lndp_intel' [32:55, 01:04](1835 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [31:56, 01:25](1883 MB) +PASS -- TEST 'control_p8_mynn_intel' [31:03, 01:47](1842 MB) +PASS -- TEST 'merra2_thompson_intel' [28:59, 01:25](1841 MB) +PASS -- TEST 'regional_control_intel' [27:38, 00:17](872 MB) +PASS -- TEST 'regional_restart_intel' [06:46, 00:42](874 MB) +PASS -- TEST 'regional_decomp_intel' [25:34, 00:48](874 MB) +PASS -- TEST 'regional_2threads_intel' [24:47, 01:12](984 MB) +PASS -- TEST 'regional_noquilt_intel' [24:45, 00:49](1204 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [24:07, 00:43](874 MB) +PASS -- TEST 'regional_wofs_intel' [22:26, 01:00](1607 MB) + +PASS -- COMPILE 'ifi_intel' [08:22, 08:11] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [14:48, 00:09](873 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [14:48, 00:26](881 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [14:49, 00:59](961 MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 09:10] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:48, 01:18](976 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:49, 00:28](1152 MB) +PASS -- TEST 'rap_decomp_intel' [13:48, 01:42](975 MB) +PASS -- TEST 'rap_2threads_intel' [13:48, 01:04](1055 MB) +PASS -- TEST 'rap_restart_intel' [22:20, 01:12](844 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:48, 01:27](972 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:48, 01:05](972 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [20:36, 01:51](841 MB) +PASS -- TEST 'hrrr_control_intel' [20:36, 01:38](966 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [19:59, 01:12](963 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [20:00, 01:04](1049 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:15, 00:55](797 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:50, 01:32](964 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [16:38, 00:17](1930 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:35, 00:57](1922 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:30] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [15:12, 00:50](933 MB) + +PASS -- COMPILE 'wam_intel' [46:00, 08:07] ( 1 warnings ) +PASS -- TEST 'control_wam_intel' [14:46, 00:47](333 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [37:53, 16:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [43:21, 01:44](1828 MB) +PASS -- TEST 'regional_control_faster_intel' [41:46, 00:17](874 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [22:37, 05:20] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [54:27, 00:41](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [54:27, 01:10](1562 MB) +PASS -- TEST 'control_stochy_debug_intel' [54:27, 00:45](766 MB) +PASS -- TEST 'control_lndp_debug_intel' [54:27, 00:26](769 MB) +PASS -- TEST 'control_csawmg_debug_intel' [54:27, 00:41](1074 MB) +PASS -- TEST 'control_ras_debug_intel' [54:27, 00:42](771 MB) +PASS -- TEST 'control_diag_debug_intel' [54:27, 00:41](1625 MB) +PASS -- TEST 'control_debug_p8_intel' [54:27, 00:40](1863 MB) +PASS -- TEST 'regional_debug_intel' [54:26, 00:57](925 MB) +PASS -- TEST 'rap_control_debug_intel' [54:27, 01:04](1145 MB) +PASS -- TEST 'hrrr_control_debug_intel' [54:27, 01:06](1141 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [54:27, 00:15](1143 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [54:27, 00:35](1148 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [54:27, 00:28](1149 MB) +PASS -- TEST 'rap_diag_debug_intel' [54:27, 00:49](1234 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [54:27, 00:28](1150 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [54:27, 00:31](1154 MB) +PASS -- TEST 'rap_lndp_debug_intel' [54:27, 01:05](1151 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [54:27, 00:50](1151 MB) +PASS -- TEST 'rap_noah_debug_intel' [54:27, 00:22](1147 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [52:32, 00:29](1148 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [52:15, 01:09](1145 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [50:04, 00:22](1143 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [48:44, 00:50](1151 MB) +PASS -- TEST 'rap_flake_debug_intel' [45:41, 00:23](1153 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:39, 01:32](1154 MB) + +PASS -- COMPILE 'wam_debug_intel' [20:35, 03:13] ( 856 warnings ) +PASS -- TEST 'control_wam_debug_intel' [56:29, 01:02](381 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [25:42, 08:32] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [41:48, 01:22](1020 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [39:44, 01:33](853 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:40, 01:54](850 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [36:39, 01:29](915 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [35:39, 01:31](901 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [35:10, 01:42](852 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:59, 01:43](748 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:49, 00:33](731 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:43, 12:18] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [34:09, 01:13](1060 MB) +PASS -- TEST 'conus13km_2threads_intel' [20:07, 00:32](1045 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [20:06, 00:56](941 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:40, 08:37] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [32:49, 00:32](874 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:34, 03:28] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [55:13, 00:29](1025 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [55:13, 01:13](1031 MB) +PASS -- TEST 'conus13km_debug_intel' [55:13, 00:28](1116 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [55:13, 00:30](800 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [55:14, 00:43](1103 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [55:13, 00:51](1192 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:34, 03:21] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [55:12, 01:05](1046 MB) + +PASS -- COMPILE 'hafsw_intel' [24:42, 09:55] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [32:09, 02:08](669 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [30:35, 00:56](1028 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [30:27, 01:55](720 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:06, 01:30](757 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:31, 02:07](771 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [28:30, 01:14](450 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [27:30, 01:24](471 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [26:27, 00:38](338 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [24:28, 02:00](403 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [22:39, 01:31](479 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [21:59, 01:23](479 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:25, 00:46](543 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:02, 01:19](373 MB) +PASS -- TEST 'gnv1_nested_intel' [10:27, 01:10](735 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [42:57, 03:43] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [06:43, 01:21](576 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:30, 17:29] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [05:45, 01:04](580 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:31, 01:17](755 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:24, 09:46] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:27, 01:01](757 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:22, 09:03] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [01:30, 01:22](715 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [57:20, 01:39](702 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [52:32, 00:35](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [36:50, 08:46] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:14, 00:32](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:23, 00:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [50:37, 01:00](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [46:18, 00:50](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [44:54, 00:10](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [43:06, 01:06](754 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [42:33, 00:38](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [38:35, 00:13](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [38:25, 01:12](650 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [37:53, 00:45](633 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [37:43, 00:56](752 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [35:36, 00:49](2026 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [35:20, 00:29](2022 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [36:50, 08:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [35:16, 00:59](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [28:42, 00:50] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:16, 00:41](273 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [35:11, 00:38](410 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [30:42, 01:12](410 MB) + +PASS -- COMPILE 'atml_intel' [38:56, 10:14] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [35:06, 01:31](1860 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [32:51, 01:46](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [23:31, 00:48](1004 MB) + +PASS -- COMPILE 'atml_debug_intel' [36:52, 04:12] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [31:24, 01:41](1888 MB) + +PASS -- COMPILE 'atmw_intel' [44:59, 09:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [31:00, 01:38](1866 MB) + +PASS -- COMPILE 'atmaero_intel' [42:58, 08:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [30:14, 00:58](3096 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [30:01, 01:30](2985 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [29:40, 01:13](2991 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [46:00, 03:23] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:02, 01:21](4498 MB) SYNOPSIS: -Starting Date/Time: 20240531 13:06:43 -Ending Date/Time: 20240531 15:16:38 -Total Time: 02h:10m:11s +Starting Date/Time: 20240604 15:26:07 +Ending Date/Time: 20240604 18:57:58 +Total Time: 03h:32m:07s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index d27db1f2e1..3f3c27c401 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -e3ddf5cbeaa53d93d400ed4f5a6d6a06c30911f0 +6822d08c616e7b83cd7cfe533fe35d771c6a9a70 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -35,278 +35,278 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240530 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_51699 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240603 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_106039 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:22, 19:50] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:23, 05:41](3203 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:22, 20:42] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:10, 14:21](1923 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:45, 15:36](1946 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:11, 07:43](1081 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:06, 16:15](1894 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:22, 20:53] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:29, 14:30](1911 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:20, 09:22] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:45, 22:00](1936 MB) - -PASS -- COMPILE 's2swa_intel' [20:21, 19:25] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:03, 06:19](3223 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:25, 06:09](3220 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:26, 03:55](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:51, 06:51](3250 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:43, 03:54](3181 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:35, 05:54](3724 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:35, 06:02](3216 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:39, 05:05](3535 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:51, 06:50](3231 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:55, 09:56](3807 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:02, 06:24](3618 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:32, 11:10](4491 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:43, 06:53](4648 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 06:11](3210 MB) - -PASS -- COMPILE 's2sw_intel' [20:22, 18:55] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:23, 05:03](1923 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:36, 04:58](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:19, 09:22] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:38, 08:21](3285 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:20, 08:44] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 06:05](1951 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:21, 14:31] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:55, 04:59](1989 MB) - -PASS -- COMPILE 's2s_intel' [15:21, 14:29] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:15, 06:58](2930 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:14, 02:23](2929 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:49, 01:33](2322 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:23, 24:08] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 06:13](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [27:23, 19:36] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:41, 14:31](1941 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [28:14, 07:40](1113 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:55, 16:41](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:20, 08:50] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:27, 23:33](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:15, 14:32] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:36, 03:24](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:12, 02:24](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 02:25](1577 MB) -PASS -- TEST 'control_latlon_intel' [04:09, 02:22](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:13, 02:23](1560 MB) -PASS -- TEST 'control_c48_intel' [08:14, 06:14](1616 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:35, 05:14](733 MB) -PASS -- TEST 'control_c192_intel' [11:46, 08:41](1686 MB) -PASS -- TEST 'control_c384_intel' [14:15, 08:38](2005 MB) -PASS -- TEST 'control_c384gdas_intel' [15:47, 07:09](1199 MB) -PASS -- TEST 'control_stochy_intel' [02:47, 01:25](625 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:44, 00:51](441 MB) -PASS -- TEST 'control_lndp_intel' [02:46, 01:20](625 MB) -PASS -- TEST 'control_iovr4_intel' [03:41, 02:04](619 MB) -PASS -- TEST 'control_iovr5_intel' [03:40, 02:04](619 MB) -PASS -- TEST 'control_p8_intel' [05:23, 03:08](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:34, 02:59](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 03:05](1869 MB) -PASS -- TEST 'control_restart_p8_intel' [04:16, 02:08](1011 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:19, 02:59](1855 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:21, 02:01](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:20, 03:15](1862 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:34, 03:10](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:17, 05:06](1865 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 04:04](1922 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:41, 03:08](1876 MB) -PASS -- TEST 'merra2_thompson_intel' [05:36, 03:30](1874 MB) -PASS -- TEST 'regional_control_intel' [07:00, 04:56](872 MB) -PASS -- TEST 'regional_restart_intel' [04:52, 02:52](872 MB) -PASS -- TEST 'regional_decomp_intel' [07:00, 05:11](879 MB) -PASS -- TEST 'regional_noquilt_intel' [06:59, 04:59](1183 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:00, 05:00](869 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:02, 04:54](870 MB) -PASS -- TEST 'regional_wofs_intel' [07:00, 05:41](1600 MB) - -PASS -- COMPILE 'rrfs_intel' [15:15, 12:14] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:26, 06:06](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:49, 03:47](1205 MB) -PASS -- TEST 'rap_decomp_intel' [08:26, 06:22](1005 MB) -PASS -- TEST 'rap_2threads_intel' [07:25, 05:38](1107 MB) -PASS -- TEST 'rap_restart_intel' [05:21, 03:11](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:28, 06:05](1008 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 06:22](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:20, 04:33](883 MB) -PASS -- TEST 'hrrr_control_intel' [05:10, 03:13](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:10, 03:18](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 02:48](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:40, 01:45](836 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:31, 05:58](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:07, 07:20](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:07, 07:06](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [16:14, 10:34] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:03, 06:33](965 MB) -PASS -- TEST 'control_ras_intel' [04:34, 02:50](656 MB) - -PASS -- COMPILE 'wam_intel' [15:14, 09:51] ( 5 warnings ) -PASS -- TEST 'control_wam_intel' [03:22, 01:52](386 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:16, 16:10] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:33, 02:51](1865 MB) -PASS -- TEST 'regional_control_faster_intel' [05:59, 04:37](863 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 11:26] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:08, 02:28](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:01, 02:25](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:41, 02:49](801 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:35, 02:32](794 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:59, 04:30](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [04:38, 02:35](805 MB) -PASS -- TEST 'control_diag_debug_intel' [05:43, 02:32](1653 MB) -PASS -- TEST 'control_debug_p8_intel' [04:57, 03:08](1894 MB) -PASS -- TEST 'regional_debug_intel' [17:59, 16:12](912 MB) -PASS -- TEST 'rap_control_debug_intel' [07:35, 04:37](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:34, 04:30](1177 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:35, 04:37](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 04:37](1183 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 04:43](1180 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:14, 04:55](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 04:46](1180 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 04:41](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:38, 04:45](1180 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:37, 04:42](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:37, 04:33](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:36, 04:35](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:34, 07:39](1178 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:37, 04:33](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 05:30](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:39, 04:42](1181 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:56, 07:51](1185 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:14, 05:39] ( 860 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:32, 04:41](431 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:18, 10:11] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:43, 03:35](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:09, 05:10](886 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [18:25, 02:45](886 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [21:08, 04:43](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:01, 02:23](944 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:11, 02:53](888 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:04, 03:50](800 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:38, 01:31](778 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:21, 12:11] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [23:26, 01:50](1087 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:58, 00:55](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:05, 01:07](978 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:19, 10:09] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [21:57, 03:35](914 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:19, 06:07] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [24:34, 04:36](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [23:32, 04:23](1053 MB) -PASS -- TEST 'conus13km_debug_intel' [32:32, 13:19](1146 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [32:42, 13:32](824 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:35, 07:42](1141 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:30, 13:21](1206 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:12, 05:46] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:34, 04:40](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [17:20, 16:40] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:23, 04:24](723 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:51, 04:57](1072 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:57, 06:21](788 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [29:18, 10:51](806 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:00, 11:57](824 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [22:14, 04:37](483 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:39, 05:40](498 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [15:55, 02:15](393 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:34, 06:12](460 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [18:00, 03:14](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [18:03, 03:01](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:18, 03:48](593 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:30, 01:11](431 MB) -PASS -- TEST 'gnv1_nested_intel' [13:02, 03:13](786 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:03] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:17, 12:03](625 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [26:22, 25:01] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:21, 06:59](636 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:22, 07:05](686 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:15, 17:36] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:18, 05:18](674 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:19, 14:23] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:25, 05:30](752 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:25, 05:32](739 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:14, 16:09](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:17, 07:33] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:29, 02:28](749 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:31](738 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:28, 02:20](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:23, 02:24](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:35, 02:23](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:32, 02:27](758 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:29, 02:29](759 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:32, 02:20](637 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:05, 05:36](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:05, 05:38](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:27](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 03:50](2015 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 03:52](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:18, 04:52] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:10](744 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:20, 07:33] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:28](760 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:06](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:36, 01:02](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:40](457 MB) - -PASS -- COMPILE 'atml_intel' [15:21, 14:04] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:24, 06:26](1897 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:44, 06:31](1897 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:54, 03:36](1044 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:19, 08:34] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:54, 06:03](1916 MB) - -PASS -- COMPILE 'atmw_intel' [14:21, 12:47] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:42, 02:12](1892 MB) - -PASS -- COMPILE 'atmaero_intel' [13:22, 11:22] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:39, 04:10](3125 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:40, 04:13](2999 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:23, 04:17](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:17, 06:29] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:40, 21:42](4536 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:37, 21:17] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:58, 05:51](3202 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:35, 22:06] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:23, 14:42](1920 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:55, 16:09](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:35, 08:01](1082 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:00, 16:37](1893 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:35, 22:20] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:17, 14:27](1917 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:32, 10:42] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:03, 22:10](1933 MB) + +PASS -- COMPILE 's2swa_intel' [22:34, 20:53] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:01, 06:38](3220 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:22, 06:26](3218 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:07, 04:00](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:02, 06:25](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:07, 04:20](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 06:07](3722 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:50, 06:26](3216 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:36, 05:39](3535 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:22, 06:27](3228 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:41, 09:57](3807 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [17:27, 06:48](3615 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [35:29, 10:43](4495 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:06, 07:20](4654 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:28, 06:10](3208 MB) + +PASS -- COMPILE 's2sw_intel' [21:33, 19:58] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:47, 04:53](1923 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:56, 05:09](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:35, 10:40] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:44, 08:33](3285 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:33, 10:06] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:34, 06:04](1949 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:33, 15:34] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:00, 04:51](1987 MB) + +PASS -- COMPILE 's2s_intel' [17:32, 15:36] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:13, 07:09](2930 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:11, 02:30](2939 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:13, 01:46](2322 MB) + +PASS -- COMPILE 's2swa_faster_intel' [36:17, 36:03] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:29, 06:24](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [39:42, 39:06] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:49, 14:48](1937 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 08:14](1090 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:01, 16:50](1911 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:13, 09:21] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:09, 24:02](1950 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:16, 14:48] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:43, 03:28](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:11, 02:27](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:30](1572 MB) +PASS -- TEST 'control_latlon_intel' [04:11, 02:24](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:15, 02:28](1574 MB) +PASS -- TEST 'control_c48_intel' [08:12, 06:15](1619 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:49, 05:21](734 MB) +PASS -- TEST 'control_c192_intel' [11:16, 08:43](1690 MB) +PASS -- TEST 'control_c384_intel' [16:56, 08:47](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [20:02, 07:14](1197 MB) +PASS -- TEST 'control_stochy_intel' [02:48, 01:29](625 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 00:53](441 MB) +PASS -- TEST 'control_lndp_intel' [02:46, 01:23](624 MB) +PASS -- TEST 'control_iovr4_intel' [03:45, 02:08](623 MB) +PASS -- TEST 'control_iovr5_intel' [03:57, 02:06](620 MB) +PASS -- TEST 'control_p8_intel' [05:49, 03:06](1858 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:11](1864 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:01, 03:11](1869 MB) +PASS -- TEST 'control_restart_p8_intel' [04:25, 02:16](1015 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:53, 03:15](1854 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:28, 02:07](1018 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:17](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:47, 03:17](1956 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:04](1862 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:55, 04:01](1919 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:45, 03:19](1871 MB) +PASS -- TEST 'merra2_thompson_intel' [05:49, 03:27](1869 MB) +PASS -- TEST 'regional_control_intel' [07:11, 05:07](869 MB) +PASS -- TEST 'regional_restart_intel' [05:00, 03:00](870 MB) +PASS -- TEST 'regional_decomp_intel' [07:05, 05:22](869 MB) +PASS -- TEST 'regional_noquilt_intel' [07:01, 04:57](1190 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:04, 05:07](869 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:55, 05:06](871 MB) +PASS -- TEST 'regional_wofs_intel' [07:02, 05:43](1600 MB) + +PASS -- COMPILE 'rrfs_intel' [13:13, 12:32] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:49, 06:07](1011 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:32, 03:45](1208 MB) +PASS -- TEST 'rap_decomp_intel' [08:49, 06:25](1003 MB) +PASS -- TEST 'rap_2threads_intel' [08:51, 05:47](1097 MB) +PASS -- TEST 'rap_restart_intel' [05:18, 03:16](884 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:51, 06:08](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:51, 06:28](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:25, 04:39](884 MB) +PASS -- TEST 'hrrr_control_intel' [05:11, 03:18](1003 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:11, 03:20](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:11, 02:49](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:43, 01:57](836 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:03, 06:01](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:12, 07:23](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 07:08](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [12:15, 11:06] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:13, 06:29](965 MB) +PASS -- TEST 'control_ras_intel' [04:41, 02:53](657 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 10:06] ( 5 warnings ) +PASS -- TEST 'control_wam_intel' [03:27, 01:55](388 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 16:49] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:32, 03:17](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [07:01, 04:57](871 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:13, 12:14] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:09, 02:31](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:00, 02:26](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:39, 02:53](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:42, 02:39](799 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:08, 04:49](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [03:46, 02:38](807 MB) +PASS -- TEST 'control_diag_debug_intel' [05:29, 02:37](1652 MB) +PASS -- TEST 'control_debug_p8_intel' [05:18, 03:24](1886 MB) +PASS -- TEST 'regional_debug_intel' [18:05, 16:46](915 MB) +PASS -- TEST 'rap_control_debug_intel' [05:47, 04:45](1179 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:41, 04:39](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:40, 04:37](1179 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:44, 04:47](1179 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:43, 04:40](1179 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:51, 04:51](1261 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:42, 04:46](1184 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 04:46](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:40, 04:51](1179 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:48, 04:37](1179 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:47, 04:41](1175 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:46, 04:39](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:39, 07:29](1179 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:40, 04:41](1170 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:41, 05:26](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:40, 04:49](1181 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:28, 07:55](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:17, 06:08] ( 860 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:33, 04:49](426 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:44] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:39, 03:29](1063 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:11, 05:09](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:27, 02:49](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:18, 04:47](948 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:28, 02:29](945 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:19, 03:00](885 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:27, 04:09](798 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 01:41](779 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:18, 12:47] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:19, 01:57](1089 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:39, 01:03](1088 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:35, 01:11](977 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 10:59] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:12, 03:42](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:14, 06:49] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:39, 04:37](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:36](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [18:23, 13:49](1141 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 13:41](825 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:28, 07:52](1137 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:29, 13:20](1209 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:14, 06:22] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:46, 04:57](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [18:16, 17:23] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:03, 04:44](727 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:52, 05:22](1079 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:51, 06:46](781 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:28, 11:01](808 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:14, 12:14](824 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:04, 05:00](483 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:54, 06:08](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:23, 02:30](396 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:15, 06:46](464 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:40](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:24](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:41, 04:16](590 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:38](432 MB) +PASS -- TEST 'gnv1_nested_intel' [06:02, 03:42](788 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:14, 07:45] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:43, 12:16](622 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:16, 26:00] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:49, 07:20](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:09, 07:25](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:20, 18:33] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:21, 05:37](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:14, 15:04] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:58, 05:53](749 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:09, 05:46](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:22, 16:20](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:13, 08:08] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:51, 02:30](748 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:51, 01:33](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:42, 02:26](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:44, 02:29](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:39, 02:28](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:41, 02:36](749 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:42, 02:32](749 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 02:24](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:59, 05:49](690 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:32, 05:46](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:29](748 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:02, 04:02](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:53, 04:01](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 05:33] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:45, 05:14](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:13, 08:22] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:42, 02:32](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 02:44] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:54, 01:26](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:02, 01:20](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 00:53](453 MB) + +PASS -- COMPILE 'atml_intel' [16:19, 14:57] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:42, 08:00](1895 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:43, 08:15](1898 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:02, 04:10](1033 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:19, 09:11] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:40, 06:40](1915 MB) + +PASS -- COMPILE 'atmw_intel' [14:19, 13:20] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:43, 02:19](1892 MB) + +PASS -- COMPILE 'atmaero_intel' [13:20, 11:55] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:27, 04:41](3127 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:12, 04:33](3003 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:35](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:18, 07:12] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:55, 22:25](4536 MB) SYNOPSIS: -Starting Date/Time: 20240530 21:20:03 -Ending Date/Time: 20240530 23:10:03 -Total Time: 01h:50m:49s +Starting Date/Time: 20240604 09:46:21 +Ending Date/Time: 20240604 12:27:55 +Total Time: 02h:42m:33s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 4efac7fc92..fd19359d6f 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -e3ddf5cbeaa53d93d400ed4f5a6d6a06c30911f0 +6822d08c616e7b83cd7cfe533fe35d771c6a9a70 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -35,279 +35,279 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240530 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_49617 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240603 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3896 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, 19:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:22, 08:14](3199 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:14, 22:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [28:25, 14:16](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:22, 15:01](1929 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:34, 06:56](1076 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:07, 16:02](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:12, 24:17] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:57, 14:47](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:15, 13:19] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:01, 24:00](1940 MB) - -PASS -- COMPILE 's2swa_intel' [19:12, 18:34] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:10, 08:28](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:17, 08:56](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:35, 05:45](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:16, 08:48](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:15, 06:06](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:00, 07:04](3452 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:56, 09:06](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:49, 08:25](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:17, 08:53](3227 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [24:18, 11:27](3443 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:23, 08:17](3601 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:24, 14:08](4192 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:08, 09:46](4344 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:28, 08:20](3206 MB) - -PASS -- COMPILE 's2sw_intel' [19:12, 19:05] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:29, 05:16](1930 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:34, 05:31](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:15, 13:45] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:05, 10:31](3264 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:32, 06:13](1943 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:13, 15:50] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:56, 05:30](1993 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 16:21] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:22, 07:05](2912 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:23, 02:17](2919 MB) -PASS -- TEST 'cpld_restart_c48_intel' [11:34, 01:15](2312 MB) - -PASS -- COMPILE 's2swa_faster_intel' [29:13, 28:30] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:03, 09:14](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 24:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:17, 15:52](1931 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:12, 07:51](1104 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [49:05, 17:23](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:16, 15:14] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:09, 26:58](1941 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [20:19, 19:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [12:44, 04:17](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [12:23, 03:32](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:12, 03:39](1580 MB) -PASS -- TEST 'control_latlon_intel' [12:58, 03:44](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:13, 03:49](1571 MB) -PASS -- TEST 'control_c48_intel' [12:28, 06:45](1602 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:14, 05:45](728 MB) -PASS -- TEST 'control_c192_intel' [12:07, 10:18](1687 MB) -PASS -- TEST 'control_c384_intel' [21:01, 18:36](1991 MB) -PASS -- TEST 'control_c384gdas_intel' [19:44, 14:31](1188 MB) -PASS -- TEST 'control_stochy_intel' [04:45, 02:24](630 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:58, 01:08](432 MB) -PASS -- TEST 'control_lndp_intel' [03:48, 02:30](629 MB) -PASS -- TEST 'control_iovr4_intel' [04:40, 02:54](626 MB) -PASS -- TEST 'control_iovr5_intel' [04:41, 03:11](626 MB) -PASS -- TEST 'control_p8_intel' [05:42, 03:28](1873 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 04:04](1873 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:24, 04:10](1877 MB) -PASS -- TEST 'control_restart_p8_intel' [05:05, 02:20](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:23, 04:21](1867 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:48, 02:29](1021 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:15](1863 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:57, 03:25](1956 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:34, 05:53](1874 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:08, 04:51](1925 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:15, 03:49](1880 MB) -PASS -- TEST 'merra2_thompson_intel' [08:12, 04:31](1876 MB) -PASS -- TEST 'regional_control_intel' [07:00, 04:57](864 MB) -PASS -- TEST 'regional_restart_intel' [04:13, 02:45](862 MB) -PASS -- TEST 'regional_decomp_intel' [06:58, 05:09](871 MB) -PASS -- TEST 'regional_2threads_intel' [05:17, 03:09](1014 MB) -PASS -- TEST 'regional_noquilt_intel' [06:32, 04:50](1188 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:06](862 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:04, 05:18](868 MB) -PASS -- TEST 'regional_wofs_intel' [08:03, 06:11](1594 MB) - -PASS -- COMPILE 'rrfs_intel' [15:15, 15:00] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [15:51, 07:08](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:30, 04:41](1183 MB) -PASS -- TEST 'rap_decomp_intel' [16:43, 07:25](1010 MB) -PASS -- TEST 'rap_2threads_intel' [11:56, 06:30](1094 MB) -PASS -- TEST 'rap_restart_intel' [06:43, 03:36](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [15:51, 07:02](1013 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:51, 07:16](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:35, 05:00](882 MB) -PASS -- TEST 'hrrr_control_intel' [12:48, 04:05](1007 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:48, 03:57](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:39, 03:36](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:53, 02:42](839 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:56, 07:06](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:05, 08:26](1968 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:09, 08:08](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [15:16, 15:09] -PASS -- TEST 'control_csawmg_intel' [17:48, 07:13](964 MB) -PASS -- TEST 'control_ras_intel' [12:38, 03:39](655 MB) - -PASS -- COMPILE 'wam_intel' [15:16, 14:15] -PASS -- TEST 'control_wam_intel' [12:38, 02:20](366 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:14, 21:09] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:40, 03:27](1874 MB) -PASS -- TEST 'regional_control_faster_intel' [06:11, 04:51](862 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 16:05] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:41, 03:17](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 03:07](1590 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:47, 03:35](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:42, 03:22](787 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:42](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [03:50, 03:05](797 MB) -PASS -- TEST 'control_diag_debug_intel' [05:18, 03:14](1646 MB) -PASS -- TEST 'control_debug_p8_intel' [06:19, 03:50](1888 MB) -PASS -- TEST 'regional_debug_intel' [19:18, 16:41](889 MB) -PASS -- TEST 'rap_control_debug_intel' [06:46, 05:24](1172 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:04, 05:33](1170 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:05, 05:23](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:01, 05:10](1177 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:46, 05:28](1172 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:57, 05:49](1255 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:43, 05:14](1172 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:52, 05:37](1172 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:44, 05:36](1174 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:51, 05:10](1171 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:43, 05:28](1172 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:55, 05:23](1170 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:48, 08:28](1171 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [14:33, 05:20](1169 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [17:50, 06:32](1174 MB) -PASS -- TEST 'rap_flake_debug_intel' [21:51, 05:12](1174 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [24:29, 09:00](1173 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:16, 11:17] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [22:43, 05:24](400 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:12, 15:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:30, 04:06](1047 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [28:34, 06:15](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:06, 03:42](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [31:15, 05:35](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [33:04, 02:46](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [33:13, 03:41](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [17:11, 04:19](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:49, 01:43](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:16, 16:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [31:25, 02:09](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:50, 01:09](1077 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:44, 01:47](977 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:15, 16:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [34:19, 04:35](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 12:22] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:43, 05:00](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [32:48, 04:50](1049 MB) -PASS -- TEST 'conus13km_debug_intel' [42:32, 14:14](1134 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [42:32, 13:52](810 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [36:16, 08:13](1116 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [41:14, 14:03](1201 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:11, 12:22] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [31:40, 05:03](1069 MB) - -PASS -- COMPILE 'hafsw_intel' [21:13, 20:22] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [32:40, 05:30](711 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [30:59, 04:38](1060 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [33:40, 07:39](744 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [36:42, 11:42](793 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [39:46, 13:02](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [30:25, 05:33](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:01, 06:47](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [25:21, 03:08](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:09, 08:04](448 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [22:17, 03:44](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:31, 03:31](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:34, 04:42](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [18:04, 01:48](406 MB) -PASS -- TEST 'gnv1_nested_intel' [18:26, 04:05](773 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:15, 14:58] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [22:20, 13:18](588 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [29:12, 28:19] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:26, 07:39](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:26, 07:47](788 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:17, 21:03] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:13, 06:03](782 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:13, 19:34] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:19, 06:14](753 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:28, 06:11](731 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:17, 20:03](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:12, 13:07] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:33, 02:37](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:36](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:27, 02:29](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:29, 02:28](637 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:36, 02:31](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:27, 02:33](759 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:27, 02:41](759 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:26, 02:34](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:07, 06:04](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:03, 05:51](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:32, 02:35](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 04:35](2021 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:30, 04:36](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:13, 10:28] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:30, 05:26](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:15, 14:07] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:32, 02:43](747 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 04:42] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:03, 02:18](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:54, 01:35](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:59, 01:10](456 MB) - -PASS -- COMPILE 'atml_intel' [20:12, 19:25] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:50, 07:32](1899 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:46, 07:24](1899 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:01, 04:02](1033 MB) - -PASS -- COMPILE 'atml_debug_intel' [15:15, 14:33] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:33, 06:25](1914 MB) - -PASS -- COMPILE 'atmw_intel' [19:13, 18:21] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:19, 02:24](1903 MB) - -PASS -- COMPILE 'atmaero_intel' [17:16, 17:11] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:22, 06:29](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:21, 07:08](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:11, 07:01](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [14:17, 13:37] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:46, 18:23](4486 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:15, 18:37] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:55, 07:13](3196 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 23:59] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:28, 13:38](1927 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:27, 14:35](1933 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:43, 06:51](1080 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:22, 14:54](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:14, 22:44] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:41, 13:38](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:11, 12:54] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:46, 24:47](1936 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 18:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:00, 07:57](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:27, 08:03](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:50, 04:54](3155 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:07, 07:59](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:32, 05:32](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:01, 06:44](3459 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:58, 08:03](3220 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:54, 07:10](3167 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:00, 08:03](3225 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:37, 10:29](3441 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:08, 07:18](3604 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:14, 13:00](4192 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:19, 09:15](4342 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:53, 07:42](3205 MB) + +PASS -- COMPILE 's2sw_intel' [17:13, 17:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:30, 05:09](1930 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:33, 05:19](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:33] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:50, 09:49](3267 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:57] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:33, 06:03](1943 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:13, 15:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:29, 05:00](1993 MB) + +PASS -- COMPILE 's2s_intel' [16:13, 15:49] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:01, 07:03](2913 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:22, 02:04](2920 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:11, 01:11](2314 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:12, 25:33] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:42, 07:58](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:12, 21:07] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:46, 15:16](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:34, 07:40](1089 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:52, 17:09](1908 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:12, 12:07] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:30, 26:47](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:29, 03:50](668 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:03, 03:07](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:01, 03:32](1570 MB) +PASS -- TEST 'control_latlon_intel' [04:54, 03:17](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:05, 03:29](1572 MB) +PASS -- TEST 'control_c48_intel' [09:12, 06:38](1599 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:56, 05:40](720 MB) +PASS -- TEST 'control_c192_intel' [10:50, 09:52](1682 MB) +PASS -- TEST 'control_c384_intel' [20:06, 18:14](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [17:54, 14:10](1179 MB) +PASS -- TEST 'control_stochy_intel' [03:29, 02:12](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:11](426 MB) +PASS -- TEST 'control_lndp_intel' [02:32, 01:59](623 MB) +PASS -- TEST 'control_iovr4_intel' [03:33, 02:43](620 MB) +PASS -- TEST 'control_iovr5_intel' [03:32, 02:45](620 MB) +PASS -- TEST 'control_p8_intel' [05:03, 03:31](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:17, 03:23](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:04, 03:13](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [03:06, 02:00](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:07, 03:16](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:01, 01:57](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:08, 03:27](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:11, 03:00](1954 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:52, 05:32](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:18, 04:15](1918 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:12, 03:21](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [05:06, 03:38](1866 MB) +PASS -- TEST 'regional_control_intel' [05:40, 05:03](859 MB) +PASS -- TEST 'regional_restart_intel' [03:37, 02:38](856 MB) +PASS -- TEST 'regional_decomp_intel' [05:44, 04:54](860 MB) +PASS -- TEST 'regional_2threads_intel' [04:42, 03:04](1004 MB) +PASS -- TEST 'regional_noquilt_intel' [05:39, 04:44](1180 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:50, 04:43](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:44, 04:51](866 MB) +PASS -- TEST 'regional_wofs_intel' [07:44, 06:13](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [13:12, 12:54] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:14, 06:53](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:10, 04:00](1184 MB) +PASS -- TEST 'rap_decomp_intel' [10:19, 07:12](1007 MB) +PASS -- TEST 'rap_2threads_intel' [08:14, 06:13](1095 MB) +PASS -- TEST 'rap_restart_intel' [05:06, 03:48](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:14, 06:54](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:19, 07:16](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:57, 05:11](878 MB) +PASS -- TEST 'hrrr_control_intel' [06:16, 04:07](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:12, 03:54](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 03:10](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:08](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:19, 06:37](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:50, 08:08](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:47, 08:09](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [13:12, 12:46] +PASS -- TEST 'control_csawmg_intel' [07:39, 06:40](964 MB) +PASS -- TEST 'control_ras_intel' [04:28, 03:11](657 MB) + +PASS -- COMPILE 'wam_intel' [13:12, 12:25] +PASS -- TEST 'control_wam_intel' [03:25, 02:24](367 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:12, 19:02] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:03, 03:33](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [05:46, 04:40](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 12:50] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:54, 03:06](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 03:12](1579 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:20](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 03:04](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:38, 04:34](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [04:31, 02:57](791 MB) +PASS -- TEST 'control_diag_debug_intel' [03:50, 02:59](1642 MB) +PASS -- TEST 'control_debug_p8_intel' [04:41, 03:16](1877 MB) +PASS -- TEST 'regional_debug_intel' [17:50, 16:23](892 MB) +PASS -- TEST 'rap_control_debug_intel' [07:09, 05:12](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:12, 05:07](1162 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:13, 05:03](1168 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:13, 05:01](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:58, 05:16](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:43, 05:25](1250 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 05:19](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:58, 05:07](1171 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:33, 05:09](1170 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:07](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:39, 05:10](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:39, 05:13](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:34, 08:03](1165 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:42, 05:08](1160 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:36, 06:11](1173 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:37, 05:14](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:07, 08:35](1172 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:10, 08:39] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [06:33, 05:01](396 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:13, 12:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:48](1051 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 06:10](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 03:20](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:56, 05:13](944 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:55, 02:48](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 03:42](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:54, 04:30](786 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:36, 02:01](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 14:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:00, 02:29](1093 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:01, 01:17](1072 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:38, 02:09](977 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:13, 12:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:03, 04:26](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:13, 09:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:34, 04:57](1044 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:33, 04:59](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [16:01, 14:19](1125 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:59, 14:15](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:49, 08:22](1116 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 13:57](1197 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 09:06] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 05:02](1072 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 15:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:42, 05:20](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:36, 04:35](1060 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:24, 07:44](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:22, 11:35](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:23, 13:24](800 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:27, 05:23](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 06:49](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:07, 02:56](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:23, 08:00](435 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:51, 04:27](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:21, 03:43](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:04, 04:40](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:37, 01:42](403 MB) +PASS -- TEST 'gnv1_nested_intel' [08:11, 04:12](766 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:53] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:04, 13:02](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:15, 23:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:46, 07:43](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:48, 07:53](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:14, 17:36] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 06:48](784 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:12, 15:12] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:17, 06:52](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:18, 06:36](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:07, 20:15](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:16, 11:38] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:27, 02:44](756 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:29, 01:34](744 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:27, 02:34](634 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:29, 02:29](634 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:27, 02:28](636 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:23, 02:35](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:23, 02:33](759 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:25](634 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:49, 06:09](690 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:50, 06:00](669 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:28, 02:34](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:29, 04:31](2012 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:25, 04:31](2011 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:14, 07:52] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:23, 05:28](740 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:14, 12:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:34](757 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 03:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:54, 01:45](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:48, 01:25](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:47, 00:59](457 MB) + +PASS -- COMPILE 'atml_intel' [16:12, 16:02] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:33, 07:52](1891 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:33, 07:59](1891 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 03:38](1036 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:15, 11:11] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:20, 06:21](1916 MB) + +PASS -- COMPILE 'atmw_intel' [16:14, 15:50] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:49, 02:28](1900 MB) + +PASS -- COMPILE 'atmaero_intel' [15:12, 14:49] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:15, 05:52](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:07, 06:37](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:00, 06:31](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:12, 10:47] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:11, 18:15](4498 MB) SYNOPSIS: -Starting Date/Time: 20240530 16:47:35 -Ending Date/Time: 20240530 19:00:29 -Total Time: 02h:13m:50s +Starting Date/Time: 20240604 02:28:12 +Ending Date/Time: 20240604 03:59:05 +Total Time: 01h:31m:46s Compiles Completed: 39/39 Tests Completed: 183/183 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 42c4ca1c90..b8e783c371 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -e3ddf5cbeaa53d93d400ed4f5a6d6a06c30911f0 +420edab4c1219b1cd830524f2400f3b286b617fc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -24,373 +24,557 @@ 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-20240530 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_3973640 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240603 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_1399880 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [13:54, 13:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:51, 05:55](3280 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:36, 16:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:31, 17:18](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:40, 18:28](2158 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:37, 08:36](1225 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:44, 19:41](1843 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:37, 16:37] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:34, 17:04](1930 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 05:12] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:53, 23:00](1878 MB) - -PASS -- COMPILE 's2swa_intel' [13:32, 13:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:13, 06:03](3306 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:02, 06:02](3306 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:45, 04:15](3219 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:12, 06:17](3329 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:14, 03:48](3239 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:52, 06:00](3586 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:25, 06:45](3297 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:41, 05:29](3176 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:07, 06:07](3294 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:28, 10:38](3486 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:13, 06:42](3587 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:49, 10:26](4248 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:09, 06:32](4330 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:35, 05:42](3295 MB) - -PASS -- COMPILE 's2sw_intel' [12:46, 12:45] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:42, 04:56](1977 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:23, 04:33](2020 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:13, 05:13] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:37, 08:39](3316 MB) - -PASS -- COMPILE 's2sw_debug_intel' [04:52, 04:51] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:57, 06:02](1962 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:54, 11:54] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:20, 04:29](2025 MB) - -PASS -- COMPILE 's2s_intel' [11:54, 11:53] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:02, 09:28](3064 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:31, 02:58](3042 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:19, 01:32](2475 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:16, 21:16] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:36, 05:44](3315 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:34, 16:34] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:35, 17:47](1979 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:37, 08:26](1261 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:05, 20:11](1887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:37, 05:37] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 25:01](1923 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:06, 13:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:57, 03:43](686 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:38, 03:09](1576 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:45, 03:15](1598 MB) -PASS -- TEST 'control_latlon_intel' [03:25, 03:02](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:34, 03:05](1590 MB) -PASS -- TEST 'control_c48_intel' [08:07, 07:44](1750 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 06:26](860 MB) -PASS -- TEST 'control_c192_intel' [11:47, 10:55](1728 MB) -PASS -- TEST 'control_c384_intel' [12:29, 11:00](2000 MB) -PASS -- TEST 'control_c384gdas_intel' [11:02, 08:26](1375 MB) -PASS -- TEST 'control_stochy_intel' [01:59, 01:43](645 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:24, 01:04](487 MB) -PASS -- TEST 'control_lndp_intel' [01:53, 01:37](639 MB) -PASS -- TEST 'control_iovr4_intel' [02:46, 02:32](643 MB) -PASS -- TEST 'control_iovr5_intel' [02:44, 02:31](635 MB) -PASS -- TEST 'control_p8_intel' [04:09, 03:14](1881 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:08, 03:12](1857 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:09, 03:04](1888 MB) -PASS -- TEST 'control_restart_p8_intel' [03:19, 02:22](1120 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:12, 03:11](1880 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:44, 01:54](1148 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:04, 03:22](1865 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:10, 03:14](1975 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:36, 05:41](1876 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:02, 04:21](1946 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:56, 03:19](1885 MB) -PASS -- TEST 'merra2_thompson_intel' [04:44, 04:00](1885 MB) -PASS -- TEST 'regional_control_intel' [06:20, 05:50](1075 MB) -PASS -- TEST 'regional_restart_intel' [03:25, 02:59](1090 MB) -PASS -- TEST 'regional_decomp_intel' [06:24, 05:57](1078 MB) -PASS -- TEST 'regional_2threads_intel' [04:00, 03:38](1081 MB) -PASS -- TEST 'regional_noquilt_intel' [05:53, 05:31](1384 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:57, 05:33](1091 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:53, 05:29](1079 MB) -PASS -- TEST 'regional_wofs_intel' [07:14, 06:52](1900 MB) - -PASS -- COMPILE 'rrfs_intel' [11:35, 11:34] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:24, 07:53](1096 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:08, 04:17](1277 MB) -PASS -- TEST 'rap_decomp_intel' [08:45, 08:15](1044 MB) -PASS -- TEST 'rap_2threads_intel' [07:47, 07:24](1168 MB) -PASS -- TEST 'rap_restart_intel' [04:45, 04:15](1086 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:18, 07:49](1096 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 08:11](1035 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:40, 06:02](1116 MB) -PASS -- TEST 'hrrr_control_intel' [04:39, 04:01](1046 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:46, 04:14](1035 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:17, 03:49](1100 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:36, 02:17](996 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:50, 08:00](1084 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:17, 09:41](1972 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:38, 09:17](2053 MB) - -PASS -- COMPILE 'csawmg_intel' [10:49, 10:49] -PASS -- TEST 'control_csawmg_intel' [06:38, 06:14](1002 MB) -PASS -- TEST 'control_ras_intel' [03:32, 03:18](723 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:45, 04:45] -PASS -- TEST 'control_csawmg_gnu' [09:08, 08:41](733 MB) - -PASS -- COMPILE 'wam_intel' [10:31, 10:31] -PASS -- TEST 'control_wam_intel' [02:29, 02:16](636 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:51, 18:51] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:37, 02:59](1874 MB) -PASS -- TEST 'regional_control_faster_intel' [05:25, 05:02](1080 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:14, 07:13] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:31, 02:51](1582 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:29, 02:53](1581 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:27, 03:16](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:12, 03:00](793 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:55, 04:29](1122 MB) -PASS -- TEST 'control_ras_debug_intel' [03:04, 02:53](811 MB) -PASS -- TEST 'control_diag_debug_intel' [03:17, 02:45](1637 MB) -PASS -- TEST 'control_debug_p8_intel' [03:39, 03:12](1874 MB) -PASS -- TEST 'regional_debug_intel' [18:19, 17:54](1057 MB) -PASS -- TEST 'rap_control_debug_intel' [05:11, 04:58](1187 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:59, 04:48](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:09, 04:58](1169 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 05:06](1176 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 05:00](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:45, 05:22](1254 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 05:02](1181 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:12, 05:01](1175 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 05:04](1175 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:12](1171 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:16, 04:58](1175 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:30, 05:14](1172 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 08:07](1172 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:18, 04:59](1166 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:13, 05:59](1178 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:14, 04:58](1167 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:56, 08:27](1179 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:32, 05:32] -PASS -- TEST 'control_csawmg_debug_gnu' [02:49, 02:24](714 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:04, 06:04] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [05:11, 05:01](479 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:35, 12:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 04:22](1143 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:14, 06:45](1026 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:01, 03:37](977 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:59, 06:26](1086 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:41, 03:18](945 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:05, 03:39](915 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:35, 05:02](1025 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:10, 01:54](917 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:38, 15:38] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:47, 02:11](1181 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:34, 01:04](1098 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:55, 01:22](1099 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:57, 11:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:49, 04:21](974 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:47, 04:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:57, 04:45](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:58, 04:46](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [15:00, 14:24](1177 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:04, 14:26](879 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:45, 08:11](1105 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:23, 14:50](1246 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:29, 04:27] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:10, 04:57](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [12:57, 12:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:12, 05:11](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:58, 06:33](1099 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:01, 06:57](814 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:43, 13:43](833 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:48, 15:36](867 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:37, 05:54](482 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 07:26](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 03:05](353 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:49, 07:43](467 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 03:57](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:13, 03:39](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:01, 04:22](566 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:17](387 MB) -PASS -- TEST 'gnv1_nested_intel' [04:48, 04:16](786 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:36, 04:35] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:44, 13:04](532 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:57, 20:56] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:42, 08:56](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 09:03](693 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:48, 12:48] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:27, 06:43](677 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:56, 11:55] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:33, 06:40](812 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:36, 06:41](797 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:31, 15:54](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:12, 06:11] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:56, 02:47](1146 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:50, 01:40](1097 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:50, 02:41](1010 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:52, 02:42](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:43, 02:38](1013 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:45, 02:39](1146 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:48, 02:40](1137 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:44, 02:37](1005 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:29, 06:18](1057 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:05](1031 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:46, 02:41](1141 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:07, 03:58](2430 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:02, 03:53](2490 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:04, 03:03] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 06:19](1063 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:20, 06:20] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:46, 02:40](1147 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:27, 01:27] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:50](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:14, 00:59](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:32](316 MB) - -PASS -- COMPILE 'atml_intel' [12:44, 12:44] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:12, 04:29](1833 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:14, 04:30](1841 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:16, 02:37](1067 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:41, 05:41] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:41, 05:56](1855 MB) - -PASS -- COMPILE 'atmw_intel' [11:33, 11:32] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:29, 01:57](1893 MB) - -PASS -- COMPILE 'atmaero_intel' [11:34, 11:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:18, 04:25](3192 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:46, 05:05](3076 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:35, 05:05](3117 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:05, 04:05] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:38, 26:57](4444 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 05:11] -PASS -- TEST 'control_c48_gnu' [11:41, 11:19](1530 MB) -PASS -- TEST 'control_stochy_gnu' [03:44, 03:30](493 MB) -PASS -- TEST 'control_ras_gnu' [05:05, 04:51](496 MB) -PASS -- TEST 'control_p8_gnu' [05:50, 05:02](1450 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:23, 04:45](1476 MB) -PASS -- TEST 'control_flake_gnu' [11:04, 10:52](531 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:45, 04:45] -PASS -- TEST 'rap_control_gnu' [11:41, 11:11](847 MB) -PASS -- TEST 'rap_decomp_gnu' [11:33, 11:08](850 MB) -PASS -- TEST 'rap_2threads_gnu' [10:36, 10:12](929 MB) -PASS -- TEST 'rap_restart_gnu' [06:15, 05:40](574 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:46, 11:06](853 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:10, 11:13](840 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:29, 08:33](575 MB) -PASS -- TEST 'hrrr_control_gnu' [06:11, 05:42](847 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:22, 05:52](834 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:37, 05:10](919 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:17, 05:44](844 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:56](556 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:30, 02:57](649 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:18, 10:38](846 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:25, 08:25] -PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:49](1261 MB) -PASS -- TEST 'regional_debug_gnu' [11:57, 11:20](733 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:06, 02:45](845 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:44, 02:56](847 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:04, 02:49](852 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:44, 02:57](843 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:52, 03:05](927 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:43, 04:26](839 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:55, 03:16](850 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:57, 03:18](846 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:46, 02:15](484 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:17, 02:31](477 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:00, 01:58](1450 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:56, 03:25](846 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:43, 03:14](851 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:07, 04:29](857 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:28, 02:27] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:44, 04:44] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:41, 10:04](703 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:47, 05:22](704 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:40, 08:53](752 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:22, 04:49](748 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:44, 05:14](706 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 07:07](546 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:08, 02:41](540 MB) -PASS -- TEST 'conus13km_control_gnu' [04:12, 03:28](874 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:25, 05:56](881 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:24, 01:58](555 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:33, 12:32] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:25, 05:53](738 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:44, 08:43] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:08, 02:53](701 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 02:56](704 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:54, 07:12](873 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:54, 07:15](569 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:14, 07:42](873 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:47, 07:09](940 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:44, 08:43] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:48, 02:34](727 MB) - -PASS -- COMPILE 's2swa_gnu' [14:40, 14:40] - -PASS -- COMPILE 's2s_gnu' [14:26, 14:26] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:36, 06:49](1530 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:40, 03:39] - -PASS -- COMPILE 's2sw_pdlib_gnu' [14:51, 14:50] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:53, 22:04](1450 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:50, 03:49] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:49, 13:03](1445 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [14:09, 14:08] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:08, 03:02](699 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:48, 13:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:40, 05:48](3288 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:40, 16:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:01, 17:14](1944 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:04, 18:01](2143 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:16, 08:12](1238 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:03, 19:22](1844 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:31, 16:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:24, 16:56](1958 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:38, 05:37] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:41, 22:55](1881 MB) + +PASS -- COMPILE 's2swa_intel' [13:32, 13:32] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:08, 06:09](3309 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:04, 06:05](3307 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:45, 03:37](3235 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:02, 06:07](3331 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:43, 03:36](3251 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:32, 05:44](3583 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:51, 06:02](3309 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:41, 04:55](3181 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:54, 05:59](3321 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:08, 10:26](3499 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:12, 06:27](3592 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:36, 10:06](4196 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:02, 06:36](4333 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:32, 05:40](3300 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 13:10] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:46, 04:57](1959 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:29, 04:37](2024 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:35, 05:34] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:48, 08:56](3264 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:48, 04:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:07, 06:09](1958 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:48, 11:48] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:26, 04:30](2016 MB) + +PASS -- COMPILE 's2s_intel' [12:25, 12:25] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:11, 09:38](3075 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:11, 02:40](3056 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:06, 01:33](2467 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:40, 21:40] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:49, 05:50](3319 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:02, 16:02] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:16, 17:23](1953 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:15, 08:14](1237 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:36, 19:51](1859 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:08, 05:08] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:42, 24:53](1912 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:24, 12:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:36, 03:23](682 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:31, 03:00](1579 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:38, 03:03](1578 MB) +PASS -- TEST 'control_latlon_intel' [03:25, 02:58](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:33, 03:01](1571 MB) +PASS -- TEST 'control_c48_intel' [08:10, 07:41](1730 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 06:28](852 MB) +PASS -- TEST 'control_c192_intel' [11:24, 10:43](1736 MB) +PASS -- TEST 'control_c384_intel' [12:18, 10:39](1989 MB) +PASS -- TEST 'control_c384gdas_intel' [10:45, 08:04](1372 MB) +PASS -- TEST 'control_stochy_intel' [02:00, 01:45](640 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:23, 01:04](487 MB) +PASS -- TEST 'control_lndp_intel' [01:47, 01:34](640 MB) +PASS -- TEST 'control_iovr4_intel' [02:47, 02:31](635 MB) +PASS -- TEST 'control_iovr5_intel' [02:44, 02:28](630 MB) +PASS -- TEST 'control_p8_intel' [04:00, 03:13](1865 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:00, 03:13](1873 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:44, 03:04](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [02:26, 01:49](1121 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:51, 03:12](1870 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:22, 01:46](1142 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:51, 03:16](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:36, 03:02](1966 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:10, 05:39](1873 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:54, 04:16](1943 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:01, 03:21](1886 MB) +PASS -- TEST 'merra2_thompson_intel' [04:09, 03:30](1870 MB) +PASS -- TEST 'regional_control_intel' [05:43, 05:20](1080 MB) +PASS -- TEST 'regional_restart_intel' [03:37, 03:13](1082 MB) +PASS -- TEST 'regional_decomp_intel' [06:06, 05:43](1079 MB) +PASS -- TEST 'regional_2threads_intel' [03:56, 03:32](1075 MB) +PASS -- TEST 'regional_noquilt_intel' [05:43, 05:19](1377 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:45, 05:19](1083 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:45, 05:22](1092 MB) +PASS -- TEST 'regional_wofs_intel' [07:13, 06:49](1899 MB) + +PASS -- COMPILE 'rrfs_intel' [11:18, 11:17] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:17, 07:48](1087 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:02, 04:12](1282 MB) +PASS -- TEST 'rap_decomp_intel' [08:45, 08:15](1019 MB) +PASS -- TEST 'rap_2threads_intel' [07:57, 07:22](1164 MB) +PASS -- TEST 'rap_restart_intel' [04:40, 04:06](1084 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:14, 07:47](1080 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:48, 08:24](1020 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:47, 06:12](1110 MB) +PASS -- TEST 'hrrr_control_intel' [04:27, 04:00](1025 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:37, 04:12](990 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:08, 03:42](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:26, 02:10](979 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:11, 07:39](1082 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:34, 09:16](1979 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:15, 09:01](2050 MB) + +PASS -- COMPILE 'csawmg_intel' [10:40, 10:40] +PASS -- TEST 'control_csawmg_intel' [06:42, 06:19](1006 MB) +PASS -- TEST 'control_ras_intel' [03:33, 03:22](739 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:22, 04:22] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_csawmg_gnu' [, ]( MB) + +PASS -- COMPILE 'wam_intel' [10:11, 10:10] +PASS -- TEST 'control_wam_intel' [02:25, 02:12](633 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:23, 19:23] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:39, 02:56](1875 MB) +PASS -- TEST 'regional_control_faster_intel' [05:31, 05:03](1075 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:15, 06:14] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:20, 02:47](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:11, 02:38](1581 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:23, 03:09](780 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:02, 02:47](791 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:47, 04:22](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [03:03, 02:51](792 MB) +PASS -- TEST 'control_diag_debug_intel' [03:18, 02:44](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [03:31, 03:02](1868 MB) +PASS -- TEST 'regional_debug_intel' [17:48, 17:21](1063 MB) +PASS -- TEST 'rap_control_debug_intel' [05:09, 04:56](1165 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:04, 04:52](1166 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 04:59](1172 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 05:05](1177 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:08, 04:55](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:39, 05:13](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:25, 05:10](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:36, 05:24](1168 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:37, 05:22](1167 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 05:03](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:08, 04:54](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:12, 04:58](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 08:00](1165 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:11, 04:57](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:11, 05:56](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:02, 04:48](1169 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:57, 08:28](1178 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:51, 04:51] +PASS -- TEST 'control_csawmg_debug_gnu' [02:48, 02:21](720 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:54, 03:54] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [05:19, 05:06](471 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:56, 10:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:58](1141 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:57, 06:30](1033 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:54, 03:27](974 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:41, 06:11](1076 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 03:14](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:03, 03:39](919 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:41, 05:07](1015 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:15, 01:54](917 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 15:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:54, 02:08](1186 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:57](1109 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:54, 01:17](1094 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:49, 10:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:58, 04:17](967 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:08, 04:06] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 05:01](1049 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:09, 04:50](1046 MB) +PASS -- TEST 'conus13km_debug_intel' [15:17, 14:35](1185 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:23, 14:46](881 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:53, 08:15](1102 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:20, 14:43](1276 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:58, 03:57] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 04:59](1093 MB) + +PASS -- COMPILE 'hafsw_intel' [12:45, 12:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:05, 05:05](728 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:56, 06:32](1109 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:31, 07:13](806 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:47, 13:43](857 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:36, 15:19](867 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:46, 05:59](493 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:20, 07:07](509 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:37, 03:01](365 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:52, 07:53](475 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:37, 04:00](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:25, 03:46](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:00, 04:11](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:38, 01:18](404 MB) +PASS -- TEST 'gnv1_nested_intel' [05:06, 04:21](797 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:44, 04:43] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:00, 13:12](546 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:43, 20:42] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:44, 08:50](645 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:11, 09:10](690 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:24, 12:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:29, 06:31](680 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:47, 11:46] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:40, 06:35](811 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:50, 06:46](797 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:36, 15:57](1203 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:09, 06:07] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:54, 02:44](1144 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:46, 01:37](1076 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:51, 02:40](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:48, 02:39](1009 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:45, 02:36](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:52, 02:42](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:50, 02:42](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:43, 02:36](1010 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:44, 06:35](1057 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:46, 06:37](1033 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:44, 02:38](1145 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:05, 03:54](2477 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:27, 04:16](2481 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [02:58, 02:56] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 06:22](1069 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:15, 06:13] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:48, 02:40](1146 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:21, 01:20] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:08, 00:48](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:07, 00:52](313 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:51, 00:36](315 MB) + +PASS -- COMPILE 'atml_intel' [12:39, 12:38] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:23, 04:28](1832 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:28, 04:32](1839 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:07, 02:29](1073 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:09, 05:08] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:39, 05:50](1841 MB) + +PASS -- COMPILE 'atmw_intel' [11:35, 11:34] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:38, 01:57](1913 MB) + +PASS -- COMPILE 'atmaero_intel' [11:20, 11:19] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:05, 04:15](3173 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:48, 04:59](3072 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:38, 05:00](3082 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:28, 04:27] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:30, 21:28](4288 MB) + +PASS -- COMPILE 'atm_gnu' [04:45, 04:45] +PASS -- TEST 'control_c48_gnu' [11:40, 11:15](1530 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_ras_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_flake_gnu' [, ]( MB) + +PASS -- COMPILE 'rrfs_gnu' [04:21, 04:20] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_decomp_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_restart_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_decomp_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_restart_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_noqr_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_restart_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_restart_noqr_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1beta_gnu' [, ]( MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:33, 07:32] +PASS -- TEST 'control_diag_debug_gnu' [02:15, 01:38](1258 MB) +PASS -- TEST 'regional_debug_gnu' [12:23, 11:56](723 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:48, 02:37](810 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:47, 02:35](808 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:48, 02:35](814 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:52, 02:38](814 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:21, 02:52](899 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:24, 04:10](811 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:53, 02:39](812 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:45, 02:33](808 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:50, 01:38](443 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:57, 01:46](438 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:17, 01:49](1412 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:55, 02:41](813 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:08, 02:55](813 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:49, 04:23](819 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:46, 02:43] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:29, 04:28] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_restart_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_2threads_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_restart_mismatch_gnu' [, ]( MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:55, 10:53] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_gnu' [, ]( MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:35, 07:35] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:59, 02:41](696 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:40, 02:28](701 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:44, 07:09](863 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:38, 07:04](566 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:04, 07:34](865 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:34, 07:03](930 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:36, 07:35] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:51, 02:38](721 MB) + +PASS -- COMPILE 's2swa_gnu' [15:41, 15:40] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2s_gnu' [15:26, 15:26] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_nowave_noaero_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:21, 03:20] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:57, 15:56] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:08, 03:08] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:53, 17:05](1446 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:07, 15:06] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'datm_cdeps_control_cfsr_gnu' [, ]( MB) SYNOPSIS: -Starting Date/Time: 20240531 03:20:59 -Ending Date/Time: 20240531 07:40:16 -Total Time: 04h:19m:41s +Starting Date/Time: 20240604 21:54:37 +Ending Date/Time: 20240605 02:15:02 +Total Time: 04h:21m:21s Compiles Completed: 55/55 -Tests Completed: 243/243 +Tests Completed: 209/246 +Failed Tests: +* TEST control_csawmg_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_control_csawmg_gnu.log +* TEST control_stochy_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_control_stochy_gnu.log +* TEST control_ras_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_control_ras_gnu.log +* TEST control_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_control_p8_gnu.log +* TEST control_p8_ugwpv1_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_control_p8_ugwpv1_gnu.log +* TEST control_flake_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_control_flake_gnu.log +* TEST rap_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_control_gnu.log +* TEST rap_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_decomp_gnu.log +* TEST rap_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_2threads_gnu.log +* TEST rap_restart_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_restart_gnu.log +* TEST rap_sfcdiff_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_sfcdiff_gnu.log +* TEST rap_sfcdiff_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_sfcdiff_decomp_gnu.log +* TEST rap_sfcdiff_restart_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_sfcdiff_restart_gnu.log +* TEST hrrr_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_hrrr_control_gnu.log +* TEST hrrr_control_noqr_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_hrrr_control_noqr_gnu.log +* TEST hrrr_control_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_hrrr_control_2threads_gnu.log +* TEST hrrr_control_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_hrrr_control_decomp_gnu.log +* TEST hrrr_control_restart_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_hrrr_control_restart_gnu.log +* TEST hrrr_control_restart_noqr_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_hrrr_control_restart_noqr_gnu.log +* TEST rrfs_v1beta_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rrfs_v1beta_gnu.log +* TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_control_wam_debug_gnu.log +* TEST rap_control_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_control_dyn32_phy32_gnu.log +* TEST hrrr_control_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_hrrr_control_dyn32_phy32_gnu.log +* TEST rap_2threads_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_2threads_dyn32_phy32_gnu.log +* TEST hrrr_control_2threads_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_hrrr_control_2threads_dyn32_phy32_gnu.log +* TEST hrrr_control_decomp_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_hrrr_control_decomp_dyn32_phy32_gnu.log +* TEST rap_restart_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_restart_dyn32_phy32_gnu.log +* TEST hrrr_control_restart_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_hrrr_control_restart_dyn32_phy32_gnu.log +* TEST conus13km_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_conus13km_control_gnu.log +* TEST conus13km_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_conus13km_2threads_gnu.log +* TEST conus13km_restart_mismatch_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_conus13km_restart_mismatch_gnu.log +* TEST rap_control_dyn64_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_rap_control_dyn64_phy32_gnu.log +* TEST cpld_control_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_cpld_control_p8_gnu.log +* TEST cpld_control_nowave_noaero_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_cpld_control_nowave_noaero_p8_gnu.log +* TEST cpld_debug_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_cpld_debug_p8_gnu.log +* TEST cpld_control_pdlib_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_cpld_control_pdlib_p8_gnu.log +* TEST datm_cdeps_control_cfsr_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/rt-2093/tests/logs/log_hera/run_datm_cdeps_control_cfsr_gnu.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +420edab4c1219b1cd830524f2400f3b286b617fc + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240603 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_1048786 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-r) - USE ROCOTO + +PASS -- COMPILE 'csawmg_gnu' [04:08, 04:07] +PASS -- TEST 'control_csawmg_gnu' [09:03, 08:30](748 MB) + +PASS -- COMPILE 'atm_gnu' [04:44, 04:44] +PASS -- TEST 'control_stochy_gnu' [03:58, 03:37](491 MB) +PASS -- TEST 'control_ras_gnu' [05:20, 04:55](495 MB) +PASS -- TEST 'control_p8_gnu' [05:55, 04:59](1442 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:42, 04:51](1448 MB) +PASS -- TEST 'control_flake_gnu' [10:55, 10:32](533 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:27, 04:27] +PASS -- TEST 'rap_control_gnu' [11:44, 11:15](810 MB) +PASS -- TEST 'rap_decomp_gnu' [11:43, 11:10](845 MB) +PASS -- TEST 'rap_2threads_gnu' [10:43, 10:09](931 MB) +PASS -- TEST 'rap_restart_gnu' [06:20, 05:40](566 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:31, 10:56](810 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:50, 11:14](844 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:53, 08:18](573 MB) +PASS -- TEST 'hrrr_control_gnu' [06:18, 05:45](846 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:19, 05:45](834 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:56, 05:24](921 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:15, 05:45](838 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 03:04](551 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:51](646 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:39, 10:55](806 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:19, 03:18] +PASS -- TEST 'control_wam_debug_gnu' [03:05, 02:44](167 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:22, 04:22] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:52, 09:26](698 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:30, 05:03](696 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:15, 08:48](744 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:59, 04:36](742 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:33, 05:10](697 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:22, 06:54](542 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:55, 02:31](527 MB) +PASS -- TEST 'conus13km_control_gnu' [03:56, 03:16](853 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:40, 06:10](871 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:22, 01:49](552 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [37:31, 37:31] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:18, 05:46](718 MB) + +PASS -- COMPILE 's2swa_gnu' [32:21, 32:22] + +PASS -- COMPILE 's2s_gnu' [31:31, 31:31] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:35, 06:41](1522 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:34, 04:32] + +PASS -- COMPILE 's2sw_pdlib_gnu' [31:33, 31:34] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:15, 19:18](1444 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:30, 15:28] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:05, 02:56](685 MB) + +SYNOPSIS: +Starting Date/Time: 20240605 12:10:04 +Ending Date/Time: 20240605 13:03:13 +Total Time: 00h:53m:30s +Compiles Completed: 11/11 +Tests Completed: 35/35 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 41b78a23f8..44083fe05d 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -8a8d1c6f77cad4d9ea86e48a6198e8f5155a9df5 +41bab87505df340722ba647c46f6f9f4a58716b8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -35,368 +35,465 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240530 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1168867 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240603 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2534203 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:10, 12:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:03, 07:48](2132 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 17:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:21, 13:28](1991 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:48, 14:23](2303 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:41, 07:15](1300 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:20, 15:25](1919 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:10, 17:27] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:30, 13:37](1990 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:48] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:20, 20:42](1955 MB) - -PASS -- COMPILE 's2swa_intel' [13:10, 12:56] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:00, 07:54](2176 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:07, 08:02](2175 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:19, 04:30](1985 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:00, 07:42](2197 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:19, 04:32](1727 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:03, 09:31](2544 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:59, 07:45](2170 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:59, 06:43](2089 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:07, 08:17](2187 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:42, 15:49](2976 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:07, 06:11](2925 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:04, 09:00](3789 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:44, 06:24](3626 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:57, 05:10](2161 MB) - -PASS -- COMPILE 's2sw_intel' [13:10, 12:16] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:56, 07:22](2030 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:58, 04:14](2078 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:48] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:54, 07:14](2208 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:47] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:00, 05:00](2033 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:58] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:57, 04:14](2082 MB) - -PASS -- COMPILE 's2s_intel' [10:10, 09:42] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:42, 07:29](3089 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:16](3067 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:38, 01:19](2497 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:10, 19:04] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:07, 07:35](2178 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 15:10] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:49, 14:10](2042 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:03, 06:55](1384 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:15, 15:32](1959 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:42] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:01, 22:40](2016 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:11, 09:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:17, 02:52](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 02:31](1605 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:37, 02:36](1623 MB) -PASS -- TEST 'control_latlon_intel' [03:27, 02:30](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:31](1621 MB) -PASS -- TEST 'control_c48_intel' [07:36, 07:05](1736 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:33, 05:42](850 MB) -PASS -- TEST 'control_c192_intel' [09:40, 09:01](1760 MB) -PASS -- TEST 'control_c384_intel' [10:13, 09:07](2054 MB) -PASS -- TEST 'control_c384gdas_intel' [09:03, 06:59](1522 MB) -PASS -- TEST 'control_stochy_intel' [02:18, 01:30](678 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:25, 00:55](535 MB) -PASS -- TEST 'control_lndp_intel' [02:19, 01:23](663 MB) -PASS -- TEST 'control_iovr4_intel' [03:22, 02:12](656 MB) -PASS -- TEST 'control_iovr5_intel' [03:19, 02:12](665 MB) -PASS -- TEST 'control_p8_intel' [03:46, 02:45](1909 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:53, 02:42](1913 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:52, 02:36](1909 MB) -PASS -- TEST 'control_restart_p8_intel' [02:48, 01:42](1156 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:41, 02:39](1904 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:57, 01:36](1193 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:39, 02:52](1902 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:40, 02:34](1987 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:35](1899 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:52, 03:37](1981 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:51, 03:13](1919 MB) -PASS -- TEST 'merra2_thompson_intel' [03:59, 03:03](1911 MB) -PASS -- TEST 'regional_control_intel' [05:31, 04:46](1201 MB) -PASS -- TEST 'regional_restart_intel' [03:26, 02:54](1179 MB) -PASS -- TEST 'regional_decomp_intel' [05:31, 05:03](1190 MB) -PASS -- TEST 'regional_2threads_intel' [04:26, 03:10](1165 MB) -PASS -- TEST 'regional_noquilt_intel' [05:30, 04:35](1525 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:48](1205 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:47](1203 MB) -PASS -- TEST 'regional_wofs_intel' [06:24, 05:44](2073 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 07:45] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:36, 06:34](1195 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:44, 03:31](1417 MB) -PASS -- TEST 'rap_decomp_intel' [07:36, 06:50](1136 MB) -PASS -- TEST 'rap_2threads_intel' [06:48, 06:09](1365 MB) -PASS -- TEST 'rap_restart_intel' [04:54, 03:30](1128 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:42, 06:37](1198 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:42, 07:03](1139 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 04:59](1182 MB) -PASS -- TEST 'hrrr_control_intel' [04:42, 03:28](1075 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 03:37](1059 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:12](1113 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:27, 01:56](1019 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:54, 06:29](1189 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:42](2007 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:24](2179 MB) - -PASS -- COMPILE 'csawmg_intel' [09:11, 08:17] -PASS -- TEST 'control_csawmg_intel' [06:31, 05:50](1049 MB) -PASS -- TEST 'control_ras_intel' [03:17, 02:57](816 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:26] -PASS -- TEST 'control_csawmg_gnu' [07:31, 06:43](1072 MB) - -PASS -- COMPILE 'wam_intel' [08:11, 07:24] -PASS -- TEST 'control_wam_intel' [02:23, 02:02](796 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 14:18] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:58, 02:31](1907 MB) -PASS -- TEST 'regional_control_faster_intel' [05:31, 04:27](1202 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:55] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:36, 02:18](1637 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:37, 02:14](1645 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:28, 02:35](826 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:18](829 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:28, 04:07](1160 MB) -PASS -- TEST 'control_ras_debug_intel' [03:32, 02:25](852 MB) -PASS -- TEST 'control_diag_debug_intel' [03:50, 02:34](1687 MB) -PASS -- TEST 'control_debug_p8_intel' [04:35, 03:17](1927 MB) -PASS -- TEST 'regional_debug_intel' [15:29, 14:36](1143 MB) -PASS -- TEST 'rap_control_debug_intel' [04:22, 04:04](1230 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:18, 04:00](1219 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:18, 04:03](1210 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 04:05](1221 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 04:10](1214 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:27, 04:18](1300 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 04:10](1221 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:37](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:21](1215 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 04:14](1221 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:21, 04:05](1215 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:20, 04:20](1219 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:24, 06:36](1225 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:22, 04:07](1218 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:23, 04:56](1221 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:24, 04:05](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:54, 06:53](1221 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:27] -PASS -- TEST 'control_csawmg_debug_gnu' [02:41, 01:53](1052 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:10, 03:02] ( 855 warnings ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 07:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:50, 03:26](1268 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:31, 05:32](1143 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:58, 02:57](1012 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:49, 05:05](1299 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:40, 02:45](1042 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:37, 03:07](999 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:50, 04:07](1115 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 01:42](963 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 10:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:38, 01:45](1311 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:45](1195 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:31, 01:12](1139 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:39, 03:49](1091 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:14] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 04:12](1090 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:23, 03:55](1097 MB) -PASS -- TEST 'conus13km_debug_intel' [12:38, 11:39](1349 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:36, 12:03](999 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:29, 06:42](1238 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:32, 11:43](1410 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:09] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 04:07](1171 MB) - -PASS -- COMPILE 'hafsw_intel' [11:11, 10:55] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:29](879 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:22](1277 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:13, 06:24](950 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:07, 14:41](989 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:08, 15:09](1013 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:53, 05:43](605 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:22, 07:11](614 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:52, 02:44](437 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:06, 08:03](542 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 04:13](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:41, 03:54](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:52](684 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:17](445 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:33] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:46, 11:34](634 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:11] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:51, 17:16](873 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:52, 16:57](854 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:12, 10:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:52, 09:46](834 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:14, 10:38] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:06, 05:37](954 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:03, 05:38](931 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 16:34](1337 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:10] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:09](1138 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:18, 01:33](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:12](1010 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:16, 02:09](1017 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 02:09](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:08](1133 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:08](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:09](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:56, 04:58](1164 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:59, 04:57](1149 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:13](1153 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:02](2317 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:16, 03:08](2396 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:23] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:14](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:44] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:12](1129 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:33] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:08](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:56](569 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:34](571 MB) - -PASS -- COMPILE 'atml_intel' [10:10, 09:11] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:20, 06:10](1903 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 06:20](1905 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 03:12](1135 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 04:27] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:10, 04:51](1913 MB) - -PASS -- COMPILE 'atmw_intel' [10:10, 09:28] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:47, 01:45](1951 MB) - -PASS -- COMPILE 'atmaero_intel' [09:10, 08:11] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:53, 03:48](2026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:50, 04:43](1821 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:46, 04:42](1819 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:11] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:32, 16:47](4606 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:53] -PASS -- TEST 'control_c48_gnu' [10:40, 09:47](1552 MB) -PASS -- TEST 'control_stochy_gnu' [03:20, 02:16](731 MB) -PASS -- TEST 'control_ras_gnu' [04:26, 04:04](737 MB) -PASS -- TEST 'control_p8_gnu' [04:55, 03:52](1726 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:39, 03:44](1733 MB) -PASS -- TEST 'control_flake_gnu' [05:20, 04:30](815 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 04:43] -PASS -- TEST 'rap_control_gnu' [08:47, 07:43](1081 MB) -PASS -- TEST 'rap_decomp_gnu' [08:35, 07:45](1081 MB) -PASS -- TEST 'rap_2threads_gnu' [08:34, 07:09](1144 MB) -PASS -- TEST 'rap_restart_gnu' [04:56, 03:58](883 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:44, 07:44](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:32, 07:47](1085 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:51, 05:46](881 MB) -PASS -- TEST 'hrrr_control_gnu' [04:50, 04:04](1069 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:45, 04:05](1135 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:41, 03:40](1021 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:46, 04:08](1070 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:26, 02:05](878 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:23, 02:04](931 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:48](1098 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 08:20] -PASS -- TEST 'control_diag_debug_gnu' [02:44, 01:24](1627 MB) -PASS -- TEST 'regional_debug_gnu' [07:32, 06:34](1122 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:34, 01:58](1100 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:34, 02:01](1091 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:25, 02:04](1098 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:09](1097 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:25, 02:09](1270 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:10](1097 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:18, 02:04](1100 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:19, 02:02](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:12](731 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:21, 01:21](725 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:35, 01:28](1729 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:20, 02:00](1100 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 02:12](1109 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:58, 03:21](1109 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:39] -PASS -- TEST 'control_wam_debug_gnu' [02:23, 01:58](499 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:05, 07:34](2127 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:14] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:04, 13:15](1999 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:27, 14:01](2310 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:27, 06:31](1298 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:03, 15:39](1916 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:10, 16:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:26, 13:17](1994 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:24] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [53:11, 51:40](1963 MB) + +PASS -- COMPILE 's2swa_intel' [11:10, 11:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:51, 07:38](2193 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:02, 07:50](2178 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:12, 04:21](1970 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:48, 07:44](2211 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:15, 04:24](1735 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:03, 09:13](2550 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:44, 07:50](2170 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:51, 06:30](2081 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:02, 07:36](2182 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:39, 15:43](2974 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:21, 05:54](2925 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:29, 08:34](3792 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:32, 05:23](3620 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:50, 05:07](2147 MB) + +PASS -- COMPILE 's2sw_intel' [11:10, 10:41] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 06:59](2016 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:52, 04:03](2076 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:24] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [07:52, 07:00](2219 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:00] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:50, 04:44](2034 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:10, 08:51] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:47, 04:10](2077 MB) + +PASS -- COMPILE 's2s_intel' [09:10, 09:06] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:36, 07:31](3097 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 02:09](3072 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:36, 01:15](2489 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:10, 13:53] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:15, 07:20](2184 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 15:55] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:59, 14:30](2042 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:57, 07:04](1406 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:50, 16:07](1964 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 04:04] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:31, 46:44](2005 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:18, 02:48](713 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:26](1612 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:43, 02:27](1620 MB) +PASS -- TEST 'control_latlon_intel' [03:35, 02:24](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:40, 02:27](1613 MB) +PASS -- TEST 'control_c48_intel' [07:34, 06:58](1743 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 05:42](858 MB) +PASS -- TEST 'control_c192_intel' [09:44, 08:49](1764 MB) +PASS -- TEST 'control_c384_intel' [10:21, 08:53](2038 MB) +PASS -- TEST 'control_c384gdas_intel' [08:44, 06:53](1518 MB) +PASS -- TEST 'control_stochy_intel' [02:19, 01:23](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:24, 00:50](544 MB) +PASS -- TEST 'control_lndp_intel' [02:20, 01:20](671 MB) +PASS -- TEST 'control_iovr4_intel' [02:23, 02:07](659 MB) +PASS -- TEST 'control_iovr5_intel' [02:17, 02:03](665 MB) +PASS -- TEST 'control_p8_intel' [03:49, 02:38](1913 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:49, 02:38](1912 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:47, 02:36](1912 MB) +PASS -- TEST 'control_restart_p8_intel' [02:45, 01:33](1156 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:37, 02:34](1887 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:42, 01:28](1190 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:36, 02:38](1891 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:36, 02:30](1992 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:29](1916 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:00, 03:35](1975 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:57, 02:44](1917 MB) +PASS -- TEST 'merra2_thompson_intel' [03:50, 02:52](1919 MB) +PASS -- TEST 'regional_control_intel' [05:23, 04:37](1192 MB) +PASS -- TEST 'regional_restart_intel' [03:28, 02:37](1178 MB) +PASS -- TEST 'regional_decomp_intel' [05:25, 04:54](1188 MB) +PASS -- TEST 'regional_2threads_intel' [03:23, 03:01](1162 MB) +PASS -- TEST 'regional_noquilt_intel' [05:24, 04:35](1526 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 04:41](1200 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:38](1213 MB) +PASS -- TEST 'regional_wofs_intel' [06:24, 05:31](2089 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 07:50] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:36, 06:42](1198 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 03:24](1410 MB) +PASS -- TEST 'rap_decomp_intel' [07:36, 06:46](1123 MB) +PASS -- TEST 'rap_2threads_intel' [07:36, 06:16](1367 MB) +PASS -- TEST 'rap_restart_intel' [04:50, 03:24](1148 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:36, 06:25](1188 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:36, 06:46](1142 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:49, 04:52](1190 MB) +PASS -- TEST 'hrrr_control_intel' [04:43, 03:21](1060 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:43, 03:29](1035 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:48, 03:04](1120 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:24, 01:53](1032 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:53, 06:18](1183 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:36](2023 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:26](2174 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 06:58] +PASS -- TEST 'control_csawmg_intel' [06:29, 05:24](1043 MB) +PASS -- TEST 'control_ras_intel' [03:18, 02:47](843 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 03:49] +PASS -- TEST 'control_csawmg_gnu' [07:30, 06:38](1071 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 06:27] +PASS -- TEST 'control_wam_intel' [02:22, 01:47](804 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 12:33] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:57, 02:22](1898 MB) +PASS -- TEST 'regional_control_faster_intel' [05:27, 04:11](1200 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:48] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:29, 02:11](1621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 02:06](1629 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:26](833 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:14](837 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:25, 03:51](1157 MB) +PASS -- TEST 'control_ras_debug_intel' [03:16, 02:13](842 MB) +PASS -- TEST 'control_diag_debug_intel' [03:28, 02:11](1686 MB) +PASS -- TEST 'control_debug_p8_intel' [03:26, 02:26](1915 MB) +PASS -- TEST 'regional_debug_intel' [14:27, 14:07](1162 MB) +PASS -- TEST 'rap_control_debug_intel' [04:23, 03:56](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:19, 03:59](1208 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:18, 03:56](1220 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:19, 03:58](1220 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:17, 03:58](1216 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:27, 04:17](1308 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:23, 04:10](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:15, 04:03](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:16, 04:00](1218 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:31, 03:58](1215 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:24, 04:06](1221 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:19, 03:57](1230 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:22, 06:22](1213 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:16, 03:57](1212 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 04:50](1223 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:18, 03:57](1220 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:46, 06:49](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:31] +PASS -- TEST 'control_csawmg_debug_gnu' [02:31, 01:55](1058 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 03:04] ( 855 warnings ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 07:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:49, 03:14](1277 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:42, 05:33](1135 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:43, 02:55](1033 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:31, 05:13](1291 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:38, 02:38](1040 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:39, 03:03](984 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:53, 04:08](1096 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:35](943 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:49, 01:43](1308 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:45](1207 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:30, 01:02](1162 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:31, 03:46](1091 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:09] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 04:03](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 03:52](1097 MB) +PASS -- TEST 'conus13km_debug_intel' [12:35, 11:38](1333 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:29, 11:59](1003 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:26, 06:43](1246 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:25, 12:04](1413 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:07] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:18, 03:55](1150 MB) + +PASS -- COMPILE 'hafsw_intel' [11:11, 10:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:16](866 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:25, 05:07](1278 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:23](944 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 13:52](987 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:18, 15:53](1016 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:25](606 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:53](620 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:38, 02:36](440 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:53, 07:31](546 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:41, 03:58](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:39, 03:35](621 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:42, 04:53](685 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:26, 01:15](454 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:08] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:41, 11:18](631 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:10, 15:04] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:47, 16:15](745 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:55, 16:06](848 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:25] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:45, 09:55](836 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:10, 09:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:20](946 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:09, 05:19](933 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 16:21](1344 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [05:10, 05:00] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:09](1144 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:23](1105 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:14, 02:03](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:08](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:14, 02:07](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:12](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:10](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:01](1009 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:54, 04:52](1156 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:47, 04:52](1150 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:07](1156 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:18, 03:00](2377 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:01](2448 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 02:24] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 05:05](1078 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:44] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:11](1145 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:42] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:45](334 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:44](570 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:19, 00:29](573 MB) + +PASS -- COMPILE 'atml_intel' [09:10, 09:01] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:00, 05:25](1902 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:53, 05:28](1898 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:41, 03:04](1156 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:10, 03:56] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:48, 04:53](1926 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 10:15] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:43, 01:39](1956 MB) + +PASS -- COMPILE 'atmaero_intel' [08:15, 07:48] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:42, 03:42](2026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:42, 04:14](1797 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 04:20](1825 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 03:07] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:20, 16:13](4576 MB) + +PASS -- COMPILE 'atm_gnu' [05:15, 04:50] +PASS -- TEST 'control_c48_gnu' [10:33, 09:33](1574 MB) +PASS -- TEST 'control_stochy_gnu' [03:26, 02:14](730 MB) +PASS -- TEST 'control_ras_gnu' [04:16, 03:36](731 MB) +PASS -- TEST 'control_p8_gnu' [04:44, 03:39](1709 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:35, 03:33](1735 MB) +PASS -- TEST 'control_flake_gnu' [05:18, 04:20](813 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:43] +PASS -- TEST 'rap_control_gnu' [08:35, 07:38](1096 MB) +PASS -- TEST 'rap_decomp_gnu' [08:34, 07:45](1099 MB) +PASS -- TEST 'rap_2threads_gnu' [07:46, 07:03](1147 MB) +PASS -- TEST 'rap_restart_gnu' [04:49, 03:52](887 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:41, 07:38](1081 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 07:46](1097 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:47, 05:42](882 MB) +PASS -- TEST 'hrrr_control_gnu' [04:45, 03:56](1074 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:30, 04:02](1132 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:28, 03:33](1041 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:28, 03:55](1069 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:23, 02:03](877 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:18, 02:07](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:34](1078 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:11, 10:14] +PASS -- TEST 'control_diag_debug_gnu' [01:30, 01:09](1627 MB) +PASS -- TEST 'regional_debug_gnu' [07:24, 06:23](1116 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:15, 01:54](1106 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:15, 02:01](1097 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:15, 02:00](1098 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:16, 02:08](1099 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:12](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:16, 03:04](1101 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:16, 02:00](1108 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:15, 02:02](1098 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:14](730 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:15, 01:26](728 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:35, 01:22](1708 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:17, 01:56](1103 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:16, 02:08](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 03:14](1110 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:42] +PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:54](496 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:17] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:35, 07:13](961 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:02, 03:47](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:44, 06:41](979 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:27](893 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:42, 03:50](952 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:54, 05:36](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:20, 02:01](854 MB) -PASS -- TEST 'conus13km_control_gnu' [03:38, 02:33](1268 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:33, 01:05](1171 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:31, 01:29](943 MB) +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:30, 07:14](964 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:40, 03:49](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:41, 06:46](997 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:34, 03:22](878 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:33, 03:47](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:35, 05:25](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:18, 01:57](858 MB) +PASS -- TEST 'conus13km_control_gnu' [03:34, 02:31](1268 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:24, 01:08](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:26, 01:25](945 MB) -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 11:38] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:32, 04:21](992 MB) +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:10, 12:02] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:18](988 MB) -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:59] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 01:57](981 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:18, 01:59](974 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:28](1285 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 05:38](964 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:14](1194 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:27, 05:27](1349 MB) +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:10, 10:26] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 01:57](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:16, 01:51](970 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:34, 05:19](1286 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:37, 05:43](984 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:36, 03:13](1193 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:32, 05:20](1360 MB) -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:55] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 02:00](1003 MB) +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [11:11, 10:44] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:20, 01:57](1004 MB) -PASS -- COMPILE 's2swa_gnu' [17:11, 16:33] +PASS -- COMPILE 's2swa_gnu' [17:11, 16:18] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_gnu' [, ]( MB) -PASS -- COMPILE 's2s_gnu' [16:11, 15:27] +PASS -- COMPILE 's2s_gnu' [18:11, 17:51] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_nowave_noaero_p8_gnu' [, ]( MB) -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 04:53] +PASS -- COMPILE 's2swa_debug_gnu' [09:11, 08:59] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_p8_gnu' [, ]( MB) -PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:27] +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:35] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:11, 06:17] +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:21] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) -PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:48] +PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 16:52] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'datm_cdeps_control_cfsr_gnu' [, ]( MB) SYNOPSIS: -Starting Date/Time: 20240531 08:41:18 -Ending Date/Time: 20240531 09:56:16 -Total Time: 01h:15m:20s +Starting Date/Time: 20240604 11:39:57 +Ending Date/Time: 20240604 13:31:40 +Total Time: 01h:52m:14s Compiles Completed: 55/55 -Tests Completed: 238/238 +Tests Completed: 238/244 +Failed Tests: +* TEST cpld_control_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2093/tests/logs/log_hercules/run_cpld_control_p8_gnu.log +* TEST cpld_control_nowave_noaero_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2093/tests/logs/log_hercules/run_cpld_control_nowave_noaero_p8_gnu.log +* TEST cpld_debug_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2093/tests/logs/log_hercules/run_cpld_debug_p8_gnu.log +* TEST cpld_control_pdlib_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2093/tests/logs/log_hercules/run_cpld_control_pdlib_p8_gnu.log +* TEST cpld_debug_pdlib_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2093/tests/logs/log_hercules/run_cpld_debug_pdlib_p8_gnu.log +* TEST datm_cdeps_control_cfsr_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2093/tests/logs/log_hercules/run_datm_cdeps_control_cfsr_gnu.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERCULES REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +41bab87505df340722ba647c46f6f9f4a58716b8 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (heads/develop) + 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) + ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) + 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240603 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2947748 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_gnu' [18:10, 17:19] +PASS -- TEST 'cpld_control_p8_gnu' [07:41, 06:35](4903 MB) + +PASS -- COMPILE 's2s_gnu' [17:10, 16:59] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:45, 04:42](2717 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [10:10, 09:25] +PASS -- TEST 'cpld_debug_p8_gnu' [04:56, 03:56](4922 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 17:02] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:35, 25:34](2889 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:10, 09:35] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:47, 11:57](2917 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 16:23] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:14, 02:21](763 MB) + +SYNOPSIS: +Starting Date/Time: 20240604 14:30:49 +Ending Date/Time: 20240604 15:15:52 +Total Time: 00h:45m:18s +Compiles Completed: 6/6 +Tests Completed: 6/6 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 8da67a6ffe..dfdd51ec4b 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -e3ddf5cbeaa53d93d400ed4f5a6d6a06c30911f0 +6822d08c616e7b83cd7cfe533fe35d771c6a9a70 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -35,248 +35,248 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240530 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1093842 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240603 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1960518 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:19, 42:05] ( 1 warnings 1382 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:52, 07:51](2010 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:19, 49:01] ( 1 warnings 1426 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:03, 21:48](1886 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:18, 26:34](2015 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:53, 12:48](1132 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:34, 24:47](1851 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:19, 48:41] ( 1 warnings 1423 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:48, 21:25](1889 MB) - -PASS -- COMPILE 's2swa_intel' [43:18, 42:31] ( 1380 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:27, 08:47](2020 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:56, 08:40](2046 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:44, 05:57](1720 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:28, 08:46](2072 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:44, 06:00](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:18, 08:35](2318 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:32, 09:02](2021 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:44, 07:50](1959 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:46, 08:28](2040 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:44, 08:15](2038 MB) - -PASS -- COMPILE 's2sw_intel' [41:19, 39:58] ( 1278 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:57, 07:00](1896 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:00, 06:44](1973 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:39, 07:01] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:06, 11:27](2082 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:15] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:36, 08:13](1919 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [37:17, 34:53] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:47, 11:24](1969 MB) - -PASS -- COMPILE 's2s_intel' [37:18, 36:47] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [16:27, 14:01](3058 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:41, 05:02](3037 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:09, 02:34](2477 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:24, 33:49] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:08, 08:11](2051 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:19, 47:22] ( 1338 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:42, 21:32](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:48, 11:06](1121 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:51, 24:54](1877 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:47] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:45, 33:41](1922 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:18, 39:00] ( 1 warnings 1147 remarks ) -PASS -- TEST 'control_flake_intel' [17:34, 04:35](645 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [18:20, 04:17](1538 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:33, 04:14](1551 MB) -PASS -- TEST 'control_latlon_intel' [18:16, 04:11](1547 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:23, 04:08](1549 MB) -PASS -- TEST 'control_c48_intel' [21:31, 12:02](1731 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [16:59, 10:11](844 MB) -PASS -- TEST 'control_c192_intel' [28:36, 14:43](1682 MB) -PASS -- TEST 'control_c384_intel' [24:36, 17:56](1816 MB) -PASS -- TEST 'control_c384gdas_intel' [29:33, 13:41](1021 MB) -PASS -- TEST 'control_stochy_intel' [15:33, 02:19](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:51, 01:46](433 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 02:09](604 MB) -PASS -- TEST 'control_iovr4_intel' [12:37, 03:21](596 MB) -PASS -- TEST 'control_iovr5_intel' [15:36, 03:20](603 MB) -PASS -- TEST 'control_p8_intel' [18:50, 05:02](1845 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [19:31, 05:03](1851 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [18:10, 04:55](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [05:44, 03:04](1038 MB) -PASS -- TEST 'control_noqr_p8_intel' [18:09, 04:40](1836 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:13, 03:02](1070 MB) -PASS -- TEST 'control_decomp_p8_intel' [18:44, 05:03](1839 MB) -PASS -- TEST 'control_2threads_p8_intel' [20:00, 04:58](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [21:20, 07:58](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [20:23, 06:26](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [19:25, 05:10](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [19:38, 05:26](1848 MB) -PASS -- TEST 'regional_control_intel' [22:11, 08:23](1018 MB) -PASS -- TEST 'regional_restart_intel' [05:49, 04:37](1007 MB) -PASS -- TEST 'regional_decomp_intel' [22:09, 08:56](1003 MB) -PASS -- TEST 'regional_2threads_intel' [12:09, 06:12](999 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [21:03, 08:27](1005 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [14:42, 08:13](1010 MB) - -PASS -- COMPILE 'rrfs_intel' [37:14, 36:06] ( 3 warnings 1114 remarks ) -PASS -- TEST 'rap_control_intel' [15:08, 10:09](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:25, 05:44](1217 MB) -PASS -- TEST 'rap_decomp_intel' [13:31, 10:44](980 MB) -PASS -- TEST 'rap_2threads_intel' [12:41, 09:44](1076 MB) -PASS -- TEST 'rap_restart_intel' [07:31, 05:22](989 MB) -PASS -- TEST 'rap_sfcdiff_intel' [15:06, 10:10](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:40, 10:43](974 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:20, 07:46](997 MB) -PASS -- TEST 'hrrr_control_intel' [10:08, 05:13](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:09, 05:27](978 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:35, 04:47](1056 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:52](898 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:50, 10:04](989 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:33, 12:23](1947 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:37, 12:08](1939 MB) - -PASS -- COMPILE 'csawmg_intel' [35:16, 33:54] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:49, 08:46](968 MB) -PASS -- TEST 'control_ras_intel' [05:30, 04:30](668 MB) - -PASS -- COMPILE 'wam_intel' [30:14, 30:00] ( 981 remarks ) -PASS -- TEST 'control_wam_intel' [03:28, 02:47](502 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [24:25, 13:49] ( 1298 remarks ) -PASS -- TEST 'control_p8_faster_intel' [14:42, 04:25](1841 MB) -PASS -- TEST 'regional_control_faster_intel' [08:50, 07:31](1006 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:28] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:58, 03:19](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:04, 03:16](1566 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:47](760 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 03:22](765 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:58, 05:57](1083 MB) -PASS -- TEST 'control_ras_debug_intel' [04:33, 03:25](776 MB) -PASS -- TEST 'control_diag_debug_intel' [05:02, 03:22](1626 MB) -PASS -- TEST 'control_debug_p8_intel' [07:13, 04:20](1836 MB) -PASS -- TEST 'regional_debug_intel' [25:00, 22:34](1038 MB) -PASS -- TEST 'rap_control_debug_intel' [07:37, 06:06](1154 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:37, 06:00](1147 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:36, 06:06](1148 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 06:08](1154 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:36, 06:09](1153 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:36](1238 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 06:19](1153 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 06:18](1153 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:36, 06:12](1154 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:32, 06:50](1156 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:33, 06:01](1151 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:27, 06:06](1160 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 09:54](1149 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:27, 06:02](1145 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:23](1158 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 06:04](1153 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 10:30](1163 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:27] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [08:23, 06:16](446 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:16, 30:25] ( 3 warnings 1027 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:19, 05:25](1074 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:01, 08:29](904 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:24, 04:35](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:27, 08:05](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 04:11](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:24, 04:49](867 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:06, 06:11](902 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 02:29](844 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [51:17, 50:58] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:13, 02:59](1112 MB) -PASS -- TEST 'conus13km_2threads_intel' [10:54, 01:34](1054 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [10:51, 01:43](1023 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:16, 31:20] ( 3 warnings 1047 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:00, 05:35](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 06:02](1037 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:33, 05:59](1027 MB) -PASS -- TEST 'conus13km_debug_intel' [24:06, 18:22](1145 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:06, 18:33](860 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:57, 10:41](1091 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:59, 18:22](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 04:19] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:11](1073 MB) - -PASS -- COMPILE 'hafsw_intel' [38:16, 38:00] ( 1 warnings 1426 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:25, 07:15](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:35, 06:41](1077 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:51, 09:22](782 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:35, 17:03](806 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:57, 18:17](825 MB) -PASS -- TEST 'gnv1_nested_intel' [10:22, 05:42](775 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:14, 33:15] ( 1267 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:45, 08:49](775 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:48, 08:57](759 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:09] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 03:39](1050 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:12](1032 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:35](924 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:37](924 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 03:38](919 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:39](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 03:39](1056 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 03:33](924 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:22, 07:50](894 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 07:59](849 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:39](1061 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:36](2340 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 05:19](2407 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 07:58](1016 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:02] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:30, 03:34](1057 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:43] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:35, 01:40](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:31, 01:24](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [09:34, 01:06](254 MB) - -PASS -- COMPILE 'atml_intel' [38:17, 37:49] ( 8 warnings 1185 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:54, 09:50](1871 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:54, 10:16](1852 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:51, 05:49](1075 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:24] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:46, 08:20](1871 MB) - -PASS -- COMPILE 'atmw_intel' [43:16, 35:22] ( 1259 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:28, 02:57](1845 MB) - -PASS -- COMPILE 'atmaero_intel' [35:14, 33:30] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:37, 05:57](1947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:49, 06:23](1722 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:17, 06:35](1740 MB) +PASS -- COMPILE 's2swa_32bit_intel' [44:18, 40:33] ( 1 warnings 1382 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:05, 08:07](1994 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:20, 48:30] ( 1 warnings 1426 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:18, 21:54](1891 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:34, 23:35](2017 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:01, 11:37](1120 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:39, 24:42](1841 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:21, 50:36] ( 1 warnings 1423 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:51, 21:35](1859 MB) + +PASS -- COMPILE 's2swa_intel' [41:19, 41:06] ( 1380 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:54, 08:57](2052 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:21, 09:01](2055 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:01, 05:23](1680 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:53, 08:56](2067 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:16, 05:29](1741 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:55, 08:19](2313 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:47, 08:56](2043 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:22, 07:30](1997 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:21, 08:58](2043 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:16, 08:19](2027 MB) + +PASS -- COMPILE 's2sw_intel' [41:18, 37:50] ( 1278 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:15, 07:00](1898 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:28, 06:37](1971 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:36] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [18:51, 11:30](2046 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:24] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:38, 07:52](1919 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [36:15, 34:27] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:02, 06:29](1967 MB) + +PASS -- COMPILE 's2s_intel' [36:16, 35:02] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:25, 13:35](3062 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:14, 04:20](3039 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:06, 02:30](2472 MB) + +PASS -- COMPILE 's2swa_faster_intel' [36:26, 34:28] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:26, 07:59](2041 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:16, 47:04] ( 1338 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:59, 22:04](1911 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [49:22, 11:24](1129 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:02, 24:43](1881 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:42] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:35, 33:14](1923 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:15, 37:21] ( 1 warnings 1147 remarks ) +PASS -- TEST 'control_flake_intel' [05:37, 04:36](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [20:44, 04:14](1545 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:50, 04:17](1555 MB) +PASS -- TEST 'control_latlon_intel' [16:32, 04:05](1551 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:45, 03:59](1554 MB) +PASS -- TEST 'control_c48_intel' [17:49, 10:54](1718 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:51, 10:17](852 MB) +PASS -- TEST 'control_c192_intel' [16:57, 14:51](1687 MB) +PASS -- TEST 'control_c384_intel' [23:02, 18:20](1823 MB) +PASS -- TEST 'control_c384gdas_intel' [20:18, 14:00](1024 MB) +PASS -- TEST 'control_stochy_intel' [03:34, 02:16](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [17:38, 01:26](430 MB) +PASS -- TEST 'control_lndp_intel' [03:34, 02:14](605 MB) +PASS -- TEST 'control_iovr4_intel' [04:37, 03:27](600 MB) +PASS -- TEST 'control_iovr5_intel' [04:38, 03:32](605 MB) +PASS -- TEST 'control_p8_intel' [07:27, 04:43](1843 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [20:32, 04:49](1850 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [24:24, 04:43](1858 MB) +PASS -- TEST 'control_restart_p8_intel' [17:18, 02:54](1061 MB) +PASS -- TEST 'control_noqr_p8_intel' [14:02, 04:52](1832 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [10:18, 02:49](1060 MB) +PASS -- TEST 'control_decomp_p8_intel' [15:01, 05:18](1832 MB) +PASS -- TEST 'control_2threads_p8_intel' [23:23, 04:54](1927 MB) +PASS -- TEST 'control_p8_lndp_intel' [26:45, 08:07](1842 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:23, 06:02](1905 MB) +PASS -- TEST 'control_p8_mynn_intel' [18:29, 04:43](1843 MB) +PASS -- TEST 'merra2_thompson_intel' [24:39, 05:09](1846 MB) +PASS -- TEST 'regional_control_intel' [22:33, 08:31](1015 MB) +PASS -- TEST 'regional_restart_intel' [09:52, 04:39](1013 MB) +PASS -- TEST 'regional_decomp_intel' [27:33, 08:44](1024 MB) +PASS -- TEST 'regional_2threads_intel' [08:28, 06:30](1001 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [26:33, 08:18](1021 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [26:01, 07:59](1021 MB) + +PASS -- COMPILE 'rrfs_intel' [35:17, 35:06] ( 3 warnings 1114 remarks ) +PASS -- TEST 'rap_control_intel' [15:38, 10:16](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:30, 05:49](1222 MB) +PASS -- TEST 'rap_decomp_intel' [17:05, 10:41](991 MB) +PASS -- TEST 'rap_2threads_intel' [17:07, 09:47](1085 MB) +PASS -- TEST 'rap_restart_intel' [39:59, 05:20](990 MB) +PASS -- TEST 'rap_sfcdiff_intel' [17:33, 10:16](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:12, 10:55](981 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [40:52, 07:41](1000 MB) +PASS -- TEST 'hrrr_control_intel' [13:41, 05:16](991 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [16:15, 05:26](979 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [15:10, 04:50](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [39:05, 02:51](924 MB) +PASS -- TEST 'rrfs_v1beta_intel' [17:49, 10:17](988 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [17:40, 12:54](1942 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:40, 12:22](1939 MB) + +PASS -- COMPILE 'csawmg_intel' [33:16, 32:36] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [18:17, 09:03](963 MB) +PASS -- TEST 'control_ras_intel' [16:35, 04:28](668 MB) + +PASS -- COMPILE 'wam_intel' [31:16, 30:22] ( 981 remarks ) +PASS -- TEST 'control_wam_intel' [36:46, 02:50](508 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:24, 17:42] ( 1298 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:43, 04:03](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [08:48, 07:23](1003 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:13, 07:16] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [40:25, 03:23](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [39:30, 03:22](1569 MB) +PASS -- TEST 'control_stochy_debug_intel' [40:01, 03:54](766 MB) +PASS -- TEST 'control_lndp_debug_intel' [40:02, 03:27](767 MB) +PASS -- TEST 'control_csawmg_debug_intel' [42:20, 05:57](1082 MB) +PASS -- TEST 'control_ras_debug_intel' [40:02, 03:30](777 MB) +PASS -- TEST 'control_diag_debug_intel' [40:27, 03:27](1622 MB) +PASS -- TEST 'control_debug_p8_intel' [41:34, 04:25](1854 MB) +PASS -- TEST 'regional_debug_intel' [50:24, 22:53](1031 MB) +PASS -- TEST 'rap_control_debug_intel' [43:03, 06:11](1153 MB) +PASS -- TEST 'hrrr_control_debug_intel' [42:03, 06:03](1144 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [43:03, 06:10](1150 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [43:03, 06:09](1149 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [42:52, 06:05](1155 MB) +PASS -- TEST 'rap_diag_debug_intel' [41:08, 06:25](1238 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [39:59, 06:15](1151 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [38:48, 06:15](1157 MB) +PASS -- TEST 'rap_lndp_debug_intel' [38:49, 06:11](1155 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [37:46, 06:06](1156 MB) +PASS -- TEST 'rap_noah_debug_intel' [37:52, 05:59](1152 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [37:50, 06:06](1154 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [39:52, 10:00](1153 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [35:58, 06:04](1151 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [34:55, 07:25](1156 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 06:04](1156 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:33, 10:29](1160 MB) + +PASS -- COMPILE 'wam_debug_intel' [18:13, 03:58] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [07:27, 06:13](446 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [44:17, 30:16] ( 3 warnings 1027 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:19, 05:27](1081 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:29, 08:32](903 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:50, 04:28](870 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:03, 08:07](948 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:09, 04:13](921 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:08, 04:42](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:25, 06:19](903 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:42, 02:25](851 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:34, 50:08] ( 3 warnings 1197 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:14, 03:02](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:27](1052 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:41](1001 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [59:23, 30:45] ( 3 warnings 1047 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:04, 05:36](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [23:26, 04:04] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:29, 06:05](1035 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:29, 05:57](1013 MB) +PASS -- TEST 'conus13km_debug_intel' [25:09, 18:23](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:52, 18:37](857 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:48, 10:39](1086 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:48, 18:25](1214 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [57:16, 04:33] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:31, 06:08](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [25:23, 38:15] ( 1 warnings 1426 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:29, 07:20](713 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:35, 06:45](1090 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:53, 09:33](769 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:31, 17:00](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:54, 18:37](820 MB) +PASS -- TEST 'gnv1_nested_intel' [13:35, 05:45](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:14, 33:25] ( 1267 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:31, 08:54](768 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:37, 08:59](756 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:46] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:25, 03:36](1055 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 02:14](1036 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:26, 03:31](926 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:25, 03:35](926 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:25, 03:40](943 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:26, 03:40](1047 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:26, 03:37](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:24, 03:18](921 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:30, 07:53](887 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:51](843 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:23, 03:35](1065 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:27, 05:12](2353 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:26, 05:09](2344 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 07:56](1011 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:54] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:26, 03:51](1058 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:55] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:41, 01:47](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 01:36](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 01:01](254 MB) + +PASS -- COMPILE 'atml_intel' [42:17, 41:55] ( 8 warnings 1185 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:00, 10:10](1878 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:57, 09:51](1858 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:59, 05:39](1054 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:10, 05:53] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:00, 08:05](1868 MB) + +PASS -- COMPILE 'atmw_intel' [35:13, 34:10] ( 1259 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [11:28, 03:06](1866 MB) + +PASS -- COMPILE 'atmaero_intel' [34:16, 33:18] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:34, 06:11](1947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:29, 06:29](1734 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:27, 06:36](1734 MB) SYNOPSIS: -Starting Date/Time: 20240530 20:47:50 -Ending Date/Time: 20240531 00:48:10 -Total Time: 04h:00m:56s +Starting Date/Time: 20240604 06:25:57 +Ending Date/Time: 20240604 11:42:43 +Total Time: 05h:17m:29s Compiles Completed: 34/34 Tests Completed: 162/162 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 8d21f31e87..f173b99a19 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -8a8d1c6f77cad4d9ea86e48a6198e8f5155a9df5 +1e33b95755bb7eeac409119e0d271b678d8f52c3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -35,279 +35,279 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240530 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_102432 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240603 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_192077 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 16:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:08, 05:44](3302 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:58, 17:27](1974 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:09, 18:42](2152 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:05, 08:32](1250 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:49, 19:43](1870 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:12](1924 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:56] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:47, 22:54](1919 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 15:16] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:43, 05:54](3341 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:10, 05:58](3338 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:02, 03:53](3262 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:43, 05:58](3353 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:02, 03:58](3275 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:48, 06:28](3611 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:41, 05:57](3323 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:34, 04:55](3213 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:06, 05:54](3339 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:00, 10:40](3514 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:36, 06:56](3547 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:09, 11:30](4275 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:43, 07:08](4372 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:54, 05:40](3316 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 14:29] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:07, 04:57](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:27, 04:38](2034 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:17] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:26, 08:51](3380 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:45] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:12, 06:16](1993 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:53] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:44](1978 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 14:06] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:57, 08:26](3085 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:52, 02:39](3072 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:49, 01:39](2494 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:11, 23:15] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:04, 05:36](3341 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 22:32] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 17:29](1981 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:28, 08:36](1249 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:14, 19:51](1890 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:43] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:10, 24:46](1958 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:28, 03:35](696 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:55, 03:02](1596 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:58, 03:09](1609 MB) -PASS -- TEST 'control_latlon_intel' [03:47, 03:03](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 03:06](1592 MB) -PASS -- TEST 'control_c48_intel' [08:55, 07:16](1760 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 06:11](875 MB) -PASS -- TEST 'control_c192_intel' [12:03, 10:40](1736 MB) -PASS -- TEST 'control_c384_intel' [14:12, 11:41](2005 MB) -PASS -- TEST 'control_c384gdas_intel' [12:14, 09:06](1358 MB) -PASS -- TEST 'control_stochy_intel' [02:28, 01:45](652 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:27, 01:05](506 MB) -PASS -- TEST 'control_lndp_intel' [02:28, 01:38](653 MB) -PASS -- TEST 'control_iovr4_intel' [03:31, 02:39](649 MB) -PASS -- TEST 'control_iovr5_intel' [03:32, 02:33](653 MB) -PASS -- TEST 'control_p8_intel' [05:09, 03:15](1896 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:18, 03:16](1897 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:32, 03:09](1892 MB) -PASS -- TEST 'control_restart_p8_intel' [03:20, 01:54](1132 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:24, 03:05](1887 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:10, 01:49](1140 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:19, 03:14](1878 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:18, 03:20](1985 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:45, 05:28](1895 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:34, 04:14](1966 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:17](1903 MB) -PASS -- TEST 'merra2_thompson_intel' [05:49, 03:33](1898 MB) -PASS -- TEST 'regional_control_intel' [06:41, 05:35](1100 MB) -PASS -- TEST 'regional_restart_intel' [03:46, 02:58](1099 MB) -PASS -- TEST 'regional_decomp_intel' [06:35, 05:47](1094 MB) -PASS -- TEST 'regional_2threads_intel' [04:34, 04:05](1090 MB) -PASS -- TEST 'regional_noquilt_intel' [06:36, 05:20](1393 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:38, 05:27](1098 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 05:27](1101 MB) -PASS -- TEST 'regional_wofs_intel' [07:45, 06:46](1918 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:03] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:38, 07:52](1109 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:10, 04:48](1235 MB) -PASS -- TEST 'rap_decomp_intel' [10:02, 08:21](1032 MB) -PASS -- TEST 'rap_2threads_intel' [09:14, 08:01](1182 MB) -PASS -- TEST 'rap_restart_intel' [06:28, 04:12](1097 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:29, 07:52](1097 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:20, 08:18](989 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:25, 05:50](1131 MB) -PASS -- TEST 'hrrr_control_intel' [05:27, 04:05](1044 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:23, 04:11](1025 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 03:28](1117 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:33, 02:19](998 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:25, 07:44](1093 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:28, 09:17](1999 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 09:05](2072 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 12:45] -PASS -- TEST 'control_csawmg_intel' [07:48, 06:16](1014 MB) -PASS -- TEST 'control_ras_intel' [04:27, 03:24](743 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 10:56] -PASS -- TEST 'control_wam_intel' [03:22, 02:12](660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:36] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:40, 02:50](1897 MB) -PASS -- TEST 'regional_control_faster_intel' [05:38, 04:56](1094 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:35] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:08, 02:52](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:11, 02:49](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:38, 03:16](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:36, 02:55](822 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:05, 04:22](1132 MB) -PASS -- TEST 'control_ras_debug_intel' [03:36, 03:04](832 MB) -PASS -- TEST 'control_diag_debug_intel' [04:09, 02:55](1676 MB) -PASS -- TEST 'control_debug_p8_intel' [05:08, 03:08](1905 MB) -PASS -- TEST 'regional_debug_intel' [19:04, 17:29](1114 MB) -PASS -- TEST 'rap_control_debug_intel' [05:38, 04:59](1207 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:40, 04:48](1206 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:40, 04:57](1204 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:39, 05:00](1205 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:38, 05:04](1206 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:44, 05:08](1289 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:31, 05:06](1203 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:04](1202 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:28, 05:06](1200 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 05:01](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:27, 05:02](1204 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 05:01](1201 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 08:07](1203 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 04:53](1199 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:07](1203 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:58](1212 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:42](1213 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 04:55] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:20, 05:10](524 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:06, 04:32](1171 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:26, 06:47](1054 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:10, 03:31](958 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:18, 06:52](1094 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:42, 03:04](966 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:09, 03:43](920 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:53, 05:02](1033 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:26, 01:54](931 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:11, 17:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:04, 02:12](1207 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:50, 01:07](1120 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:23](1112 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:46, 04:20](999 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:42] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:28, 04:51](1077 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:28, 04:50](1075 MB) -PASS -- TEST 'conus13km_debug_intel' [17:57, 14:10](1198 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:54, 14:19](934 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:14](1160 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:45, 14:09](1299 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 05:01] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 05:01](1117 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 15:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:18, 05:34](742 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 05:48](1117 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:56](836 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:19, 13:31](859 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:26, 15:04](884 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 06:22](504 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:22, 07:40](470 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:57, 03:12](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:48, 08:11](472 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:49, 04:18](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:03, 04:03](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 05:22](584 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 01:31](404 MB) -PASS -- TEST 'gnv1_nested_intel' [06:00, 04:41](810 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:20] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:52, 13:36](574 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [26:13, 25:41] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:07, 09:46](676 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:02, 09:49](747 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:10] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 07:09](694 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:10, 13:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:26](829 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:31](818 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 16:08](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:30] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:43](1135 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:45](1086 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:35](1014 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:34](1006 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:41](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:47](1093 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:43](1125 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:37](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:22, 05:54](1065 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:19, 05:56](1034 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:39](1094 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:32](2482 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:41](2438 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 04:29] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:17](1044 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:44] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:39](1127 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:52](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:55](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:31](318 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 15:12] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:30](1857 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:33, 04:28](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:46, 02:29](1100 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:47] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:30, 05:49](1887 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 12:30] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 01:54](1920 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 12:54] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:10](3191 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:14, 04:54](3086 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 05:04](3107 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 04:00] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:00, 21:12](4588 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:50, 05:36](3305 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 18:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [47:09, 17:21](1967 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:06, 18:19](2154 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:56, 08:32](1251 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:06, 19:33](1875 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 17:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [45:45, 17:07](1963 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 07:18] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:58, 22:55](1916 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 15:15] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [31:43, 05:53](3332 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [31:54, 05:54](3339 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:49, 03:29](3253 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [32:54, 06:03](3354 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:40, 03:38](3274 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [32:52, 06:22](3613 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [31:43, 05:53](3324 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [30:52, 05:03](3209 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [31:58, 05:57](3337 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [32:57, 10:48](3467 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:11, 06:49](3625 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [37:06, 11:29](4268 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:09, 07:03](4358 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [31:46, 05:37](3314 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 15:45] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [31:30, 04:54](1980 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:49, 04:34](2043 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 05:00] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:32, 08:51](3369 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:13, 06:10](1996 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:21] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:27, 04:31](2042 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 13:27] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:02, 08:22](3089 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:34](3076 MB) +PASS -- TEST 'cpld_restart_c48_intel' [20:08, 01:40](2506 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:12, 24:48] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:47, 05:36](3336 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:52] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [40:21, 17:27](1998 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:33, 08:40](1261 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:18, 19:38](1896 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:19] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 25:07](1948 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:13, 13:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [13:27, 03:29](705 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:44, 03:00](1600 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:51, 03:01](1600 MB) +PASS -- TEST 'control_latlon_intel' [07:39, 02:57](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:51, 03:00](1587 MB) +PASS -- TEST 'control_c48_intel' [11:45, 07:11](1757 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:29, 06:01](875 MB) +PASS -- TEST 'control_c192_intel' [12:01, 10:35](1747 MB) +PASS -- TEST 'control_c384_intel' [16:07, 11:52](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [16:06, 09:13](1346 MB) +PASS -- TEST 'control_stochy_intel' [05:25, 01:44](652 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:24, 01:01](508 MB) +PASS -- TEST 'control_lndp_intel' [05:25, 01:37](658 MB) +PASS -- TEST 'control_iovr4_intel' [06:28, 02:34](659 MB) +PASS -- TEST 'control_iovr5_intel' [05:27, 02:33](658 MB) +PASS -- TEST 'control_p8_intel' [08:06, 03:12](1835 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:11, 03:06](1894 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:21, 03:01](1895 MB) +PASS -- TEST 'control_restart_p8_intel' [06:17, 01:47](1134 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:04, 03:01](1881 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:08, 01:48](1142 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:01, 03:10](1826 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:15, 03:21](1985 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:44, 05:25](1899 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:22, 04:09](1960 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:23, 03:12](1906 MB) +PASS -- TEST 'merra2_thompson_intel' [06:41, 03:28](1897 MB) +PASS -- TEST 'regional_control_intel' [06:35, 05:26](1102 MB) +PASS -- TEST 'regional_restart_intel' [05:39, 02:56](1052 MB) +PASS -- TEST 'regional_decomp_intel' [07:29, 05:47](1093 MB) +PASS -- TEST 'regional_2threads_intel' [04:38, 03:59](1089 MB) +PASS -- TEST 'regional_noquilt_intel' [07:39, 05:26](1396 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 05:16](1102 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:32, 05:26](1061 MB) +PASS -- TEST 'regional_wofs_intel' [07:32, 06:42](1927 MB) + +PASS -- COMPILE 'rrfs_intel' [13:13, 12:44] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:23, 07:48](1109 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 04:45](1299 MB) +PASS -- TEST 'rap_decomp_intel' [10:06, 08:09](1026 MB) +PASS -- TEST 'rap_2threads_intel' [10:04, 07:56](1180 MB) +PASS -- TEST 'rap_restart_intel' [07:37, 04:10](1103 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:38, 07:44](1102 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:09, 08:07](1032 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:29, 05:51](1134 MB) +PASS -- TEST 'hrrr_control_intel' [06:38, 04:01](1041 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:00, 04:10](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:33, 03:26](1117 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:27, 02:13](1006 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:22, 07:56](1103 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:28, 09:17](1995 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:26, 09:02](2079 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 11:05] +PASS -- TEST 'control_csawmg_intel' [27:35, 06:21](1004 MB) +PASS -- TEST 'control_ras_intel' [25:24, 03:23](743 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 10:16] +PASS -- TEST 'control_wam_intel' [04:22, 02:10](658 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [25:11, 20:42] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:35, 02:48](1901 MB) +PASS -- TEST 'regional_control_faster_intel' [06:40, 04:53](1100 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 06:13] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [24:46, 02:46](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:49, 02:53](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [24:26, 03:02](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [24:27, 02:49](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [25:42, 04:26](1127 MB) +PASS -- TEST 'control_ras_debug_intel' [24:27, 02:53](827 MB) +PASS -- TEST 'control_diag_debug_intel' [24:46, 02:50](1666 MB) +PASS -- TEST 'control_debug_p8_intel' [04:41, 03:02](1904 MB) +PASS -- TEST 'regional_debug_intel' [18:37, 17:27](1096 MB) +PASS -- TEST 'rap_control_debug_intel' [05:26, 04:58](1198 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:25, 04:51](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:56](1198 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:10](1208 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:54](1201 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:33, 05:11](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 04:58](1201 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:04](1197 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:07](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:51](1203 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:24, 05:05](1203 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:22, 04:56](1204 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:22, 08:02](1212 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 04:54](1201 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 05:52](1201 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:53](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:35, 08:33](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 03:27] ( 855 warnings ) +PASS -- TEST 'control_wam_debug_intel' [27:28, 05:04](519 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 10:53] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 04:32](1161 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:23, 06:28](993 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:15, 03:26](988 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:56, 06:48](1090 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:15, 02:58](969 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 03:49](926 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:35, 04:55](1025 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:26, 01:54](925 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 15:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:01, 02:11](1198 MB) +PASS -- TEST 'conus13km_2threads_intel' [10:44, 01:02](1118 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:43, 01:18](1112 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:12, 11:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:47, 04:24](936 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:10, 04:02] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:24, 04:47](1078 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:25, 05:17](1082 MB) +PASS -- TEST 'conus13km_debug_intel' [18:48, 14:06](1236 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:43, 14:25](928 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:47, 08:19](1163 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:47, 14:22](1301 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 03:38] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:27, 04:58](1126 MB) + +PASS -- COMPILE 'hafsw_intel' [17:12, 13:02] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:17, 05:29](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 05:54](1118 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:31, 06:57](786 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 13:21](810 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:34, 15:00](876 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:00, 06:12](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:29, 07:28](518 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [13:57, 03:12](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:28, 08:07](475 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:51, 04:13](535 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:56, 03:59](533 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:01, 05:32](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:28, 01:24](406 MB) +PASS -- TEST 'gnv1_nested_intel' [13:58, 04:38](803 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:05] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:51, 13:07](577 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:11, 22:44] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:06, 09:41](676 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:02, 09:47](696 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:12, 14:14] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:08, 07:09](731 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:10, 12:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:21, 06:22](827 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:20, 06:25](818 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:58, 15:53](1208 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:59] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [10:20, 02:40](1143 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:42](1092 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:18, 02:32](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:19, 02:46](991 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:20, 02:40](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:19, 02:41](1124 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:18, 02:37](1128 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:18, 02:32](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:23, 05:56](1053 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:16, 06:00](1035 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 02:42](1129 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 03:36](2485 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:42](2494 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:50] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:25](1070 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:55] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:41](1136 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:52](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:55](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:34](296 MB) + +PASS -- COMPILE 'atml_intel' [20:11, 14:49] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:46, 04:18](1868 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:40, 04:23](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:46, 02:34](1102 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:11, 04:44] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:24, 05:45](1882 MB) + +PASS -- COMPILE 'atmw_intel' [17:11, 11:40] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 01:59](1864 MB) + +PASS -- COMPILE 'atmaero_intel' [20:11, 11:46] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:16, 04:11](3198 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 04:54](3021 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:02, 05:09](3071 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:11, 03:39] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:21, 21:13](4582 MB) SYNOPSIS: -Starting Date/Time: 20240531 08:06:00 -Ending Date/Time: 20240531 09:33:03 -Total Time: 01h:27m:32s +Starting Date/Time: 20240604 11:38:13 +Ending Date/Time: 20240604 13:37:57 +Total Time: 02h:00m:14s Compiles Completed: 39/39 Tests Completed: 183/183 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 54f4feabd5..e69b89f8c8 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -e3ddf5cbeaa53d93d400ed4f5a6d6a06c30911f0 +6822d08c616e7b83cd7cfe533fe35d771c6a9a70 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,12 +11,12 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b3640007c51c8899533e1b835940a2030a768fcc FV3 (remotes/origin/HEAD) + b3640007c51c8899533e1b835940a2030a768fcc FV3 (heads/develop) 061a73663f2bab9799eab7345c2ff8a34c789573 FV3/atmos_cubed_sphere (201912_public_release-394-g061a736) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -35,236 +35,236 @@ 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-20240530 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_164577 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240603 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_62764 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:57, 01:22](3097 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:39, 23:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:44, 01:48](1822 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [58:52, 01:36](1846 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [58:19, 02:15](985 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:45, 02:19](1805 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:39, 23:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:43, 01:07](1821 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:34, 17:28] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:50, 01:38](1839 MB) - -PASS -- COMPILE 's2swa_intel' [11:25, 11:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [29:58, 01:25](3134 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [29:58, 01:43](3131 MB) -PASS -- TEST 'cpld_restart_p8_intel' [21:31, 01:45](3069 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [29:58, 01:23](3153 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [21:30, 01:38](3083 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [29:58, 00:59](3366 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [29:58, 01:20](3127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [29:59, 01:30](3076 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:58, 01:46](3132 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:07, 03:50](4111 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:25, 04:02](4254 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [29:58, 01:47](3112 MB) - -PASS -- COMPILE 's2sw_intel' [22:38, 22:20] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:44, 01:32](1832 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:44, 01:46](1892 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [30:50, 29:58] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:34, 01:57](1893 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 11:19] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [28:56, 01:33](2909 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [28:56, 01:16](2912 MB) -PASS -- TEST 'cpld_restart_c48_intel' [24:53, 00:59](2307 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:34, 18:33] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:50, 01:49](3133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:28, 11:18] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:55, 00:55](1831 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:31, 01:32](1002 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:32, 01:39](1800 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [24:39, 23:32] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [03:09, 00:57](1852 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [31:49, 30:53] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [56:48, 00:20](574 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [55:46, 00:25](1475 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [55:17, 01:21](1477 MB) -PASS -- TEST 'control_latlon_intel' [55:08, 00:21](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [55:07, 00:29](1475 MB) -PASS -- TEST 'control_c48_intel' [55:02, 00:46](1595 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [54:55, 00:57](717 MB) -PASS -- TEST 'control_c192_intel' [54:55, 01:34](1591 MB) -PASS -- TEST 'control_c384_intel' [54:34, 02:27](1906 MB) -PASS -- TEST 'control_c384gdas_intel' [54:34, 01:47](1091 MB) -PASS -- TEST 'control_stochy_intel' [54:30, 00:23](534 MB) -PASS -- TEST 'control_stochy_restart_intel' [52:05, 01:03](336 MB) -PASS -- TEST 'control_lndp_intel' [54:07, 00:26](529 MB) -PASS -- TEST 'control_iovr4_intel' [54:05, 00:40](528 MB) -PASS -- TEST 'control_iovr5_intel' [53:44, 00:42](526 MB) -PASS -- TEST 'control_p8_intel' [53:34, 01:52](1769 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [53:22, 01:52](1769 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [52:17, 01:56](1770 MB) -PASS -- TEST 'control_restart_p8_intel' [48:13, 01:52](913 MB) -PASS -- TEST 'control_noqr_p8_intel' [52:05, 01:33](1762 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [47:05, 00:42](924 MB) -PASS -- TEST 'control_decomp_p8_intel' [52:01, 01:18](1762 MB) -PASS -- TEST 'control_2threads_p8_intel' [51:39, 00:41](1861 MB) -PASS -- TEST 'control_p8_lndp_intel' [51:29, 01:01](1777 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [51:18, 01:54](1833 MB) -PASS -- TEST 'control_p8_mynn_intel' [51:14, 01:48](1779 MB) -PASS -- TEST 'merra2_thompson_intel' [51:10, 01:48](1775 MB) -PASS -- TEST 'regional_control_intel' [50:55, 01:09](856 MB) -PASS -- TEST 'regional_restart_intel' [44:15, 00:20](853 MB) -PASS -- TEST 'regional_decomp_intel' [50:34, 00:48](858 MB) -PASS -- TEST 'regional_2threads_intel' [50:33, 00:45](910 MB) -PASS -- TEST 'regional_noquilt_intel' [50:32, 00:21](1174 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [50:31, 00:20](851 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [50:15, 01:11](845 MB) -PASS -- TEST 'regional_wofs_intel' [49:59, 00:43](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [28:44, 27:46] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [59:43, 01:44](918 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [59:44, 01:08](1096 MB) -PASS -- TEST 'rap_decomp_intel' [59:42, 01:29](917 MB) -PASS -- TEST 'rap_2threads_intel' [59:42, 01:44](1001 MB) -PASS -- TEST 'rap_restart_intel' [49:58, 01:17](789 MB) -PASS -- TEST 'rap_sfcdiff_intel' [59:42, 02:18](913 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [59:42, 02:03](916 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [49:58, 01:51](785 MB) -PASS -- TEST 'hrrr_control_intel' [59:42, 01:05](910 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [59:40, 01:04](913 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [59:40, 01:29](994 MB) -PASS -- TEST 'hrrr_control_restart_intel' [49:50, 01:03](746 MB) -PASS -- TEST 'rrfs_v1beta_intel' [59:39, 01:10](907 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [59:34, 00:54](1877 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [49:39, 01:08](1861 MB) - -PASS -- COMPILE 'csawmg_intel' [22:38, 21:59] -PASS -- TEST 'control_csawmg_intel' [06:16, 00:41](872 MB) -PASS -- TEST 'control_ras_intel' [06:16, 00:54](561 MB) - -PASS -- COMPILE 'wam_intel' [11:26, 10:52] -PASS -- TEST 'control_wam_intel' [11:23, 00:53](270 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [31:46, 30:53] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [48:08, 01:58](1772 MB) -PASS -- TEST 'regional_control_faster_intel' [48:01, 00:15](849 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:27, 11:32] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:16, 01:17](1488 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:16, 01:25](1489 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:16, 00:50](691 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:16, 01:09](689 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:16, 00:37](1000 MB) -PASS -- TEST 'control_ras_debug_intel' [06:16, 01:07](702 MB) -PASS -- TEST 'control_diag_debug_intel' [06:16, 01:12](1553 MB) -PASS -- TEST 'control_debug_p8_intel' [06:16, 00:56](1789 MB) -PASS -- TEST 'regional_debug_intel' [06:15, 00:52](881 MB) -PASS -- TEST 'rap_control_debug_intel' [06:16, 00:50](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:16, 01:00](1072 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:16, 00:52](1074 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:16, 00:51](1077 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 00:52](1075 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:16, 00:46](1157 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:16, 00:46](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 00:46](1077 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:16, 00:48](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:16, 00:52](1071 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:16, 00:57](1070 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [01:44, 00:56](1073 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [01:44, 00:47](1070 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [01:44, 01:00](1071 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [01:43, 01:05](1082 MB) -PASS -- TEST 'rap_flake_debug_intel' [01:33, 00:52](1078 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [01:29, 02:14](1079 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:26, 11:40] ( 842 warnings ) -PASS -- TEST 'control_wam_debug_intel' [01:28, 01:00](304 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 10:44] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:23, 01:20](954 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:09, 01:16](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [00:48, 02:17](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [00:23, 01:23](858 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [47:44, 02:25](845 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:21, 01:38](789 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [47:02, 01:26](689 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:01, 01:15](669 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:49, 26:54] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [43:25, 00:56](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [39:35, 00:51](1011 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [39:34, 00:42](883 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:37, 16:09] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:01, 01:17](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:25, 09:59] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [46:56, 00:58](947 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [46:16, 01:07](946 MB) -PASS -- TEST 'conus13km_debug_intel' [45:56, 01:24](1043 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [45:53, 01:14](713 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [45:34, 00:26](1046 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:54, 00:57](1111 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:26, 10:18] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:54, 00:46](982 MB) - -PASS -- COMPILE 'hafsw_intel' [18:39, 18:15] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [44:50, 01:59](615 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [44:50, 00:48](969 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [44:32, 01:48](660 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [43:58, 01:29](697 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:58, 02:10](712 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [43:57, 01:00](393 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [43:37, 02:12](407 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [43:16, 01:26](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [42:53, 02:23](375 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [42:44, 01:35](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [42:22, 00:51](415 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [42:24, 00:48](489 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [42:15, 00:29](312 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:37, 14:20] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:03, 01:32](503 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:47, 23:40] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [40:32, 00:48](535 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [40:29, 01:47](710 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:39, 15:45] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [42:03, 00:50](715 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:38, 16:59] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [39:30, 01:20](657 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:30, 01:17](648 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:17, 00:25](880 MB) - -PASS -- COMPILE 'atml_intel' [15:37, 15:12] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [17:36, 16:44] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:24, 10:01] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [41:15, 01:21](3028 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [40:36, 01:48](2907 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [40:34, 01:47](2922 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:23, 09:24] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [39:40, 01:40](4439 MB) +PASS -- COMPILE 's2swa_32bit_intel' [24:40, 23:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [02:56, 01:19](3096 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:26, 11:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:11, 01:55](1821 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [57:12, 01:52](1841 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [56:50, 02:05](981 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:12, 01:33](1797 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 12:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:10, 01:03](1818 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:30, 14:55] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [12:08, 01:32](1831 MB) + +PASS -- COMPILE 's2swa_intel' [22:38, 21:49] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [04:57, 01:23](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [04:57, 01:40](3133 MB) +PASS -- TEST 'cpld_restart_p8_intel' [56:44, 01:05](3066 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [04:57, 01:21](3153 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [56:44, 00:59](3083 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [04:57, 01:42](3363 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [04:57, 01:21](3127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [04:58, 01:27](3077 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [04:57, 01:37](3133 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [05:06, 04:29](4106 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:07, 04:17](4257 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [04:57, 01:42](3115 MB) + +PASS -- COMPILE 's2sw_intel' [11:24, 10:39] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:13, 00:49](1834 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:13, 01:48](1893 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:56] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:13, 02:02](1888 MB) + +PASS -- COMPILE 's2s_intel' [25:40, 25:00] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [01:55, 01:30](2915 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [01:55, 01:18](2906 MB) +PASS -- TEST 'cpld_restart_c48_intel' [57:53, 01:11](2308 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:32, 18:20] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:03, 01:51](3131 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:38, 24:06] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [02:58, 00:56](1832 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [45:31, 01:21](1007 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:23, 01:47](1797 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:32, 15:41] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [00:42, 00:49](1851 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:36, 17:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [58:36, 00:22](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [58:36, 00:29](1470 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:36, 01:21](1485 MB) +PASS -- TEST 'control_latlon_intel' [58:36, 00:19](1472 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [58:36, 00:29](1474 MB) +PASS -- TEST 'control_c48_intel' [58:35, 00:55](1591 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [58:35, 00:51](717 MB) +PASS -- TEST 'control_c192_intel' [58:36, 00:30](1597 MB) +PASS -- TEST 'control_c384_intel' [58:40, 01:19](1906 MB) +PASS -- TEST 'control_c384gdas_intel' [58:40, 01:54](1090 MB) +PASS -- TEST 'control_stochy_intel' [58:36, 00:24](533 MB) +PASS -- TEST 'control_stochy_restart_intel' [56:09, 01:01](335 MB) +PASS -- TEST 'control_lndp_intel' [58:36, 00:26](529 MB) +PASS -- TEST 'control_iovr4_intel' [57:33, 00:43](530 MB) +PASS -- TEST 'control_iovr5_intel' [57:18, 00:41](525 MB) +PASS -- TEST 'control_p8_intel' [56:49, 01:50](1768 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [56:34, 01:56](1774 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [56:25, 01:57](1772 MB) +PASS -- TEST 'control_restart_p8_intel' [51:28, 00:54](914 MB) +PASS -- TEST 'control_noqr_p8_intel' [56:24, 01:31](1761 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [51:23, 00:52](923 MB) +PASS -- TEST 'control_decomp_p8_intel' [56:09, 01:29](1767 MB) +PASS -- TEST 'control_2threads_p8_intel' [55:24, 00:40](1868 MB) +PASS -- TEST 'control_p8_lndp_intel' [55:08, 01:12](1770 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [54:57, 01:54](1822 MB) +PASS -- TEST 'control_p8_mynn_intel' [54:52, 01:35](1784 MB) +PASS -- TEST 'merra2_thompson_intel' [54:51, 01:36](1773 MB) +PASS -- TEST 'regional_control_intel' [54:45, 00:17](853 MB) +PASS -- TEST 'regional_restart_intel' [49:02, 00:14](852 MB) +PASS -- TEST 'regional_decomp_intel' [54:07, 00:53](857 MB) +PASS -- TEST 'regional_2threads_intel' [54:04, 00:51](904 MB) +PASS -- TEST 'regional_noquilt_intel' [53:50, 00:22](1178 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [53:48, 00:25](853 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [53:41, 01:05](854 MB) +PASS -- TEST 'regional_wofs_intel' [52:47, 00:55](1585 MB) + +PASS -- COMPILE 'rrfs_intel' [22:44, 22:02] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [51:55, 01:57](918 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [51:29, 01:05](1098 MB) +PASS -- TEST 'rap_decomp_intel' [51:11, 01:46](917 MB) +PASS -- TEST 'rap_2threads_intel' [51:11, 01:44](1004 MB) +PASS -- TEST 'rap_restart_intel' [42:34, 01:03](786 MB) +PASS -- TEST 'rap_sfcdiff_intel' [51:07, 01:12](913 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [51:06, 01:46](911 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [42:36, 01:45](786 MB) +PASS -- TEST 'hrrr_control_intel' [51:00, 01:04](909 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [50:39, 00:44](909 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [49:39, 01:44](993 MB) +PASS -- TEST 'hrrr_control_restart_intel' [45:56, 01:06](741 MB) +PASS -- TEST 'rrfs_v1beta_intel' [49:28, 01:13](911 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [49:20, 00:54](1873 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [48:29, 01:18](1860 MB) + +PASS -- COMPILE 'csawmg_intel' [22:44, 21:38] +PASS -- TEST 'control_csawmg_intel' [48:18, 00:28](873 MB) +PASS -- TEST 'control_ras_intel' [48:11, 00:59](561 MB) + +PASS -- COMPILE 'wam_intel' [34:58, 34:14] +PASS -- TEST 'control_wam_intel' [37:00, 00:58](270 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:43, 19:40] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [47:04, 02:11](1764 MB) +PASS -- TEST 'regional_control_faster_intel' [47:01, 00:19](850 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:33, 13:48] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [48:08, 00:23](1492 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [48:08, 01:29](1487 MB) +PASS -- TEST 'control_stochy_debug_intel' [48:03, 00:54](690 MB) +PASS -- TEST 'control_lndp_debug_intel' [47:34, 01:05](689 MB) +PASS -- TEST 'control_csawmg_debug_intel' [47:28, 00:31](1000 MB) +PASS -- TEST 'control_ras_debug_intel' [46:06, 01:11](700 MB) +PASS -- TEST 'control_diag_debug_intel' [46:06, 01:13](1556 MB) +PASS -- TEST 'control_debug_p8_intel' [45:53, 00:55](1791 MB) +PASS -- TEST 'regional_debug_intel' [45:48, 00:32](883 MB) +PASS -- TEST 'rap_control_debug_intel' [45:21, 00:54](1074 MB) +PASS -- TEST 'hrrr_control_debug_intel' [44:59, 00:57](1073 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [44:20, 00:45](1075 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [44:09, 00:50](1075 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [43:34, 00:50](1075 MB) +PASS -- TEST 'rap_diag_debug_intel' [43:31, 00:44](1156 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [43:16, 00:46](1074 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:04, 00:40](1079 MB) +PASS -- TEST 'rap_lndp_debug_intel' [42:34, 00:41](1080 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:23, 00:53](1074 MB) +PASS -- TEST 'rap_noah_debug_intel' [41:48, 00:53](1068 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [41:46, 00:49](1075 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:40, 00:37](1072 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [41:31, 00:54](1068 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [41:27, 01:00](1079 MB) +PASS -- TEST 'rap_flake_debug_intel' [41:22, 00:51](1078 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [41:17, 02:11](1078 MB) + +PASS -- COMPILE 'wam_debug_intel' [21:45, 21:09] ( 842 warnings ) +PASS -- TEST 'control_wam_debug_intel' [41:10, 00:59](303 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:33, 13:48] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [41:02, 01:16](958 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [40:23, 01:14](791 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:46, 02:11](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [38:47, 01:12](853 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:46, 01:55](843 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [38:20, 01:30](785 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [33:00, 01:26](689 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [34:05, 00:14](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:37, 15:21] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [37:51, 01:05](1005 MB) +PASS -- TEST 'conus13km_2threads_intel' [33:54, 00:46](1012 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [33:53, 00:36](881 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:32, 17:58] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [37:49, 01:26](814 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:26, 10:28] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [37:41, 00:50](951 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [37:15, 01:08](945 MB) +PASS -- TEST 'conus13km_debug_intel' [36:49, 01:10](1044 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [36:46, 01:02](712 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [36:37, 00:26](1045 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [36:02, 01:12](1111 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [26:50, 25:51] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [25:36, 00:34](982 MB) + +PASS -- COMPILE 'hafsw_intel' [24:48, 23:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [26:39, 01:47](618 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [26:39, 00:26](963 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [26:37, 01:54](659 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:37, 02:15](693 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:38, 02:10](711 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [26:37, 01:20](393 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [26:38, 02:39](403 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [26:38, 01:27](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [26:41, 02:46](375 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:37, 01:33](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:37, 00:47](419 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [26:39, 01:38](497 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [26:38, 01:19](316 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:29, 08:20] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [35:48, 01:29](506 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:46, 19:44] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:39, 01:08](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [27:39, 01:42](708 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:40, 18:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [27:43, 01:21](715 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:36, 14:23] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [31:33, 02:11](659 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [31:33, 02:08](645 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:31, 00:23](882 MB) + +PASS -- COMPILE 'atml_intel' [25:53, 25:14] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [16:32, 16:16] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [13:28, 13:04] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [27:43, 01:02](3027 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [27:43, 01:48](2905 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:43, 01:16](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [14:34, 13:50] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:19, 01:45](4436 MB) SYNOPSIS: -Starting Date/Time: 20240531 01:18:02 -Ending Date/Time: 20240531 02:46:47 -Total Time: 01h:29m:27s +Starting Date/Time: 20240604 15:31:57 +Ending Date/Time: 20240604 17:03:08 +Total Time: 01h:31m:54s Compiles Completed: 32/32 Tests Completed: 155/155 diff --git a/tests/rt.conf b/tests/rt.conf index dbd84e0cb1..adc2cb5344 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -371,7 +371,7 @@ RUN | gnv1_c96_no_nest_debug | + hera hercules COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | control_wam_debug | + hercules | baseline | +RUN | control_wam_debug | + hera hercules | baseline | ### 32-bit physics tests ### @@ -410,21 +410,21 @@ RUN | rap_control_dyn64_phy32_debug | + hera hercules ### S2S tests ### COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -# RUN | cpld_control_p8 | + hera | baseline | +RUN | cpld_control_p8 | + hercules | baseline | COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -RUN | cpld_control_nowave_noaero_p8 | + hera | baseline | +RUN | cpld_control_nowave_noaero_p8 | + hera hercules | baseline | COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -# RUN | cpld_debug_p8 | + hera | baseline | +RUN | cpld_debug_p8 | + hercules | baseline | # Unstructured WW3 COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera hercules | fv3 | -RUN | cpld_control_pdlib_p8 | + hera | baseline | +RUN | cpld_control_pdlib_p8 | + hera hercules | baseline | COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | cpld_debug_pdlib_p8 | + hera | baseline | +RUN | cpld_debug_pdlib_p8 | + hera hercules | baseline | ### CDEPS Data Atmosphere test ### COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera hercules | fv3 | -RUN | datm_cdeps_control_cfsr | + hera | baseline | +RUN | datm_cdeps_control_cfsr | + hera hercules | baseline | diff --git a/tests/test_changes.list b/tests/test_changes.list index 1cf267012f..e47507de28 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1 +1,37 @@ -cpld_control_gfsv17_iau intel +control_csawmg gnu +control_stochy gnu +control_ras gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_flake gnu +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rrfs_v1beta gnu +control_wam_debug gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu +conus13km_control gnu +conus13km_2threads gnu +conus13km_restart_mismatch gnu +rap_control_dyn64_phy32 gnu +cpld_control_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_debug_p8 gnu +cpld_control_pdlib_p8 gnu +datm_cdeps_control_cfsr gnu