diff --git a/FV3 b/FV3 index 6942270941..1b75fe2c90 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 694227094198b8c1fe101af22dc506e9aeff9ebe +Subproject commit 1b75fe2c90f2a0abf03844d867bd2afa00e86de9 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 10521a921d..ab7bd14d20 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 10521a921d2f442de19a0cda240d912fd918c40c +Subproject commit ab7bd14d209592d55490e75dbfaa61cb4a62df97 diff --git a/WW3 b/WW3 index 4ffc47e10e..d9b3172f41 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 +Subproject commit d9b3172f4197c65d471662c6952a668152d71230 diff --git a/tests/atparse.bash b/tests/atparse.bash index a1d9496982..5e0e8985d8 100755 --- a/tests/atparse.bash +++ b/tests/atparse.bash @@ -1,42 +1,106 @@ #! /usr/bin/env bash function atparse { - local __set_x - [ -o xtrace ] && __set_x='set -x' || __set_x='set +x' - set +x + # Usage: + # source atparse.bash # defines the "atparse" function; only do this once + # atparse [ var1=value1 [ var2=value2 [...] ] ] < input_file > output_file + # This function filters text from stdin to stdout. It scans for text sequences like: + # @[varname] + # And replaces them with the value of the corresponding ${varname} variable. + # You can provide variables that are not set in bash by providing them on the command line. + # If set -u is enabled, it will exit the process when a variable is empty or undefined via set -u. + # Use __ in names to avoid clashing with variables in {var} blocks. - local __text __before __after __during + local __text # current line of text being parsed, or the current command-line argument being parsed + local __before # all text before the next @[...] option + local __after # all text after the next @[...] option + local __during # the contents of the @[...] option, including the @[ and ] + local __set_x=":" # will be "set -x" if the calling script had that option enabled + local __set_u=":" # will be "set -u" if the calling script had that option enabled + local __set_e=":" # will be "set -e" if the calling script had that option enabled + local __abort_on_undefined=NO # YES = script should abort if a variable is undefined, NO otherwise + + # Ensure "set -x -e -u" are all inactive, but remember if they + # were active so we can reset them later. + if [[ -o xtrace ]] ; then + __set_x="set -x" + fi + if [[ -o errexit ]] ; then + __set_e="set -e" + fi + if [[ -o nounset ]] ; then + __set_u="set -u" + __abort_on_undefined=YES + fi + set +eux + + # Allow setting variables on the atparse command line rather than the environment. + # They will be local variables in this function. for __text in "$@" ; do if [[ $__text =~ ^([a-zA-Z][a-zA-Z0-9_]*)=(.*)$ ]] ; then eval "local ${BASH_REMATCH[1]}" eval "${BASH_REMATCH[1]}="'"${BASH_REMATCH[2]}"' else - echo "ERROR: Ignoring invalid argument $__text\n" 1>&2 + echo "ERROR: Ignoring invalid argument $__text" 1>&2 fi done - while IFS= read -r __text ; do + + # Loop over all lines of text. + while [[ 1 == 1 ]] ; do + # Read the next line of text. This will "fail" if no more text + # is left OR if the last line lacks an end-of-line character. + read -d '' -r __text + + # Stop when "read" reports it is done ($? -ne 0) AND the text is + # non-empty (! -n "$__text"). This ensures we read the final line + # even if it lacks an end-of-line character. + if [[ $? -ne 0 ]] ; then + if [[ -n "$__text" ]] ; then + # Text remained, but it had no end-of-line. + : + else + break + fi + fi + # Search for strings like @[varname] or @['string'] or @[@] while [[ "$__text" =~ ^([^@]*)(@\[[a-zA-Z_][a-zA-Z_0-9]*\]|@\[\'[^\']*\'\]|@\[@\]|@)(.*) ]] ; do __before="${BASH_REMATCH[1]}" __during="${BASH_REMATCH[2]}" __after="${BASH_REMATCH[3]}" -# printf 'PARSE[%s|%s|%s]\n' "$__before" "$__during" "$__after" printf %s "$__before" + # @['string'] inserts string if [[ "$__during" =~ ^@\[\'(.*)\'\]$ ]] ; then printf %s "${BASH_REMATCH[1]}" + # @[@] inserts @ elif [[ "$__during" == '@[@]' ]] ; then printf @ + # @[varname] inserts $varname elif [[ "$__during" =~ ^@\[([a-zA-Z_][a-zA-Z_0-9]*)\] ]] ; then + # Flag unknown variables at this step only. + if [[ ${__abort_on_undefined} == YES ]] ; then + set -u + fi eval 'printf %s "$'"${BASH_REMATCH[1]}"'"' + if [[ ${__abort_on_undefined} == YES ]] ; then + set +u + fi + # Unrecognized sequences are inserted verbatim. else printf '%s' "$__during" fi + # Continue until we run out of text in this line. if [[ "$__after" == "$__text" ]] ; then break fi __text="$__after" done + # Print the corrected text printf '%s\n' "$__text" done + + # Restore the calling script's shell options. eval "$__set_x" + eval "$__set_u" + eval "$__set_e" } function test_atparse { @@ -45,14 +109,18 @@ function test_atparse { testvar='[testvar]' var1='[var1]' var2='[var2]' - cat<<\EOF | atparse var3='**' + var4='[var4]' + ( cat<<\EOF ; echo -n "line with no end-of-line character [var4] = @[var4]" ) | atparse var3='**' Nothing special here. = @['Nothing special here.'] [testvar] = @[testvar] [var1] [var2] = @[var1] @[var2] ** = @[var3] +[var4] == @[var4] @ = @[@] = @['@'] +@[undefined_variable_that_should_exit_script_if_set_minus_u_is_used] -n eval "export PE$c=\${PE$c:-0}" = @[' eval "export PE$c=\${PE$c:-0}"'] EOF + echo " ... this text should be on the same line as the line with no end-of-line character" echo "After block, \$var3 = \"$var3\" should be empty" } diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index 04a44585ed..871021f54a 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -1,111 +1,112 @@ #!/bin/bash set -eu -# This script checks if head repo of PR is up to date with ufs-weather-model develop -# Checks for top level (ufs-weather-model) and next level components (submodules) -result() { - if [[ -n $comment ]]; then - logID=$1 - comment="@$logID please bring these up to date with respective authoritative repositories\n"$comment - printf %s "$comment" - #exit 1 - fi +get_shas () { + cwd=$(pwd) + # Get sha-1's of the top of develop and feature branches + app="Accept: application/vnd.github.v3+json" + url=$1 + gitapi=$2 + branch=$3 + base_sha=$(curl -sS -H "$app" $gitapi | jq -r '.commit.sha') + workspace=$4 + cd $workspace + git remote add upstream $url + git fetch -q upstream $branch + common=$(git merge-base $base_sha @) + echo $common $base_sha $workspace + if [[ $common != $base_sha ]]; then + printf "%s\n\n" "** $workspace **NOT** up to date" + flag_sync=false + fi + cd $cwd } -# Declare variables -declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics atmos_cubed_sphere -submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics atmos_cubed_sphere" -comment='' +flag_sync=true + ownerID=$1 -# Base branch: this is the top of develop of ufs-weather-model -base[repo]='https://github.com/ufs-community/ufs-weather-model' -base[branch]='develop' +declare -A urls branches pathes +submodules="base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp_physics ccpp_framework aqm noahmp" -# Submodules to check -fv3[repo]='https://github.com/NOAA-EMC/fv3atm' -fv3[branch]='develop' -fv3[dir]='FV3' +urls[base]='https://github.com/ufs-community/ufs-weather-model' +branches[base]='develop' +pathes[base]='' -mom6[repo]='https://github.com/NOAA-EMC/MOM6' -mom6[branch]='dev/emc' -mom6[dir]='MOM6-interface/MOM6' +urls[fv3]='https://github.com/NOAA-EMC/fv3atm' +branches[fv3]='develop' +pathes[fv3]='FV3' -cice[repo]='https://github.com/NOAA-EMC/CICE' -cice[branch]='emc/develop' -cice[dir]='CICE-interface/CICE' +urls[mom6]='https://github.com/NOAA-EMC/MOM6' +branches[mom6]='dev/emc' +pathes[mom6]='MOM6-interface/MOM6' -ww3[repo]='https://github.com/NOAA-EMC/WW3' -ww3[branch]='dev/ufs-weather-model' -ww3[dir]='WW3' +urls[cice]='https://github.com/NOAA-EMC/CICE' +branches[cice]='emc/develop' +pathes[cice]='CICE-interface/CICE' -stoch[repo]='https://github.com/noaa-psl/stochastic_physics' -stoch[branch]='master' -stoch[dir]='stochastic_physics' +urls[ww3]='https://github.com/NOAA-EMC/WW3' +branches[ww3]='dev/ufs-weather-model' +pathes[ww3]='WW3' -gocart[repo]='https://github.com/GEOS-ESM/GOCART' -gocart[branch]='develop' -gocart[dir]='GOCART' +urls[stoch]='https://github.com/noaa-psl/stochastic_physics' +branches[stoch]='master' +pathes[stoch]='stochastic_physics' -cmeps[repo]='https://github.com/NOAA-EMC/CMEPS' -cmeps[branch]='emc/develop' -cmeps[dir]='CMEPS-interface/CMEPS' +urls[gocart]='https://github.com/GEOS-ESM/GOCART' +branches[gocart]='develop' +pathes[gocart]='GOCART' -cdeps[repo]='https://github.com/NOAA-EMC/CDEPS' -cdeps[branch]='develop' -cdeps[dir]='CDEPS-interface/CDEPS' +urls[cmeps]='https://github.com/NOAA-EMC/CMEPS' +branches[cmeps]='emc/develop' +pathes[cmeps]='CMEPS-interface/CMEPS' -hycom[repo]='https://github.com/NOAA-EMC/HYCOM-src' -hycom[branch]='emc/develop' -hycom[dir]='HYCOM-interface/HYCOM' +urls[cdeps]='https://github.com/NOAA-EMC/CDEPS' +branches[cdeps]='develop' +pathes[cdeps]='CDEPS-interface/CDEPS' -cmake[repo]='https://github.com/NOAA-EMC/CMakeModules' -cmake[branch]='develop' -cmake[dir]='CMakeModules' +urls[hycom]='https://github.com/NOAA-EMC/HYCOM-src' +branches[hycom]='emc/develop' +pathes[hycom]='HYCOM-interface/HYCOM' -ccpp-framework[repo]='https://github.com/NCAR/ccpp-framework' -ccpp-framework[branch]='main' -ccpp-framework[dir]='FV3/ccpp/framework' +urls[cmake]='https://github.com/NOAA-EMC/CMakeModules' +branches[cmake]='develop' +pathes[cmake]='CMakeModules' -ccpp-physics[repo]='https://github.com/ufs-community/ccpp-physics' -ccpp-physics[branch]='ufs/dev' -ccpp-physics[dir]='FV3/ccpp/physics' +urls[ccpp_physics]='https://github.com/ufs-community/ccpp-physics' +branches[ccpp_physics]='ufs/dev' +pathes[ccpp_physics]='FV3/ccpp/physics' -#upp[repo]='https://github.com/NOAA-EMC/UPP' -#upp[branch]='develop' -#upp[dir]='upp' +urls[ccpp_framework]='https://github.com/NCAR/ccpp-framework' +branches[ccpp_framework]='main' +pathes[ccpp_framework]='FV3/ccpp/framework' -atmos_cubed_sphere[repo]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere' -atmos_cubed_sphere[branch]='dev/emc' -atmos_cubed_sphere[dir]='FV3/atmos_cubed_sphere' +urls[aqm]='https://github.com/NOAA-EMC/AQM' +branches[aqm]='develop' +pathes[aqm]='AQM' -# Get sha-1's of the top of develop of ufs-weather-model -app="Accept: application/vnd.github.v3+json" -url="https://api.github.com/repos/ufs-community/ufs-weather-model/branches/develop" -base[sha]=$(curl -sS -H "$app" $url | jq -r '.commit.sha') -for submodule in $submodules; do - eval url=https://api.github.com/repos/ufs-community/ufs-weather-model/contents/'${'$submodule'[dir]}' - eval $submodule'[sha]=$(curl -sS -H "$app" $url | jq -r '.sha')' -done +urls[noahmp]='https://github.com/NOAA-EMC/noahmp' +branches[noahmp]='develop' +pathes[noahmp]='NOAHMP-interface/noahmp' -# Check if the head branch is up to date with the base branch -cd ${GITHUB_WORKSPACE} -git remote add upstream ${base[repo]} -git fetch -q upstream ${base[branch]} -common=$(git merge-base ${base[sha]} @) -if [[ $common != ${base[sha]} ]]; then - comment="* ufs-weather-model **NOT** up to date\n" -fi +#urls[upp]='https://github.com/NOAA-EMC/UPP' +#branches[upp]='develop' +#pathes[upp]='upp' + +#urls[cubed_sphere]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere' +#branches[cubed_sphere]='dev/emc' +#pathes[cubed_sphere]='FV3/atmos_cubed_sphere' for submodule in $submodules; do - eval cd ${GITHUB_WORKSPACE}/'${'$submodule'[dir]}' - eval git remote add upstream '${'$submodule'[repo]}' - eval git fetch -q upstream '${'$submodule'[branch]}' - common=$(eval git merge-base '${'$submodule'[sha]}' @) - if (eval test $common != '${'$submodule'[sha]}'); then - comment+="* $submodule **NOT** up to date\n" - fi + url=${urls[$submodule]} + branch=${branches[$submodule]} + workspace=${GITHUB_WORKSPACE}'/'${pathes[$submodule]} + gitapi=$(echo "$url" | sed 's/github.com/api.github.com\/repos/g')'/branches/'$branch + get_shas $url $gitapi $branch $workspace done -result $ownerID -exit 0 +if [[ $flag_sync=='true' ]]; then + exit 0 +else + exit 0 +fi diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 08758d8f87..b7445431fe 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Mar 15 14:30:32 UTC 2024 +Mon Apr 1 12:58:41 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_63946/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.403230 - 0: The maximum resident set size (KB) = 1301268 + 0: The total amount of wall time = 268.251032 + 0: The maximum resident set size (KB) = 1265156 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_63946/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/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 = 914.973019 - 0: The maximum resident set size (KB) = 1289712 + 0: The total amount of wall time = 965.834768 + 0: The maximum resident set size (KB) = 1256504 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_63946/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 254.193285 - 0: The maximum resident set size (KB) = 1277804 + 0: The total amount of wall time = 246.586805 + 0: The maximum resident set size (KB) = 1233548 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_63946/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 250.421070 - 0: The maximum resident set size (KB) = 1278668 + 0: The total amount of wall time = 235.970450 + 0: The maximum resident set size (KB) = 1247740 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_63946/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/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 = 267.943348 - 0: The maximum resident set size (KB) = 1275920 + 0: The total amount of wall time = 242.245564 + 0: The maximum resident set size (KB) = 1242900 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_63946/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/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 = 249.896889 - 0: The maximum resident set size (KB) = 1276116 + 0: The total amount of wall time = 237.390294 + 0: The maximum resident set size (KB) = 1248812 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_63946/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/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 = 256.272146 - 0: The maximum resident set size (KB) = 1278636 + 0: The total amount of wall time = 242.382720 + 0: The maximum resident set size (KB) = 1242900 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Mar 15 15:51:09 UTC 2024 -Elapsed time: 01h:20m:37s. Have a nice day! +Mon Apr 1 14:07:52 UTC 2024 +Elapsed time: 01h:09m:14s. 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 7371cb73b4..2b21c64d86 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 Mar 15 17:05:46 UTC 2024 +Mon Apr 1 18:08:14 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_183838/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/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 = 1356.631044 - 0: The maximum resident set size (KB) = 1411552 + 0: The total amount of wall time = 1299.447405 + 0: The maximum resident set size (KB) = 1367532 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_183838/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/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.496545 - 0: The maximum resident set size (KB) = 1403852 + 0: The total amount of wall time = 604.635134 + 0: The maximum resident set size (KB) = 1359688 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_183838/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/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 = 390.554898 - 0: The maximum resident set size (KB) = 1403928 + 0: The total amount of wall time = 385.824022 + 0: The maximum resident set size (KB) = 1360152 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Mar 15 22:24:11 UTC 2024 -Elapsed time: 05h:18m:26s. Have a nice day! +Mon Apr 1 19:12:24 UTC 2024 +Elapsed time: 01h:04m:10s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index bfe3cac9fc..2c2b774530 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Mar 15 16:17:17 UTC 2024 +Mon Apr 1 16:00:46 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_135871/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/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 = 511.975861 - 0: The maximum resident set size (KB) = 589832 + 0: The total amount of wall time = 2150.095224 + 0: The maximum resident set size (KB) = 553404 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_135871/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/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 = 519.974209 - 0: The maximum resident set size (KB) = 589384 + 0: The total amount of wall time = 2151.572064 + 0: The maximum resident set size (KB) = 563124 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_135871/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/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 = 532.386605 - 0: The maximum resident set size (KB) = 589932 + 0: The total amount of wall time = 2129.213652 + 0: The maximum resident set size (KB) = 560932 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Mar 15 17:01:36 UTC 2024 -Elapsed time: 00h:44m:20s. Have a nice day! +Mon Apr 1 17:59:32 UTC 2024 +Elapsed time: 01h:58m:47s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 4c5dda01e8..f05e309630 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: -55da2dd260008d4a1196c77c941d5b3300bcae45 +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,33 +11,33 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808) + 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) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + 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) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + 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) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -48,270 +48,270 @@ 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-20240315 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_81433 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6817 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [57:25, 19:34] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 04:54](3075 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:20, 20:29] -PASS -- TEST 'cpld_control_gfsv17_intel' [20:21, 13:51](1689 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:31, 15:05](1817 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [18:19, 07:09](1369 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:24, 15:52](1652 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [49:26, 09:22] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:53, 21:45](1695 MB) - -PASS -- COMPILE 's2swa_intel' [47:16, 19:38] -PASS -- TEST 'cpld_control_p8_intel' [12:06, 05:36](3091 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:36, 05:37](3094 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:44, 03:16](3150 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:24, 05:36](3119 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:30, 03:18](3180 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:22, 05:35](3087 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:29, 04:37](3384 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:01, 05:38](3100 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:40, 08:46](3633 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:49, 05:44](3615 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:08, 09:37](4344 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:35, 06:48](4647 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:17, 05:16](3064 MB) - -PASS -- COMPILE 's2sw_intel' [21:06, 18:55] -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:51, 04:13](1686 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:10, 04:13](1725 MB) - -PASS -- COMPILE 's2swa_debug_intel' [45:22, 09:28] -PASS -- TEST 'cpld_debug_p8_intel' [10:59, 07:44](3149 MB) - -PASS -- COMPILE 's2sw_debug_intel' [39:21, 08:48] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:59, 05:17](1699 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [54:27, 14:23] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:57, 04:15](1724 MB) - -PASS -- COMPILE 's2s_intel' [51:27, 14:13] -PASS -- TEST 'cpld_control_c48_intel' [10:19, 06:34](2668 MB) - -PASS -- COMPILE 's2swa_faster_intel' [03:31, 22:51] -PASS -- TEST 'cpld_control_p8_faster_intel' [19:43, 05:27](3102 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [38:29, 19:38] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:59, 14:00](1698 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:24, 07:11](1014 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:01, 15:57](1665 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:20, 08:53] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:53, 22:44](1704 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:24, 12:23] -PASS -- TEST 'control_flake_intel' [06:06, 03:23](1391 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:01, 02:03](619 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:10, 02:10](625 MB) -PASS -- TEST 'control_latlon_intel' [05:00, 02:07](618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:09, 02:10](621 MB) -PASS -- TEST 'control_c48_intel' [49:09, 05:14](740 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [51:22, 05:13](736 MB) -PASS -- TEST 'control_c192_intel' [15:51, 07:53](738 MB) -PASS -- TEST 'control_c384_intel' [12:29, 08:09](1055 MB) -PASS -- TEST 'control_c384gdas_intel' [17:13, 07:12](1198 MB) -PASS -- TEST 'control_stochy_intel' [06:06, 01:28](625 MB) -PASS -- TEST 'control_stochy_restart_intel' [12:50, 00:51](435 MB) -PASS -- TEST 'control_lndp_intel' [04:00, 01:25](1369 MB) -PASS -- TEST 'control_iovr4_intel' [05:05, 02:06](618 MB) -PASS -- TEST 'control_iovr5_intel' [05:04, 02:07](622 MB) -PASS -- TEST 'control_p8_intel' [15:06, 02:32](1601 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:12, 02:27](1592 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [16:14, 02:27](1599 MB) -PASS -- TEST 'control_restart_p8_intel' [07:40, 01:26](802 MB) -PASS -- TEST 'control_noqr_p8_intel' [15:06, 02:27](1589 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:40, 01:21](804 MB) -PASS -- TEST 'control_decomp_p8_intel' [16:31, 02:32](1593 MB) -PASS -- TEST 'control_p8_lndp_intel' [19:32, 04:21](1594 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [17:49, 03:18](1658 MB) -PASS -- TEST 'control_p8_mynn_intel' [16:13, 02:33](1607 MB) -PASS -- TEST 'merra2_thompson_intel' [16:10, 03:00](1599 MB) -PASS -- TEST 'regional_control_intel' [08:33, 04:28](632 MB) -PASS -- TEST 'regional_restart_intel' [10:07, 02:29](801 MB) -PASS -- TEST 'regional_decomp_intel' [06:28, 04:44](632 MB) -PASS -- TEST 'regional_noquilt_intel' [39:36, 04:23](1163 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:04, 04:26](627 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:09, 04:27](629 MB) -PASS -- TEST 'regional_wofs_intel' [13:07, 05:37](1601 MB) - -PASS -- COMPILE 'rrfs_intel' [12:22, 11:02] -PASS -- TEST 'rap_control_intel' [14:28, 06:05](1005 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:41, 03:45](1191 MB) -PASS -- TEST 'rap_decomp_intel' [14:21, 06:20](1006 MB) -PASS -- TEST 'rap_restart_intel' [15:28, 03:14](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:06, 06:04](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:02, 06:21](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [16:35, 04:34](1369 MB) -PASS -- TEST 'hrrr_control_intel' [10:23, 03:12](997 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [11:23, 03:16](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [35:27, 02:47](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [12:40, 01:44](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:11, 05:58](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:39, 07:22](1955 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:50, 07:11](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [13:29, 10:19] -PASS -- TEST 'control_csawmg_intel' [13:11, 05:49](695 MB) -PASS -- TEST 'control_csawmgt_intel' [16:08, 05:47](693 MB) -PASS -- TEST 'control_ras_intel' [13:37, 02:53](653 MB) - -PASS -- COMPILE 'wam_intel' [13:27, 09:43] -PASS -- TEST 'control_wam_intel' [12:32, 01:53](380 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:22, 12:47] -PASS -- TEST 'control_p8_faster_intel' [11:34, 02:22](1601 MB) -PASS -- TEST 'regional_control_faster_intel' [13:04, 04:13](629 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:33] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [13:39, 02:36](789 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:43, 02:33](796 MB) -PASS -- TEST 'control_stochy_debug_intel' [14:44, 02:56](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [13:43, 02:33](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:11, 03:58](836 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [17:16, 03:54](838 MB) -PASS -- TEST 'control_ras_debug_intel' [15:47, 02:38](805 MB) -PASS -- TEST 'control_diag_debug_intel' [12:58, 02:39](852 MB) -PASS -- TEST 'control_debug_p8_intel' [14:15, 02:44](1624 MB) -PASS -- TEST 'regional_debug_intel' [23:18, 16:04](675 MB) -PASS -- TEST 'rap_control_debug_intel' [14:50, 04:43](1179 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:48, 04:42](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [12:41, 04:47](1178 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [13:44, 04:40](1179 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:38, 04:37](1179 MB) -PASS -- TEST 'rap_diag_debug_intel' [15:01, 04:55](1266 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:39, 04:44](1180 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:44, 04:45](1179 MB) -PASS -- TEST 'rap_lndp_debug_intel' [13:41, 04:44](1182 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:39, 04:40](1178 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:41, 04:37](1178 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:38, 04:47](1173 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:37, 07:37](1179 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:35, 04:40](1176 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:42, 05:36](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:36, 04:40](1181 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:27, 07:56](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:25, 05:25] -PASS -- TEST 'control_wam_debug_intel' [11:29, 04:36](417 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:23, 09:28] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:38, 03:27](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:05, 05:07](880 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:07, 02:48](879 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:01, 02:53](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 03:54](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 01:33](775 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:25, 11:55] -PASS -- TEST 'conus13km_control_intel' [04:24, 01:53](1081 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:29, 00:58](1082 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:20, 01:08](973 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [58:40, 09:36] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:16, 03:39](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [54:37, 06:06] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:40, 04:33](1054 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:38, 04:29](1053 MB) -PASS -- TEST 'conus13km_debug_intel' [22:32, 13:29](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:32, 13:59](816 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:26, 13:28](1201 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:40, 05:51] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:48, 04:43](1081 MB) - -PASS -- COMPILE 'hafsw_intel' [01:33, 16:19] -PASS -- TEST 'hafs_regional_atm_intel' [08:43, 04:31](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:07, 05:07](1070 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:57, 06:22](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [22:47, 10:57](792 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:04, 12:07](935 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:27, 04:37](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:45, 05:44](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:11, 02:19](389 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 06:14](460 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:22, 03:18](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:38, 03:02](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:20, 03:47](584 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:41, 01:14](424 MB) -PASS -- TEST 'gnv1_nested_intel' [06:10, 03:27](788 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [53:41, 07:29] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:20, 11:58](611 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [05:41, 20:13] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:01](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:25, 07:11](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [01:44, 17:13] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:35, 05:22](1073 MB) - -PASS -- COMPILE 'hafs_all_intel' [57:36, 14:33] -PASS -- TEST 'hafs_regional_docn_intel' [08:24, 05:32](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:27, 05:32](735 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:32, 16:12](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [47:41, 07:58] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [21:50, 02:28](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:38, 01:31](736 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:50, 02:22](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [24:50, 02:24](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:39, 02:24](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:44, 02:28](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [23:56, 02:28](748 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [19:47, 02:21](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:58, 05:37](687 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [22:58, 05:40](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [23:48, 02:28](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [24:53, 03:52](1955 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:44, 03:52](2016 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [39:25, 05:17] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:43, 05:08](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [34:28, 07:38] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:31, 02:27](749 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [29:28, 02:32] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:44, 01:11](300 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:42, 01:06](455 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:36, 00:42](449 MB) - -PASS -- COMPILE 'atml_intel' [37:29, 12:46] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [33:09, 06:45](1638 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [32:11, 06:32](1630 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:16, 03:27](853 MB) - -PASS -- COMPILE 'atmw_intel' [36:27, 12:30] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [27:46, 01:33](1634 MB) - -PASS -- COMPILE 'atmwm_intel' [36:28, 12:52] -PASS -- TEST 'control_atmwav_intel' [27:18, 01:29](637 MB) - -PASS -- COMPILE 'atmaero_intel' [34:34, 11:03] -PASS -- TEST 'atmaero_control_p8_intel' [31:05, 03:36](2946 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [31:58, 04:15](3001 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:32, 04:34](3015 MB) - -PASS -- COMPILE 'atmaq_intel' [29:26, 11:12] - -PASS -- COMPILE 'atmaq_debug_intel' [24:30, 06:44] -PASS -- TEST 'regional_atmaq_debug_intel' [47:35, 21:47](4529 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:26, 19:23] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:04, 04:54](3073 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:26, 20:52] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:17, 13:45](1683 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:34, 15:02](1826 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:28, 07:10](955 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:20, 15:46](1655 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:26, 09:14] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:52, 21:19](1699 MB) + +PASS -- COMPILE 's2swa_intel' [20:28, 19:17] +PASS -- TEST 'cpld_control_p8_intel' [09:02, 05:37](3091 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:20, 05:36](3091 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:35, 03:16](3150 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:02, 05:37](3128 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:35, 03:17](3176 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:59, 05:28](3088 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:35, 04:36](3382 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:06, 05:33](3094 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:41, 08:42](3633 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:31, 05:44](3616 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:23, 09:45](4345 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:22, 06:51](4650 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:50, 05:16](3063 MB) + +PASS -- COMPILE 's2sw_intel' [19:26, 18:52] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:42, 04:13](1679 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:13](1731 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:26, 09:13] +PASS -- TEST 'cpld_debug_p8_intel' [11:41, 07:46](3147 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:26, 08:42] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:27, 05:19](1706 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:26, 14:20] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:15, 04:15](1720 MB) + +PASS -- COMPILE 's2s_intel' [15:26, 14:15] +PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:32](2666 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:30, 22:56] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:20, 05:28](3099 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:30, 19:35] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:00, 14:04](1693 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:55, 07:13](1011 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:30, 16:02](1666 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:26, 08:37] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:20, 22:49](1709 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:28, 12:42] +PASS -- TEST 'control_flake_intel' [04:58, 03:26](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:05](617 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:11](623 MB) +PASS -- TEST 'control_latlon_intel' [03:49, 02:05](618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:59, 02:07](622 MB) +PASS -- TEST 'control_c48_intel' [06:44, 05:13](733 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:44, 05:13](739 MB) +PASS -- TEST 'control_c192_intel' [10:35, 07:50](738 MB) +PASS -- TEST 'control_c384_intel' [13:56, 08:08](1061 MB) +PASS -- TEST 'control_c384gdas_intel' [15:36, 07:17](1194 MB) +PASS -- TEST 'control_stochy_intel' [02:50, 01:25](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:39, 00:50](439 MB) +PASS -- TEST 'control_lndp_intel' [02:50, 01:23](621 MB) +PASS -- TEST 'control_iovr4_intel' [03:56, 02:07](617 MB) +PASS -- TEST 'control_iovr5_intel' [03:41, 02:05](621 MB) +PASS -- TEST 'control_p8_intel' [04:32, 02:29](1595 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:39, 02:27](1592 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:27](1597 MB) +PASS -- TEST 'control_restart_p8_intel' [03:23, 01:26](803 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:45, 02:30](1589 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:23](804 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:41, 02:34](1583 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:35, 04:22](1595 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:41, 03:14](1653 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:46, 02:31](1611 MB) +PASS -- TEST 'merra2_thompson_intel' [05:39, 02:58](1607 MB) +PASS -- TEST 'regional_control_intel' [06:09, 04:30](630 MB) +PASS -- TEST 'regional_restart_intel' [04:09, 02:29](800 MB) +PASS -- TEST 'regional_decomp_intel' [06:11, 04:43](631 MB) +PASS -- TEST 'regional_noquilt_intel' [06:10, 04:24](1215 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:18, 04:27](627 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:12, 04:28](629 MB) +PASS -- TEST 'regional_wofs_intel' [07:06, 05:34](1601 MB) + +PASS -- COMPILE 'rrfs_intel' [11:29, 10:57] +PASS -- TEST 'rap_control_intel' [08:24, 06:05](1000 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:40, 03:40](1188 MB) +PASS -- TEST 'rap_decomp_intel' [08:19, 06:21](1004 MB) +PASS -- TEST 'rap_restart_intel' [05:20, 03:11](876 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:12, 06:05](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:18, 06:20](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:12, 04:35](880 MB) +PASS -- TEST 'hrrr_control_intel' [05:05, 03:12](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:16, 03:18](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:24, 02:48](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:48, 01:46](829 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:05, 05:58](997 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 07:21](1954 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:44, 07:08](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [11:29, 10:07] +PASS -- TEST 'control_csawmg_intel' [08:07, 05:46](692 MB) +PASS -- TEST 'control_csawmgt_intel' [08:06, 05:44](693 MB) +PASS -- TEST 'control_ras_intel' [04:39, 02:53](657 MB) + +PASS -- COMPILE 'wam_intel' [10:25, 09:18] +PASS -- TEST 'control_wam_intel' [03:33, 01:53](378 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:28, 12:27] +PASS -- TEST 'control_p8_faster_intel' [04:44, 02:20](1598 MB) +PASS -- TEST 'regional_control_faster_intel' [06:15, 04:16](626 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:20, 08:17] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:35](794 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:36](795 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:40, 02:49](794 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:40](799 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:10, 04:01](841 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:13, 03:51](837 MB) +PASS -- TEST 'control_ras_debug_intel' [04:37, 02:37](805 MB) +PASS -- TEST 'control_diag_debug_intel' [05:13, 02:42](849 MB) +PASS -- TEST 'control_debug_p8_intel' [04:15, 02:44](1620 MB) +PASS -- TEST 'regional_debug_intel' [17:12, 16:02](666 MB) +PASS -- TEST 'rap_control_debug_intel' [05:41, 04:41](1181 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:33](1175 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:39, 04:34](1182 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:35, 04:38](1182 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:49, 04:40](1180 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:13, 04:50](1266 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:39, 04:43](1180 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:46, 04:51](1177 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:44, 04:48](1181 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 04:39](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:38, 04:31](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 04:39](1176 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:30](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 04:37](1174 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:33](1177 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:42, 04:44](1177 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:09, 07:53](1182 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:25, 05:12] +PASS -- TEST 'control_wam_debug_intel' [05:29, 04:37](423 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:37] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:28, 03:27](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:07](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:16, 02:44](882 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:10, 02:54](879 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:51](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 01:31](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:21, 11:33] +PASS -- TEST 'conus13km_control_intel' [04:13, 01:51](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:41, 00:54](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:08](971 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:21, 09:45] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:07, 03:37](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:24, 05:33] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:34, 04:31](1054 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:28](1053 MB) +PASS -- TEST 'conus13km_debug_intel' [16:01, 13:21](1130 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:58, 13:34](813 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:02, 13:44](1197 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:24, 05:23] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:40, 04:33](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [16:23, 15:43] +PASS -- TEST 'hafs_regional_atm_intel' [06:49, 04:30](713 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 05:03](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:17, 06:20](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [12:59, 10:49](897 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:16, 11:53](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:31, 04:39](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:40, 05:44](493 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 02:20](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:21, 06:15](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:11, 03:16](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:18, 03:03](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:28, 03:49](579 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:39, 01:14](428 MB) +PASS -- TEST 'gnv1_nested_intel' [05:07, 03:23](786 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:18, 06:45] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:21, 11:54](608 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:13] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:02](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:34, 07:06](685 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:26, 16:31] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:49, 05:19](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:27, 13:59] +PASS -- TEST 'hafs_regional_docn_intel' [07:42, 05:36](749 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:46, 05:32](734 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:31, 16:15](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:39] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:44, 02:29](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:30](1215 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:38, 02:22](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:36, 02:26](1215 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:33, 02:25](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 02:31](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:46, 02:30](748 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:20](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:39, 05:42](688 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 05:41](669 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:34, 02:29](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:52, 03:51](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:46, 03:53](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:19, 04:58] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:38, 05:03](735 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 07:37] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:27](759 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:16] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 01:06](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:02](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:40, 00:42](507 MB) + +PASS -- COMPILE 'atml_intel' [14:15, 12:54] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:02, 06:12](1637 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:23](1632 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:24, 03:23](850 MB) + +PASS -- COMPILE 'atmw_intel' [13:21, 12:35] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:40, 01:34](1629 MB) + +PASS -- COMPILE 'atmwm_intel' [13:26, 12:34] +PASS -- TEST 'control_atmwav_intel' [02:57, 01:28](637 MB) + +PASS -- COMPILE 'atmaero_intel' [11:20, 11:01] +PASS -- TEST 'atmaero_control_p8_intel' [06:01, 03:36](2948 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:03, 04:16](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:33, 04:27](3014 MB) + +PASS -- COMPILE 'atmaq_intel' [11:21, 10:45] + +PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:05] +PASS -- TEST 'regional_atmaq_debug_intel' [25:29, 21:51](4532 MB) SYNOPSIS: -Starting Date/Time: 20240321 10:52:46 -Ending Date/Time: 20240321 14:12:13 -Total Time: 03h:20m:40s +Starting Date/Time: 20240331 11:02:38 +Ending Date/Time: 20240331 12:30:03 +Total Time: 01h:28m:12s Compiles Completed: 39/39 Tests Completed: 175/175 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 1df33ad512..4b2e1b676d 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: -55da2dd260008d4a1196c77c941d5b3300bcae45 +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,33 +11,33 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808) + 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) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + 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) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + 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) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -48,277 +48,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-20240315 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_211500 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_230915 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [00:58, 59:35] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:17, 08:25](3071 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:44, 23:26] -PASS -- TEST 'cpld_control_gfsv17_intel' [19:20, 13:41](1700 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:14, 15:48](1813 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 06:51](952 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:53, 14:54](1666 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:46, 14:59] -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:49, 24:34](1700 MB) - -PASS -- COMPILE 's2swa_intel' [24:44, 23:38] -PASS -- TEST 'cpld_control_p8_intel' [14:06, 08:30](3099 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:17, 08:44](3099 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:35, 05:59](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:05, 08:21](3125 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:35, 05:30](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:56, 07:08](3415 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:54, 08:21](3100 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:56, 07:14](3023 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:17, 08:40](3100 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:31, 10:35](3270 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:41, 08:47](3599 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:42, 13:18](4037 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:24, 09:23](4345 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:04, 08:29](3069 MB) - -PASS -- COMPILE 's2sw_intel' [58:53, 57:22] -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:07, 05:34](1683 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:04, 05:26](1730 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:46, 14:51] -PASS -- TEST 'cpld_debug_p8_intel' [15:20, 10:54](3132 MB) - -PASS -- COMPILE 's2sw_debug_intel' [18:46, 16:42] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:54, 06:16](1699 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:46, 17:13] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:41, 05:43](1733 MB) - -PASS -- COMPILE 's2s_intel' [20:43, 19:31] -PASS -- TEST 'cpld_control_c48_intel' [09:39, 06:57](2661 MB) - -PASS -- COMPILE 's2swa_faster_intel' [36:47, 35:23] -PASS -- TEST 'cpld_control_p8_faster_intel' [12:53, 08:41](3099 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 23:25] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:35, 14:58](1702 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:15, 07:42](999 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:50, 17:08](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:09, 14:33] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:11, 26:39](1708 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:11, 15:59] -PASS -- TEST 'control_flake_intel' [05:57, 03:51](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:10, 02:23](620 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:10, 02:44](627 MB) -PASS -- TEST 'control_latlon_intel' [04:50, 02:42](623 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:43, 02:39](623 MB) -PASS -- TEST 'control_c48_intel' [08:55, 05:39](721 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:45, 05:39](721 MB) -PASS -- TEST 'control_c192_intel' [12:00, 09:08](739 MB) -PASS -- TEST 'control_c384_intel' [19:49, 16:32](1041 MB) -PASS -- TEST 'control_c384gdas_intel' [19:37, 14:17](1188 MB) -PASS -- TEST 'control_stochy_intel' [03:39, 01:55](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:37, 02:01](430 MB) -PASS -- TEST 'control_lndp_intel' [03:39, 01:52](628 MB) -PASS -- TEST 'control_iovr4_intel' [05:01, 02:40](623 MB) -PASS -- TEST 'control_iovr5_intel' [04:52, 02:35](623 MB) -PASS -- TEST 'control_p8_intel' [07:06, 03:31](1606 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:30, 04:09](1608 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:05, 03:57](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [06:50, 02:18](790 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:18, 04:38](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:19, 02:00](793 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:12, 04:24](1596 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:00, 03:31](1689 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:55, 06:03](1605 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:18, 04:20](1657 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:33, 03:34](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [10:15, 04:15](1615 MB) -PASS -- TEST 'regional_control_intel' [08:01, 04:46](615 MB) -PASS -- TEST 'regional_restart_intel' [06:49, 02:57](789 MB) -PASS -- TEST 'regional_decomp_intel' [09:37, 05:13](615 MB) -PASS -- TEST 'regional_2threads_intel' [05:48, 02:51](755 MB) -PASS -- TEST 'regional_noquilt_intel' [07:44, 04:56](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 04:44](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:49, 04:51](615 MB) -PASS -- TEST 'regional_wofs_intel' [08:56, 06:03](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [17:11, 15:41] -PASS -- TEST 'rap_control_intel' [11:21, 06:56](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:28, 03:56](1187 MB) -PASS -- TEST 'rap_decomp_intel' [11:55, 07:11](1009 MB) -PASS -- TEST 'rap_2threads_intel' [08:42, 05:53](1099 MB) -PASS -- TEST 'rap_restart_intel' [07:35, 03:39](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:22, 06:55](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:56, 07:14](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:09, 05:18](880 MB) -PASS -- TEST 'hrrr_control_intel' [06:41, 03:50](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:41, 04:00](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:41, 03:02](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:44, 02:00](837 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:21, 06:41](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 08:08](1968 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:49, 07:56](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [19:14, 17:38] -PASS -- TEST 'control_csawmg_intel' [09:29, 06:58](695 MB) -PASS -- TEST 'control_csawmgt_intel' [09:14, 06:45](691 MB) -PASS -- TEST 'control_ras_intel' [06:02, 03:49](658 MB) - -PASS -- COMPILE 'wam_intel' [15:13, 14:02] -PASS -- TEST 'control_wam_intel' [05:03, 02:12](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:13, 16:12] -PASS -- TEST 'control_p8_faster_intel' [06:58, 03:48](1608 MB) -PASS -- TEST 'regional_control_faster_intel' [07:13, 04:32](614 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 14:38] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:07, 03:09](777 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:57, 03:25](781 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:35, 04:02](784 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:52, 02:49](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:31, 04:24](824 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:37, 04:12](825 MB) -PASS -- TEST 'control_ras_debug_intel' [04:49, 02:57](796 MB) -PASS -- TEST 'control_diag_debug_intel' [05:00, 03:02](843 MB) -PASS -- TEST 'control_debug_p8_intel' [06:35, 03:24](1618 MB) -PASS -- TEST 'regional_debug_intel' [19:20, 16:01](633 MB) -PASS -- TEST 'rap_control_debug_intel' [08:03, 05:09](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:02, 05:02](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:55, 05:04](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:40, 05:05](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:57, 05:00](1169 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:30, 05:16](1251 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:36, 05:10](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:10](1166 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:43, 05:05](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:01, 05:13](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:08, 04:57](1166 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:57, 05:06](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:40, 07:55](1166 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:18](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:49, 05:52](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:46, 05:04](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:32](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:12, 08:44] -PASS -- TEST 'control_wam_debug_intel' [06:42, 05:08](394 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:13, 14:48] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:17, 04:01](1053 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:24, 05:59](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:13, 03:54](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:12, 05:26](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:05, 03:05](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:07, 03:19](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:02, 04:10](784 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:08](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:14, 15:44] -PASS -- TEST 'conus13km_control_intel' [06:22, 03:17](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:04](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:14, 01:57](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:10, 13:26] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:43, 04:41](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:10, 11:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:03, 05:08](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:54, 05:09](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [16:40, 13:54](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:38, 14:19](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:16, 08:33](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:19, 13:51](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:08, 10:08] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 05:04](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [24:15, 22:19] -PASS -- TEST 'hafs_regional_atm_intel' [08:51, 05:19](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 04:30](1059 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:03, 07:42](752 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:55, 11:42](783 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:08, 12:50](794 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:18, 05:16](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:43, 06:50](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:19, 03:13](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:50, 08:23](432 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:43, 03:41](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:33, 03:43](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:17, 04:59](566 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:57, 01:59](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:52, 04:13](764 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:15, 13:38] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:46, 12:56](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [26:19, 24:15] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:31, 07:48](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:39, 07:56](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 19:51] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:38, 06:09](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:10, 18:12] -PASS -- TEST 'hafs_regional_docn_intel' [09:33, 06:09](747 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:29, 06:34](731 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:20, 20:12](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [20:12, 18:53] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 02:41](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:32, 01:36](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:31](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 02:37](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:29, 02:30](635 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:40](745 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:34](758 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 02:26](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:39, 06:14](690 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 06:09](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:38](758 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:34, 04:39](2011 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 04:37](2013 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:08, 09:59] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:30](739 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:09, 15:12] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 02:46](758 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:12, 10:44] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:17, 04:13](319 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:56, 02:40](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:58, 02:01](456 MB) - -PASS -- COMPILE 'atml_intel' [18:10, 16:41] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:37, 10:04](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:56, 09:17](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:58, 04:01](835 MB) - -PASS -- COMPILE 'atmw_intel' [17:14, 15:44] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:07, 02:58](1649 MB) - -PASS -- COMPILE 'atmwm_intel' [18:09, 16:40] -PASS -- TEST 'control_atmwav_intel' [05:19, 02:31](640 MB) - -PASS -- COMPILE 'atmaero_intel' [16:10, 15:00] -PASS -- TEST 'atmaero_control_p8_intel' [10:12, 07:05](2943 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:02, 07:43](3012 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:48, 07:44](3018 MB) - -PASS -- COMPILE 'atmaq_intel' [37:18, 35:47] - -PASS -- COMPILE 'atmaq_debug_intel' [13:12, 11:56] -PASS -- TEST 'regional_atmaq_debug_intel' [24:29, 21:00](4449 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:10, 15:34] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:32, 07:09](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 20:50] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:35, 13:57](1700 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:46, 14:25](1813 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:05, 06:43](951 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:55, 15:17](1666 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [24:11, 23:03] +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:29, 25:04](1697 MB) + +PASS -- COMPILE 's2swa_intel' [18:09, 16:36] +PASS -- TEST 'cpld_control_p8_intel' [11:54, 08:05](3100 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:01, 07:55](3100 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:32, 05:31](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:47, 08:05](3127 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 05:02](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:53, 06:29](3412 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:38, 07:54](3100 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:53, 06:56](3023 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:01, 07:48](3101 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:01, 10:28](3273 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:53, 07:48](3607 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:30, 13:22](4039 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:00, 09:48](4346 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:46, 07:35](3068 MB) + +PASS -- COMPILE 's2sw_intel' [17:10, 15:27] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:48, 04:56](1682 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 05:18](1731 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:08, 10:10] +PASS -- TEST 'cpld_debug_p8_intel' [13:00, 09:51](3130 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:08, 10:13] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 06:05](1697 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:26] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:47, 05:13](1731 MB) + +PASS -- COMPILE 's2s_intel' [16:10, 14:08] +PASS -- TEST 'cpld_control_c48_intel' [09:14, 06:54](2662 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:36] +PASS -- TEST 'cpld_control_p8_faster_intel' [12:36, 08:23](3099 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 21:53] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:15, 14:52](1703 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:37, 07:14](1000 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:14, 17:38](1680 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:09, 10:32] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:51, 26:49](1710 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:09, 13:42] +PASS -- TEST 'control_flake_intel' [05:30, 04:02](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:44, 02:48](620 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:47, 02:58](626 MB) +PASS -- TEST 'control_latlon_intel' [04:38, 02:54](623 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:53, 02:55](623 MB) +PASS -- TEST 'control_c48_intel' [07:55, 05:35](727 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:36](722 MB) +PASS -- TEST 'control_c192_intel' [12:23, 09:27](738 MB) +PASS -- TEST 'control_c384_intel' [19:32, 16:26](1042 MB) +PASS -- TEST 'control_c384gdas_intel' [19:18, 14:13](1183 MB) +PASS -- TEST 'control_stochy_intel' [03:36, 01:55](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:02, 01:06](430 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 01:59](628 MB) +PASS -- TEST 'control_iovr4_intel' [04:41, 02:34](623 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:36](623 MB) +PASS -- TEST 'control_p8_intel' [07:53, 03:37](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:55, 03:17](1608 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:53, 03:14](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [04:40, 01:45](789 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:15](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:40, 01:57](793 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:45, 03:22](1594 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:57, 02:46](1678 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:12, 05:15](1605 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:51, 04:15](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:59, 03:49](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [07:53, 04:16](1615 MB) +PASS -- TEST 'regional_control_intel' [07:09, 04:45](615 MB) +PASS -- TEST 'regional_restart_intel' [04:56, 02:33](789 MB) +PASS -- TEST 'regional_decomp_intel' [07:09, 04:58](615 MB) +PASS -- TEST 'regional_2threads_intel' [05:22, 03:00](757 MB) +PASS -- TEST 'regional_noquilt_intel' [06:51, 04:45](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:00, 04:56](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 04:44](615 MB) +PASS -- TEST 'regional_wofs_intel' [08:42, 06:08](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [14:09, 12:24] +PASS -- TEST 'rap_control_intel' [09:29, 06:47](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:12, 03:56](1186 MB) +PASS -- TEST 'rap_decomp_intel' [10:37, 07:04](1009 MB) +PASS -- TEST 'rap_2threads_intel' [09:29, 06:12](1096 MB) +PASS -- TEST 'rap_restart_intel' [06:08, 03:39](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:29, 06:44](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:29, 07:02](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:08, 05:48](879 MB) +PASS -- TEST 'hrrr_control_intel' [06:21, 03:46](1004 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:21, 03:47](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:21, 03:08](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:49, 01:57](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:31, 06:39](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:02, 07:53](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:01, 07:53](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [14:09, 12:11] +PASS -- TEST 'control_csawmg_intel' [09:35, 06:42](695 MB) +PASS -- TEST 'control_csawmgt_intel' [09:14, 06:43](691 MB) +PASS -- TEST 'control_ras_intel' [05:44, 03:51](657 MB) + +PASS -- COMPILE 'wam_intel' [13:09, 11:34] +PASS -- TEST 'control_wam_intel' [04:34, 02:09](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:09, 15:14] +PASS -- TEST 'control_p8_faster_intel' [06:39, 03:51](1608 MB) +PASS -- TEST 'regional_control_faster_intel' [07:09, 04:43](614 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:09, 10:50] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:53](778 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:52](782 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:14, 03:12](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:11, 03:04](789 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:23](825 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:51, 04:25](826 MB) +PASS -- TEST 'control_ras_debug_intel' [06:04, 03:11](796 MB) +PASS -- TEST 'control_diag_debug_intel' [05:20, 03:00](843 MB) +PASS -- TEST 'control_debug_p8_intel' [06:00, 03:16](1622 MB) +PASS -- TEST 'regional_debug_intel' [19:03, 16:29](635 MB) +PASS -- TEST 'rap_control_debug_intel' [07:42, 05:07](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:39, 04:58](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 05:06](1168 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:31, 05:15](1168 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:30, 05:08](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:16](1252 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:34, 05:18](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:26](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:39, 05:50](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 05:57](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:30, 05:18](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:50, 05:17](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:42, 08:13](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:49, 05:03](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:49, 05:52](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:37, 05:11](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:12, 08:36](1172 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:11, 08:25] +PASS -- TEST 'control_wam_debug_intel' [06:34, 04:59](396 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:14, 12:18] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:15, 03:44](1051 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:44](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:33](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:52, 05:23](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:03, 02:40](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:51, 03:30](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 04:12](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:40](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:18, 21:15] +PASS -- TEST 'conus13km_control_intel' [04:02, 02:01](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:03](1072 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:30](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:09, 13:46] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:59, 04:12](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:38] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 05:08](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 04:58](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [17:07, 13:59](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:14](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:57, 08:09](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:01](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:09, 08:18] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 05:19](1065 MB) + +PASS -- COMPILE 'hafsw_intel' [18:09, 16:32] +PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:17](707 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 04:33](1057 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:31](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:40, 11:35](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:52, 12:52](797 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 05:25](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:45](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:54](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:46, 08:00](432 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 03:52](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:08, 03:34](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:05, 04:40](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:37, 01:42](401 MB) +PASS -- TEST 'gnv1_nested_intel' [07:16, 04:05](768 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:14, 12:09] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:05](588 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:10, 18:37] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:17, 07:41](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:44, 07:45](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:10, 18:45] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:14, 05:59](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [27:12, 25:36] +PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:04](745 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:03, 06:12](728 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:17, 20:13](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:13, 11:54] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:35](759 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:57, 01:33](746 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:26](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:29](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:33](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:33](758 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:33](758 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 02:25](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:02](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 06:06](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:40, 02:35](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:32, 04:34](2013 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:31, 04:38](2014 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:11, 09:45] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:27](740 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:12, 14:32] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:58, 02:39](758 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 03:29] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:06, 03:43](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:40, 01:56](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:00, 01:26](456 MB) + +PASS -- COMPILE 'atml_intel' [24:19, 22:31] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:58, 08:51](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:30, 08:14](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 04:01](835 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 14:03] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:31, 02:15](1649 MB) + +PASS -- COMPILE 'atmwm_intel' [15:09, 13:54] +PASS -- TEST 'control_atmwav_intel' [05:18, 02:02](640 MB) + +PASS -- COMPILE 'atmaero_intel' [15:14, 13:52] +PASS -- TEST 'atmaero_control_p8_intel' [10:21, 07:14](2943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:22, 07:29](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:11, 07:51](3019 MB) + +PASS -- COMPILE 'atmaq_intel' [15:12, 14:04] + +PASS -- COMPILE 'atmaq_debug_intel' [12:09, 10:26] +PASS -- TEST 'regional_atmaq_debug_intel' [22:56, 19:00](4476 MB) SYNOPSIS: -Starting Date/Time: 20240321 12:44:25 -Ending Date/Time: 20240321 14:36:49 -Total Time: 01h:53m:27s +Starting Date/Time: 20240401 08:38:19 +Ending Date/Time: 20240401 10:13:48 +Total Time: 01h:36m:31s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 3665612fc2..0fddf8b493 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: -55da2dd260008d4a1196c77c941d5b3300bcae45 +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -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-20240315 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_2266279 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_4129005 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems +* (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [12:53, 12:53] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:24, 05:32](3159 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:44, 15:44] -PASS -- TEST 'cpld_control_gfsv17_intel' [17:47, 17:02](1725 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:44, 17:45](2001 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:53, 08:00](1091 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 19:13](1616 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 04:18] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:28, 22:46](1625 MB) - -PASS -- COMPILE 's2swa_intel' [12:52, 12:52] -PASS -- TEST 'cpld_control_p8_intel' [06:42, 05:49](3190 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:46, 05:51](3193 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:29, 03:27](3235 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:37, 05:47](3209 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:40, 03:28](3259 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:20, 05:36](3528 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:37, 05:50](3199 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:31, 04:46](3049 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:42, 05:49](3202 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:52, 10:14](3319 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:18, 06:11](3602 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:43, 09:45](4142 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:39, 06:07](4338 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:15, 05:28](3156 MB) - -PASS -- COMPILE 's2sw_intel' [12:04, 12:03] -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:38, 04:52](1715 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:17, 04:25](1777 MB) - -PASS -- COMPILE 's2swa_debug_intel' [04:18, 04:18] -PASS -- TEST 'cpld_debug_p8_intel' [09:46, 08:54](3177 MB) - -PASS -- COMPILE 's2sw_debug_intel' [03:58, 03:58] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:31, 05:43](1724 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:14, 11:13] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:17, 04:24](1759 MB) - -PASS -- COMPILE 's2s_intel' [11:18, 11:18] -PASS -- TEST 'cpld_control_c48_intel' [09:59, 09:26](2798 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:35, 16:34] -PASS -- TEST 'cpld_control_p8_faster_intel' [06:24, 05:27](3200 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:59, 14:59] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:59, 17:15](1759 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:18, 08:15](1141 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:31, 19:40](1670 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:03, 04:03] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:07](1678 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:10, 11:10] -PASS -- TEST 'control_flake_intel' [03:39, 03:24](682 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [02:42, 02:27](636 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:48, 02:31](643 MB) -PASS -- TEST 'control_latlon_intel' [02:39, 02:28](633 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:42, 02:28](633 MB) -PASS -- TEST 'control_c48_intel' [06:40, 06:26](852 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:34, 06:22](853 MB) -PASS -- TEST 'control_c192_intel' [09:39, 09:13](833 MB) -PASS -- TEST 'control_c384_intel' [10:17, 09:09](1276 MB) -PASS -- TEST 'control_c384gdas_intel' [10:21, 08:03](1383 MB) -PASS -- TEST 'control_stochy_intel' [01:49, 01:36](643 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:15, 01:00](486 MB) -PASS -- TEST 'control_lndp_intel' [01:44, 01:33](640 MB) -PASS -- TEST 'control_iovr4_intel' [02:37, 02:25](635 MB) -PASS -- TEST 'control_iovr5_intel' [02:40, 02:27](638 MB) -PASS -- TEST 'control_p8_intel' [03:49, 03:04](1607 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:47, 03:02](1610 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:41, 02:57](1623 MB) -PASS -- TEST 'control_restart_p8_intel' [02:18, 01:42](875 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:39, 03:02](1607 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:19, 01:37](921 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:42, 03:05](1598 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:30, 02:56](1698 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:57, 05:22](1611 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:37, 03:56](1677 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:41, 03:02](1617 MB) -PASS -- TEST 'merra2_thompson_intel' [04:09, 03:30](1593 MB) -PASS -- TEST 'regional_control_intel' [05:35, 05:10](829 MB) -PASS -- TEST 'regional_restart_intel' [03:11, 02:46](1007 MB) -PASS -- TEST 'regional_decomp_intel' [05:52, 05:29](827 MB) -PASS -- TEST 'regional_2threads_intel' [03:43, 03:15](836 MB) -PASS -- TEST 'regional_noquilt_intel' [05:35, 05:10](1342 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:37, 05:08](834 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 05:10](830 MB) -PASS -- TEST 'regional_wofs_intel' [07:16, 06:46](1890 MB) - -PASS -- COMPILE 'rrfs_intel' [10:34, 10:33] -PASS -- TEST 'rap_control_intel' [08:06, 07:41](1084 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:58, 04:11](1278 MB) -PASS -- TEST 'rap_decomp_intel' [08:32, 08:07](1022 MB) -PASS -- TEST 'rap_2threads_intel' [07:42, 07:16](1158 MB) -PASS -- TEST 'rap_restart_intel' [04:35, 04:03](1088 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:16, 07:45](1083 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:09](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 05:51](1092 MB) -PASS -- TEST 'hrrr_control_intel' [04:20, 03:58](1023 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 04:10](1015 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:10, 03:42](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:28, 02:10](990 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:12, 07:40](1087 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:33, 09:16](1981 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:15, 08:56](2054 MB) - -PASS -- COMPILE 'csawmg_intel' [10:11, 10:11] -PASS -- TEST 'control_csawmg_intel' [06:28, 06:00](733 MB) -PASS -- TEST 'control_csawmgt_intel' [06:25, 05:54](738 MB) -PASS -- TEST 'control_ras_intel' [03:22, 03:13](727 MB) - -PASS -- COMPILE 'csawmg_gnu' [03:34, 03:33] -PASS -- TEST 'control_csawmg_gnu' [08:45, 08:19](533 MB) -PASS -- TEST 'control_csawmgt_gnu' [08:39, 08:15](533 MB) - -PASS -- COMPILE 'wam_intel' [09:56, 09:55] -PASS -- TEST 'control_wam_intel' [02:12, 02:03](634 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:35, 10:34] -PASS -- TEST 'control_p8_faster_intel' [03:16, 02:38](1619 MB) -PASS -- TEST 'regional_control_faster_intel' [05:10, 04:42](832 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:27, 04:26] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:01, 02:44](776 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:57, 02:40](773 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:16, 03:06](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:58, 02:47](760 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:30, 05:02](837 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [04:31, 04:06](831 MB) -PASS -- TEST 'control_ras_debug_intel' [03:00, 02:50](791 MB) -PASS -- TEST 'control_diag_debug_intel' [03:08, 02:48](838 MB) -PASS -- TEST 'control_debug_p8_intel' [03:28, 02:58](1598 MB) -PASS -- TEST 'regional_debug_intel' [17:39, 17:10](804 MB) -PASS -- TEST 'rap_control_debug_intel' [05:14, 05:02](1169 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:58, 04:47](1165 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:11, 04:59](1173 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:11, 05:00](1162 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:10, 04:58](1167 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:40, 05:12](1246 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 05:04](1173 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 05:06](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:27, 05:13](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 04:55](1180 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:00, 04:47](1166 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:07, 04:55](1175 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:07, 07:53](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:02, 04:49](1169 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:07, 05:52](1161 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:06, 04:54](1171 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 08:19](1170 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:37, 02:37] -PASS -- TEST 'control_csawmg_debug_gnu' [02:36, 02:10](506 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [02:38, 02:10](509 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:50, 03:49] -PASS -- TEST 'control_wam_debug_intel' [05:13, 04:59](486 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:01, 10:00] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 03:54](1147 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:46, 06:22](1033 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:52, 03:24](971 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:43, 06:08](1079 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:42, 03:10](956 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:06, 03:38](916 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:22, 04:49](1025 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:17, 01:51](925 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:23, 12:22] -PASS -- TEST 'conus13km_control_intel' [03:02, 02:08](1193 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:54](1122 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:45, 01:14](1090 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:26, 10:25] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:10](967 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:39, 03:37] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:10, 04:55](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:03, 04:50](1026 MB) -PASS -- TEST 'conus13km_debug_intel' [15:11, 14:30](1214 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:22, 14:44](904 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:51, 08:15](1124 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:37, 15:03](1210 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:24, 03:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:14, 04:55](1093 MB) - -PASS -- COMPILE 'hafsw_intel' [11:41, 11:40] -PASS -- TEST 'hafs_regional_atm_intel' [05:57, 04:58](731 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:55](1100 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:07, 06:51](823 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:38, 13:34](841 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:29, 15:14](870 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:23, 05:30](487 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:54, 06:39](506 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:14, 02:41](362 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:00, 07:19](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:13, 03:43](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:08, 03:31](504 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:49, 04:04](562 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:31, 01:13](408 MB) -PASS -- TEST 'gnv1_nested_intel' [04:34, 04:02](785 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 04:09] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:20, 12:34](543 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:51, 11:51] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:33, 08:46](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:43, 08:47](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:33, 11:33] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:15, 06:26](683 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:19, 11:18] -PASS -- TEST 'hafs_regional_docn_intel' [07:36, 06:30](817 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:43, 06:33](800 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:47, 16:10](1206 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [05:59, 05:57] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:52, 02:40](1142 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:46, 01:37](1094 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:43, 02:33](1010 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:49, 02:37](1014 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:49, 02:41](1009 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:48, 02:41](1132 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:50, 02:43](1139 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:43, 02:35](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:19, 06:18](1053 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:32, 06:31](1034 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:47, 02:41](1155 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:01, 03:52](2433 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:05, 03:56](2430 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:07, 03:06] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:22, 06:14](1067 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:15, 06:14] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:51, 02:42](1134 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:22, 01:20] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:11, 00:52](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:59, 00:46](317 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:32](325 MB) - -PASS -- COMPILE 'atml_intel' [11:43, 11:42] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:03, 04:19](1589 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 04:17](1587 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:47, 02:14](884 MB) - -PASS -- COMPILE 'atmw_intel' [10:56, 10:56] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:21, 01:43](1655 MB) - -PASS -- COMPILE 'atmwm_intel' [10:39, 10:39] -PASS -- TEST 'control_atmwav_intel' [02:04, 01:40](652 MB) - -PASS -- COMPILE 'atmaero_intel' [10:44, 10:44] -PASS -- TEST 'atmaero_control_p8_intel' [04:48, 04:04](2995 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:44, 04:58](3071 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:35, 06:04](3090 MB) - -PASS -- COMPILE 'atmaq_intel' [10:14, 10:13] - -PASS -- COMPILE 'atmaq_debug_intel' [03:38, 03:36] -PASS -- TEST 'regional_atmaq_debug_intel' [22:41, 20:57](4449 MB) - -PASS -- COMPILE 'atm_gnu' [03:44, 03:43] -PASS -- TEST 'control_c48_gnu' [10:58, 10:46](751 MB) -PASS -- TEST 'control_stochy_gnu' [03:35, 03:24](494 MB) -PASS -- TEST 'control_ras_gnu' [04:49, 04:38](503 MB) -PASS -- TEST 'control_p8_gnu' [05:20, 04:36](1254 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:14, 04:32](1252 MB) -PASS -- TEST 'control_flake_gnu' [10:41, 10:30](536 MB) - -PASS -- COMPILE 'rrfs_gnu' [03:43, 03:42] -PASS -- TEST 'rap_control_gnu' [11:13, 10:52](842 MB) -PASS -- TEST 'rap_decomp_gnu' [11:16, 10:54](843 MB) -PASS -- TEST 'rap_2threads_gnu' [10:10, 09:44](923 MB) -PASS -- TEST 'rap_restart_gnu' [05:58, 05:30](573 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:56, 10:33](842 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:28, 11:03](843 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:25, 07:58](576 MB) -PASS -- TEST 'hrrr_control_gnu' [05:51, 05:34](843 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:51, 05:33](832 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:24, 05:02](914 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:56, 05:35](843 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:11, 02:54](558 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:09, 02:47](649 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:43, 10:16](838 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:37, 03:37] -PASS -- TEST 'control_diag_debug_gnu' [01:59, 01:38](527 MB) -PASS -- TEST 'regional_debug_gnu' [11:58, 11:30](541 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:51, 02:37](844 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:40, 02:31](847 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:42, 02:33](853 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:51, 02:40](852 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:19, 02:51](929 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 04:02](846 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:46, 02:35](847 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:48, 02:35](840 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:46, 01:32](483 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:49, 01:40](479 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:07, 01:40](1233 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:47, 02:35](846 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:04, 02:53](850 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:36, 04:14](853 MB) - -PASS -- COMPILE 'wam_debug_gnu' [01:47, 01:47] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:37, 03:36] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:41, 09:16](697 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:17, 04:55](703 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:03, 08:38](745 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:57, 04:36](741 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:23, 05:01](699 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:26, 06:57](547 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:45, 02:30](535 MB) -PASS -- TEST 'conus13km_control_gnu' [03:50, 03:12](872 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:10, 05:40](870 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:56](552 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:18, 05:18] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:46](727 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:37, 03:36] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:42, 02:29](702 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:39, 02:27](701 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:31, 06:56](875 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:31, 06:59](562 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:04, 07:35](880 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:31, 06:58](942 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:38, 03:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:52, 02:39](730 MB) - -PASS -- COMPILE 's2swa_gnu' [14:46, 14:46] - -PASS -- COMPILE 's2s_gnu' [14:27, 14:27] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:27, 06:34](1344 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [02:41, 02:40] - -PASS -- COMPILE 's2sw_pdlib_gnu' [14:17, 14:17] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:42, 23:53](1306 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:25, 02:24] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:42, 16:58](1307 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [14:00, 14:00] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:07, 03:00](694 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:49, 12:49] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:27, 05:36](3164 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:24, 16:23] +PASS -- TEST 'cpld_control_gfsv17_intel' [17:45, 17:02](1739 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:36, 17:46](2013 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:01, 08:10](1105 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:57, 19:15](1649 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:51, 04:50] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 22:29](1707 MB) + +PASS -- COMPILE 's2swa_intel' [12:54, 12:52] +PASS -- TEST 'cpld_control_p8_intel' [06:41, 05:51](3216 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:01, 06:08](3191 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:26, 03:29](3250 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [06:41, 05:47](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:25, 03:26](3277 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:17, 05:30](3552 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:33, 05:48](3204 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:29, 04:43](3063 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:40, 05:48](3203 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [11:36, 10:06](3354 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:59, 06:06](3627 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:45, 09:38](4065 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:31, 06:04](4344 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:42, 05:53](3186 MB) + +PASS -- COMPILE 's2sw_intel' [12:22, 12:22] +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:32, 04:46](1728 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:04, 04:17](1786 MB) + +PASS -- COMPILE 's2swa_debug_intel' [04:35, 04:34] +PASS -- TEST 'cpld_debug_p8_intel' [09:13, 08:22](3221 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:17, 04:16] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:33, 05:46](1769 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:36, 11:35] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:07, 04:19](1773 MB) + +PASS -- COMPILE 's2s_intel' [11:33, 11:32] +PASS -- TEST 'cpld_control_c48_intel' [10:00, 09:30](2821 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:39, 16:38] +PASS -- TEST 'cpld_control_p8_faster_intel' [06:29, 05:39](3209 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:30, 15:29] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:58, 17:14](1742 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:56, 08:03](1172 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:24, 19:48](1676 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:15, 04:14] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:07](1711 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 11:11] +PASS -- TEST 'control_flake_intel' [03:33, 03:20](708 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:25](656 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:41, 02:29](663 MB) +PASS -- TEST 'control_latlon_intel' [02:37, 02:26](633 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:42, 02:27](651 MB) +PASS -- TEST 'control_c48_intel' [06:37, 06:25](882 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:35, 06:23](879 MB) +PASS -- TEST 'control_c192_intel' [09:28, 09:05](852 MB) +PASS -- TEST 'control_c384_intel' [10:01, 09:03](1294 MB) +PASS -- TEST 'control_c384gdas_intel' [10:25, 08:26](1405 MB) +PASS -- TEST 'control_stochy_intel' [01:49, 01:38](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:58](506 MB) +PASS -- TEST 'control_lndp_intel' [01:43, 01:33](657 MB) +PASS -- TEST 'control_iovr4_intel' [02:38, 02:28](661 MB) +PASS -- TEST 'control_iovr5_intel' [02:37, 02:26](654 MB) +PASS -- TEST 'control_p8_intel' [03:39, 03:00](1631 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:34, 02:54](1636 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:30, 02:52](1633 MB) +PASS -- TEST 'control_restart_p8_intel' [02:14, 01:40](866 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:27, 02:54](1611 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:08, 01:34](927 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:35, 03:04](1618 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:15, 02:44](1718 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:45, 05:15](1608 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:32, 03:55](1685 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:39, 02:57](1623 MB) +PASS -- TEST 'merra2_thompson_intel' [04:04, 03:28](1632 MB) +PASS -- TEST 'regional_control_intel' [05:35, 05:09](853 MB) +PASS -- TEST 'regional_restart_intel' [03:05, 02:42](1018 MB) +PASS -- TEST 'regional_decomp_intel' [05:55, 05:28](853 MB) +PASS -- TEST 'regional_2threads_intel' [03:38, 03:13](846 MB) +PASS -- TEST 'regional_noquilt_intel' [05:31, 05:06](1367 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:32, 05:08](842 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:38, 05:13](853 MB) +PASS -- TEST 'regional_wofs_intel' [07:09, 06:43](1903 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 10:23] +PASS -- TEST 'rap_control_intel' [08:05, 07:43](1112 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:54, 04:10](1306 MB) +PASS -- TEST 'rap_decomp_intel' [08:31, 08:09](1043 MB) +PASS -- TEST 'rap_2threads_intel' [07:40, 07:14](1184 MB) +PASS -- TEST 'rap_restart_intel' [04:27, 04:02](1108 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:02, 07:37](1106 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:11](1047 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:11, 05:47](1134 MB) +PASS -- TEST 'hrrr_control_intel' [04:14, 03:56](1047 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 04:14](1008 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:58, 03:37](1117 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:23, 02:08](1007 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:00, 07:34](1103 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:29, 09:16](1986 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:17, 09:05](2063 MB) + +PASS -- COMPILE 'csawmg_intel' [10:13, 10:12] +PASS -- TEST 'control_csawmg_intel' [06:25, 06:00](729 MB) +PASS -- TEST 'control_csawmgt_intel' [06:18, 05:54](755 MB) +PASS -- TEST 'control_ras_intel' [03:23, 03:15](748 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:35, 03:34] +PASS -- TEST 'control_csawmg_gnu' [08:39, 08:11](548 MB) +PASS -- TEST 'control_csawmgt_gnu' [08:38, 08:10](550 MB) + +PASS -- COMPILE 'wam_intel' [10:04, 10:04] +PASS -- TEST 'control_wam_intel' [02:12, 02:04](658 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:42, 10:41] +PASS -- TEST 'control_p8_faster_intel' [03:16, 02:39](1619 MB) +PASS -- TEST 'regional_control_faster_intel' [05:04, 04:41](852 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:51, 04:50] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:54, 02:41](820 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:56, 02:40](819 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:08, 02:58](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:02, 02:54](799 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:29, 04:06](871 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [04:27, 04:03](865 MB) +PASS -- TEST 'control_ras_debug_intel' [02:55, 02:47](830 MB) +PASS -- TEST 'control_diag_debug_intel' [03:02, 02:47](876 MB) +PASS -- TEST 'control_debug_p8_intel' [03:22, 02:54](1625 MB) +PASS -- TEST 'regional_debug_intel' [17:39, 17:10](843 MB) +PASS -- TEST 'rap_control_debug_intel' [05:10, 04:58](1179 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:00, 04:50](1204 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:58, 04:45](1211 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:06, 04:56](1192 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:03, 04:54](1218 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:25, 05:01](1295 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:07, 04:56](1206 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:10, 05:00](1211 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:04, 04:54](1211 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:05, 04:54](1214 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:05, 04:51](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:06, 04:54](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:14, 08:03](1205 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:04, 04:53](1197 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 06:08](1208 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:06, 04:53](1206 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:02, 08:39](1215 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:37, 02:35] +PASS -- TEST 'control_csawmg_debug_gnu' [02:43, 02:12](531 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [02:34, 02:12](532 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:16, 03:15] +PASS -- TEST 'control_wam_debug_intel' [05:07, 04:58](521 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 10:09] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 03:49](1166 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:43, 06:25](1056 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:40, 03:20](991 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:29, 06:05](1096 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:23, 03:05](967 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:49, 03:32](944 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:08, 04:49](1038 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:04, 01:50](934 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:22, 12:22] +PASS -- TEST 'conus13km_control_intel' [02:41, 02:08](1183 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:16, 00:51](1126 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:25](1092 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:05, 10:05] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:31, 04:08](992 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:28, 03:28] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:54, 04:42](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:51, 04:42](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [14:36, 14:02](1220 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:59, 14:30](933 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 08:02](1158 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:50, 14:23](1296 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:12, 03:12] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:03, 04:52](1127 MB) + +PASS -- COMPILE 'hafsw_intel' [11:41, 11:41] +PASS -- TEST 'hafs_regional_atm_intel' [05:44, 04:51](742 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:50, 05:34](1105 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:59, 06:59](830 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 13:20](864 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:02, 15:01](885 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:02, 05:22](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:32, 06:33](518 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:06, 02:37](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:32, 07:03](462 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:01, 03:35](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:01, 03:29](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:37, 04:00](592 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:11](403 MB) +PASS -- TEST 'gnv1_nested_intel' [04:25, 03:59](796 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:46, 03:46] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:18, 12:37](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:02, 12:02] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:17, 08:38](635 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:21, 08:37](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:55, 11:55] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:59, 06:16](736 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:05, 11:05] +PASS -- TEST 'hafs_regional_docn_intel' [07:08, 06:16](830 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:12, 06:20](816 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:45, 16:11](1211 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:23, 06:23] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:52, 02:46](1132 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:41, 01:35](1103 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:57, 02:51](1004 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:50, 02:44](1005 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:44, 02:38](1010 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:44, 02:39](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:43, 02:37](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:54, 02:49](992 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 06:11](1065 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:59, 06:07](1045 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:45, 02:41](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:58, 03:52](2440 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:57, 03:51](2497 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [02:59, 02:59] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:11, 06:05](1059 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:04, 06:04] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:41, 02:35](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:59, 00:59] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:57, 00:41](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:44](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:38, 00:28](326 MB) + +PASS -- COMPILE 'atml_intel' [11:36, 11:36] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [04:52, 04:11](1595 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [04:51, 04:11](1610 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:43, 02:12](905 MB) + +PASS -- COMPILE 'atmw_intel' [10:55, 10:55] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:18, 01:45](1654 MB) + +PASS -- COMPILE 'atmwm_intel' [10:32, 10:32] +PASS -- TEST 'control_atmwav_intel' [01:57, 01:39](682 MB) + +PASS -- COMPILE 'atmaero_intel' [10:24, 10:23] +PASS -- TEST 'atmaero_control_p8_intel' [04:40, 04:00](3036 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:36, 04:56](3101 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:30, 05:02](3110 MB) + +PASS -- COMPILE 'atmaq_intel' [10:10, 10:10] + +PASS -- COMPILE 'atmaq_debug_intel' [03:24, 03:24] +PASS -- TEST 'regional_atmaq_debug_intel' [24:54, 23:29](4434 MB) + +PASS -- COMPILE 'atm_gnu' [03:35, 03:35] +PASS -- TEST 'control_c48_gnu' [10:54, 10:43](765 MB) +PASS -- TEST 'control_stochy_gnu' [03:26, 03:16](509 MB) +PASS -- TEST 'control_ras_gnu' [04:49, 04:41](521 MB) +PASS -- TEST 'control_p8_gnu' [05:14, 04:33](1263 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:07, 04:29](1270 MB) +PASS -- TEST 'control_flake_gnu' [10:35, 10:26](554 MB) + +PASS -- COMPILE 'rrfs_gnu' [03:35, 03:35] +PASS -- TEST 'rap_control_gnu' [11:09, 10:49](854 MB) +PASS -- TEST 'rap_decomp_gnu' [11:09, 10:49](856 MB) +PASS -- TEST 'rap_2threads_gnu' [10:20, 09:56](952 MB) +PASS -- TEST 'rap_restart_gnu' [05:52, 05:29](584 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:10, 10:46](857 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:24, 11:05](863 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:16, 07:53](590 MB) +PASS -- TEST 'hrrr_control_gnu' [05:47, 05:29](858 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:47, 05:29](848 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:19, 04:58](931 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:55, 05:36](858 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:05, 02:50](572 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:05, 02:49](665 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:09, 10:43](856 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:32, 03:32] +PASS -- TEST 'control_diag_debug_gnu' [01:50, 01:34](554 MB) +PASS -- TEST 'regional_debug_gnu' [10:43, 10:17](568 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:44, 02:32](870 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:37, 02:29](872 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:43, 02:34](874 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:37](876 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:08, 02:48](954 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:14, 04:04](874 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:43, 02:33](872 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:44, 02:33](873 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:36](504 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:00, 01:51](499 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:05, 01:39](1264 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:44, 02:34](873 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:03, 02:53](876 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:38, 04:16](878 MB) + +PASS -- COMPILE 'wam_debug_gnu' [01:49, 01:49] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:33, 03:33] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:43, 09:25](714 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:10, 04:54](715 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:49, 08:28](764 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:47, 04:28](756 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:11, 04:55](709 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:16, 06:55](561 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:44, 02:30](547 MB) +PASS -- TEST 'conus13km_control_gnu' [03:41, 03:05](888 MB) +PASS -- TEST 'conus13km_2threads_gnu' [05:47, 05:21](894 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:14, 01:48](560 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:17, 05:16] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:07, 05:41](741 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:32, 03:32] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:41, 02:30](724 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:36, 02:27](721 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:20, 06:49](894 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:39, 07:10](583 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:08, 07:43](899 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 07:01](965 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:32, 03:32] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:45, 02:34](748 MB) + +PASS -- COMPILE 's2swa_gnu' [14:36, 14:36] + +PASS -- COMPILE 's2s_gnu' [14:27, 14:26] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:33, 06:46](1356 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [02:28, 02:28] + +PASS -- COMPILE 's2sw_pdlib_gnu' [14:22, 14:22] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:21, 26:38](1310 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:20, 02:20] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:24, 13:45](1333 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:11] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:11, 03:05](699 MB) SYNOPSIS: -Starting Date/Time: 20240321 17:22:54 -Ending Date/Time: 20240321 19:31:46 -Total Time: 02h:10m:00s +Starting Date/Time: 20240331 17:03:20 +Ending Date/Time: 20240331 19:10:50 +Total Time: 02h:07m:57s Compiles Completed: 55/55 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 7b84273d14..fa70ca9657 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: -55da2dd260008d4a1196c77c941d5b3300bcae45 +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,33 +11,33 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808) + 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) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + 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) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + 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) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -48,446 +48,368 @@ 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-20240315 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_737084 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2259286 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:07, 10:46] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:28, 07:42](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:07, 17:36] -PASS -- TEST 'cpld_control_gfsv17_intel' [25:16, 13:40](1775 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:01, 14:25](2165 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:31](1168 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:51, 15:14](1699 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:07, 06:03] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:09, 20:25](1719 MB) - -PASS -- COMPILE 's2swa_intel' [18:07, 11:33] -PASS -- TEST 'cpld_control_p8_intel' [09:53, 07:34](2077 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:08, 07:39](2135 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:09, 04:21](1963 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 07:46](1997 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:09, 04:20](1734 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:46, 09:15](2497 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:52, 07:49](2070 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:17, 06:28](1896 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 07:37](2086 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:38, 15:15](2806 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:09, 06:00](2926 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:05, 09:07](3620 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:20, 06:33](3618 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:51, 05:02](2020 MB) - -PASS -- COMPILE 's2sw_intel' [17:07, 11:13] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:54, 07:03](1776 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:05](1827 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:07, 06:16] -PASS -- TEST 'cpld_debug_p8_intel' [08:59, 07:00](2071 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:07, 06:02] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:55, 04:49](1791 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:07, 08:20] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:51, 03:58](1809 MB) - -PASS -- COMPILE 's2s_intel' [15:07, 08:20] -PASS -- TEST 'cpld_control_c48_intel' [09:37, 07:12](2836 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:07, 11:59] -PASS -- TEST 'cpld_control_p8_faster_intel' [10:05, 07:23](2087 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:25] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:51, 14:05](1811 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:04, 06:51](1295 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:29](1722 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:30] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:48, 21:30](1781 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:06, 08:21] -PASS -- TEST 'control_flake_intel' [15:21, 02:55](721 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [14:24, 02:06](668 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:28, 02:26](667 MB) -PASS -- TEST 'control_latlon_intel' [14:21, 02:08](661 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:27, 02:58](654 MB) -PASS -- TEST 'control_c48_intel' [10:27, 05:48](862 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:26, 05:54](851 MB) -PASS -- TEST 'control_c192_intel' [15:32, 07:59](989 MB) -PASS -- TEST 'control_c384_intel' [16:08, 08:31](1432 MB) -PASS -- TEST 'control_c384gdas_intel' [16:02, 07:24](1532 MB) -PASS -- TEST 'control_stochy_intel' [14:21, 01:28](674 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:33, 00:53](548 MB) -PASS -- TEST 'control_lndp_intel' [14:21, 01:27](671 MB) -PASS -- TEST 'control_iovr4_intel' [15:24, 02:15](661 MB) -PASS -- TEST 'control_iovr5_intel' [12:19, 02:15](664 MB) -PASS -- TEST 'control_p8_intel' [11:53, 02:36](1633 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:56, 02:42](1645 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:52, 02:34](1653 MB) -PASS -- TEST 'control_restart_p8_intel' [04:50, 01:28](918 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:43, 02:36](1620 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:01, 01:27](977 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:36, 02:44](1638 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:40, 02:31](1740 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:37, 04:36](1636 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 03:36](1716 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:41](1640 MB) -PASS -- TEST 'merra2_thompson_intel' [06:00, 03:05](1662 MB) -PASS -- TEST 'regional_control_intel' [07:25, 04:50](956 MB) -PASS -- TEST 'regional_restart_intel' [07:26, 02:44](1110 MB) -PASS -- TEST 'regional_decomp_intel' [07:24, 04:51](948 MB) -PASS -- TEST 'regional_2threads_intel' [05:30, 03:05](913 MB) -PASS -- TEST 'regional_noquilt_intel' [07:30, 04:29](1490 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:28, 04:40](959 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:24, 04:35](959 MB) -PASS -- TEST 'regional_wofs_intel' [08:26, 05:51](2068 MB) - -PASS -- COMPILE 'rrfs_intel' [09:06, 07:47] -PASS -- TEST 'rap_control_intel' [09:44, 06:37](1198 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:30](1408 MB) -PASS -- TEST 'rap_decomp_intel' [09:32, 06:57](1133 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 06:23](1380 MB) -PASS -- TEST 'rap_restart_intel' [09:57, 03:35](1158 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:46, 06:37](1188 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:31, 07:04](1142 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:50, 05:03](1185 MB) -PASS -- TEST 'hrrr_control_intel' [05:45, 03:33](1095 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 03:30](1059 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:29, 03:15](1120 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:17, 02:06](1034 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:58, 06:26](1208 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 08:00](2007 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 07:33](2178 MB) - -PASS -- COMPILE 'csawmg_intel' [09:06, 07:07] -PASS -- TEST 'control_csawmg_intel' [07:27, 05:27](836 MB) -PASS -- TEST 'control_csawmgt_intel' [10:26, 05:25](837 MB) -PASS -- TEST 'control_ras_intel' [08:16, 02:59](847 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:05, 04:21] -PASS -- TEST 'control_csawmg_gnu' [12:36, 06:39](808 MB) -PASS -- TEST 'control_csawmgt_gnu' [12:33, 06:36](810 MB) - -PASS -- COMPILE 'wam_intel' [08:05, 06:39] -PASS -- TEST 'control_wam_intel' [06:18, 01:52](784 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:05, 09:52] -PASS -- TEST 'control_p8_faster_intel' [06:54, 02:26](1642 MB) -PASS -- TEST 'regional_control_faster_intel' [08:24, 04:15](961 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 04:15] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:16, 02:19](825 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:20, 02:17](821 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:16, 02:37](834 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:14, 02:16](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:25, 03:24](868 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [09:24, 03:29](894 MB) -PASS -- TEST 'control_ras_debug_intel' [08:16, 02:23](835 MB) -PASS -- TEST 'control_diag_debug_intel' [08:20, 02:22](884 MB) -PASS -- TEST 'control_debug_p8_intel' [07:32, 02:26](1660 MB) -PASS -- TEST 'regional_debug_intel' [18:54, 14:08](892 MB) -PASS -- TEST 'rap_control_debug_intel' [07:19, 04:05](1216 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:17, 03:59](1210 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:16, 04:04](1219 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:15, 04:02](1223 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 04:08](1228 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:32, 04:16](1302 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:15, 04:07](1215 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:14, 04:09](1222 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:16, 04:06](1222 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:14, 04:07](1236 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:19, 03:57](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:16, 04:06](1218 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 06:39](1219 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:16, 03:57](1213 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:55](1224 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:03](1221 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 06:54](1218 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:05, 04:01] -PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:47](789 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [03:22, 01:48](789 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:06, 03:30] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:06, 07:25] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:44, 03:22](1271 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:47, 05:27](1142 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:55](1039 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:35, 05:29](1289 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:57, 02:48](1046 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 03:09](1006 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:55, 04:10](1098 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:42, 01:36](957 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:06, 09:35] -PASS -- TEST 'conus13km_control_intel' [03:42, 01:47](1305 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:43, 00:55](1205 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:29, 01:09](1159 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:06, 07:31] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:30, 03:50](1088 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:05, 03:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 04:01](1094 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:51](1100 MB) -PASS -- TEST 'conus13km_debug_intel' [13:32, 11:39](1338 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:31, 11:45](996 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:12, 06:34](1239 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:28, 11:33](1402 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:05, 03:29] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:15, 04:06](1151 MB) - -PASS -- COMPILE 'hafsw_intel' [12:06, 09:44] -PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:29](879 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:15, 05:13](1272 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:12, 06:34](943 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:02, 14:15](979 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:15, 15:00](1010 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:57, 05:46](606 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:15, 07:16](613 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:43, 02:59](436 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:09, 08:35](545 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:44, 04:08](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:46, 03:59](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:51, 05:00](680 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:23, 01:32](452 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:06, 03:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:53, 11:32](638 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:05, 11:03] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:01, 17:11](725 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:02, 16:36](810 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 09:15] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:57, 09:44](795 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:05, 08:57] -PASS -- TEST 'hafs_regional_docn_intel' [13:02, 06:32](939 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:05, 05:46](937 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:40, 16:30](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:05, 06:08] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:13, 02:10](1148 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:19](1090 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:16, 02:02](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:12, 02:06](1017 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:11, 02:10](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:10, 02:10](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:09, 02:09](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:09, 02:04](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:47, 05:00](1141 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:44, 04:53](1148 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:10](1140 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 03:01](2383 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 03:03](2382 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:05, 03:47] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:07](1073 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:05, 06:12] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:10, 02:08](1145 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:06] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:21, 01:16](335 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 01:00](558 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:33](566 MB) - -PASS -- COMPILE 'atml_intel' [11:05, 08:45] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:59, 06:22](1645 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 06:11](1655 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 03:16](939 MB) - -PASS -- COMPILE 'atmw_intel' [11:06, 09:39] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:52, 01:37](1693 MB) - -PASS -- COMPILE 'atmwm_intel' [11:06, 09:41] -PASS -- TEST 'control_atmwav_intel' [03:43, 01:29](700 MB) - -PASS -- COMPILE 'atmaero_intel' [09:06, 07:24] -PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:35](1781 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:15](1800 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 04:30](1831 MB) - -PASS -- COMPILE 'atmaq_intel' [13:06, 07:00] - -PASS -- COMPILE 'atmaq_debug_intel' [08:06, 02:44] -PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 16:44](4594 MB) - -PASS -- COMPILE 'atm_gnu' [08:05, 03:57] -PASS -- TEST 'control_c48_gnu' [11:27, 09:25](863 MB) -PASS -- TEST 'control_stochy_gnu' [04:18, 02:20](727 MB) -PASS -- TEST 'control_ras_gnu' [05:13, 03:53](730 MB) -PASS -- TEST 'control_p8_gnu' [05:50, 03:43](1511 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:41, 03:36](1516 MB) -PASS -- TEST 'control_flake_gnu' [06:16, 04:35](806 MB) - -PASS -- COMPILE 'rrfs_gnu' [08:05, 03:57] -PASS -- TEST 'rap_control_gnu' [11:55, 09:07](1082 MB) -PASS -- TEST 'rap_decomp_gnu' [09:48, 07:51](1086 MB) -PASS -- TEST 'rap_2threads_gnu' [09:39, 07:12](1128 MB) -PASS -- TEST 'rap_restart_gnu' [05:58, 03:57](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:49, 07:47](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:53, 07:58](1087 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:58, 06:00](886 MB) -PASS -- TEST 'hrrr_control_gnu' [06:42, 04:13](1072 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 04:05](1134 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:29, 03:46](1030 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 04:07](1080 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:15, 02:11](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:15, 02:06](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:55, 07:40](1085 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:05, 04:38] -PASS -- TEST 'control_diag_debug_gnu' [04:21, 01:19](774 MB) -PASS -- TEST 'regional_debug_gnu' [09:28, 06:25](923 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:16, 02:03](1094 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 02:00](1085 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:02](1090 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 01:59](1092 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:25, 02:06](1271 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:17, 03:09](1096 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 02:03](1097 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:14, 02:00](1090 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:14, 01:12](724 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:15](726 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:17](1500 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:58](1096 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:11](1096 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:48, 03:17](1097 MB) - -PASS -- COMPILE 'wam_debug_gnu' [07:05, 02:50] -FAIL TO COMPARE -- TEST 'control_wam_debug_gnu' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [09:05, 04:32] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:34, 07:22](961 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:51](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:49, 06:51](970 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 03:33](888 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:33, 03:57](954 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:58, 05:34](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:06](857 MB) -PASS -- TEST 'conus13km_control_gnu' [04:40, 02:38](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:30, 01:11](1173 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:26, 01:31](938 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:06, 09:11] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:35, 04:26](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:06, 06:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:14, 01:56](974 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:15, 01:53](968 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:32](1282 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:28, 05:31](972 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:25, 03:18](1192 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:31](1351 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:05, 06:34] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 02:02](1002 MB) - -PASS -- COMPILE 's2swa_gnu' [20:05, 14:33] - -PASS -- COMPILE 's2s_gnu' [18:06, 14:31] - -PASS -- COMPILE 's2swa_debug_gnu' [09:06, 05:03] - -PASS -- COMPILE 's2sw_pdlib_gnu' [19:06, 14:56] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:05, 05:16] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:20] +PASS -- COMPILE 's2swa_32bit_intel' [14:05, 12:48] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 07:32](1892 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 20:24] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:55, 13:17](1775 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:20, 13:57](2177 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:15, 06:23](1174 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:14, 15:07](1679 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:12] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 20:48](1735 MB) + +PASS -- COMPILE 's2swa_intel' [14:05, 12:56] +PASS -- TEST 'cpld_control_p8_intel' [09:51, 07:51](2090 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:03, 07:28](2071 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:13, 04:07](1966 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 07:38](1973 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:13, 04:19](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:47, 09:02](2497 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:47, 07:52](2063 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:53, 06:26](1887 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:03, 07:32](2091 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:37, 15:36](2816 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 05:42](2920 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:47, 08:34](3635 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:39, 05:15](3614 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:43, 04:59](2057 MB) + +PASS -- COMPILE 's2sw_intel' [13:05, 11:44] +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 07:10](1781 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:47, 04:00](1816 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:05, 05:44] +PASS -- TEST 'cpld_debug_p8_intel' [08:58, 06:55](2127 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:05, 05:22] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:47, 04:51](1789 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:16] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:43, 04:00](1814 MB) + +PASS -- COMPILE 's2s_intel' [10:05, 08:04] +PASS -- TEST 'cpld_control_c48_intel' [09:35, 07:16](2824 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:05, 11:39] +PASS -- TEST 'cpld_control_p8_faster_intel' [09:51, 07:21](2072 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:06, 17:16] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:33, 13:39](1799 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:55, 06:34](1274 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:54, 16:12](1737 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 03:17] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:48, 21:28](1775 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:53] +PASS -- TEST 'control_flake_intel' [04:15, 02:54](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:06](663 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:09](670 MB) +PASS -- TEST 'control_latlon_intel' [04:14, 02:06](670 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:09](662 MB) +PASS -- TEST 'control_c48_intel' [07:20, 05:45](848 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:20, 05:50](860 MB) +PASS -- TEST 'control_c192_intel' [09:27, 07:51](963 MB) +PASS -- TEST 'control_c384_intel' [09:58, 08:03](1438 MB) +PASS -- TEST 'control_c384gdas_intel' [10:39, 07:08](1519 MB) +PASS -- TEST 'control_stochy_intel' [03:14, 01:34](671 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:50](533 MB) +PASS -- TEST 'control_lndp_intel' [03:15, 01:22](663 MB) +PASS -- TEST 'control_iovr4_intel' [04:17, 02:06](660 MB) +PASS -- TEST 'control_iovr5_intel' [03:20, 02:04](664 MB) +PASS -- TEST 'control_p8_intel' [04:47, 02:30](1633 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:45, 02:32](1637 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:47, 02:26](1651 MB) +PASS -- TEST 'control_restart_p8_intel' [04:20, 01:26](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:44, 02:29](1634 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:25](988 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:41, 02:34](1632 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:40, 02:17](1730 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:08, 04:25](1629 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:50, 03:23](1703 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:47, 02:30](1645 MB) +PASS -- TEST 'merra2_thompson_intel' [04:53, 02:55](1652 MB) +PASS -- TEST 'regional_control_intel' [06:43, 04:29](959 MB) +PASS -- TEST 'regional_restart_intel' [04:26, 02:33](1099 MB) +PASS -- TEST 'regional_decomp_intel' [06:42, 04:41](947 MB) +PASS -- TEST 'regional_2threads_intel' [04:47, 02:55](915 MB) +PASS -- TEST 'regional_noquilt_intel' [06:37, 04:21](1486 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 04:24](959 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:33, 04:27](960 MB) +PASS -- TEST 'regional_wofs_intel' [07:29, 05:36](2074 MB) + +PASS -- COMPILE 'rrfs_intel' [09:05, 07:13] +PASS -- TEST 'rap_control_intel' [08:51, 06:47](1191 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 03:29](1409 MB) +PASS -- TEST 'rap_decomp_intel' [08:56, 06:56](1139 MB) +PASS -- TEST 'rap_2threads_intel' [08:34, 06:10](1359 MB) +PASS -- TEST 'rap_restart_intel' [06:34, 03:24](1145 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:52, 06:35](1194 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:51, 06:51](1163 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:56, 04:54](1192 MB) +PASS -- TEST 'hrrr_control_intel' [05:36, 03:22](1072 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:25](1038 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:07](1121 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:14, 01:54](1016 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:46, 06:23](1208 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:17, 07:41](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:59, 07:25](2173 MB) + +PASS -- COMPILE 'csawmg_intel' [08:05, 06:47] +PASS -- TEST 'control_csawmg_intel' [07:28, 05:20](831 MB) +PASS -- TEST 'control_csawmgt_intel' [07:21, 05:16](834 MB) +PASS -- TEST 'control_ras_intel' [04:16, 02:50](805 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:05, 03:47] +PASS -- TEST 'control_csawmg_gnu' [08:31, 06:25](810 MB) +PASS -- TEST 'control_csawmgt_gnu' [08:50, 06:24](814 MB) + +PASS -- COMPILE 'wam_intel' [08:05, 06:59] +PASS -- TEST 'control_wam_intel' [03:23, 01:50](779 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:05, 09:43] +PASS -- TEST 'control_p8_faster_intel' [04:52, 02:17](1638 MB) +PASS -- TEST 'regional_control_faster_intel' [06:26, 04:06](955 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:44] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:17](820 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:19, 02:11](829 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:34](836 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:14, 02:15](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:29, 03:23](874 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:36, 03:20](879 MB) +PASS -- TEST 'control_ras_debug_intel' [04:36, 02:15](832 MB) +PASS -- TEST 'control_diag_debug_intel' [04:30, 02:15](889 MB) +PASS -- TEST 'control_debug_p8_intel' [04:31, 02:20](1655 MB) +PASS -- TEST 'regional_debug_intel' [15:25, 14:02](895 MB) +PASS -- TEST 'rap_control_debug_intel' [05:20, 04:04](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 03:55](1211 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 03:57](1229 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:14, 03:55](1224 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 03:54](1216 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:21, 04:09](1312 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:53, 04:03](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 04:01](1220 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:00](1219 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 03:58](1221 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:53](1212 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:59](1228 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 06:27](1225 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:14, 03:54](1211 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:05, 04:51](1232 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:17, 04:00](1214 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 06:50](1215 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:05, 04:05] +PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 01:45](791 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [03:27, 01:45](790 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:05, 02:41] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:05, 06:43] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:39, 03:15](1272 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:27](1144 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:48, 02:51](1016 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:27, 05:11](1285 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 02:40](1042 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:31, 03:00](995 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:50, 04:13](1097 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:14, 01:38](979 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:24, 08:37] +PASS -- TEST 'conus13km_control_intel' [03:33, 01:43](1313 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:26, 00:45](1211 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:03](1168 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:05, 06:51] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:41](1082 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:35] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 03:52](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:52](1098 MB) +PASS -- TEST 'conus13km_debug_intel' [13:28, 11:54](1344 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:27, 12:07](999 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:25, 06:36](1247 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:24, 11:34](1440 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:35] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:54](1152 MB) + +PASS -- COMPILE 'hafsw_intel' [11:18, 10:07] +PASS -- TEST 'hafs_regional_atm_intel' [07:58, 05:17](885 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:01](1267 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:07, 06:19](952 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:44, 14:03](985 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:04, 15:07](993 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:46, 05:25](608 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:11, 06:57](617 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:36, 02:47](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:50, 07:51](538 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:35, 03:55](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 03:38](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:44](677 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:25](451 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:05, 02:54] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:41, 11:12](626 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:17, 09:56] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:45, 16:49](735 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:05, 16:23](802 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:04] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:14, 10:13](788 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:18, 10:02] +PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:25](952 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:55, 05:30](928 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:29](1337 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:18, 07:08] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:08](1155 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:20](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:11, 02:03](1009 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:09, 02:09](1008 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:06](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:12](1144 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:09, 02:10](1134 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:09, 02:04](1011 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 04:55](1154 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:40, 04:51](1150 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:07](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 02:59](2441 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:03](2439 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:54] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:31, 05:09](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:23, 06:46] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:08](1144 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:44] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:54](335 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:50](558 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:30](563 MB) + +PASS -- COMPILE 'atml_intel' [09:18, 07:27] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:04, 05:41](1628 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:01, 05:43](1628 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:33, 02:56](944 MB) + +PASS -- COMPILE 'atmw_intel' [11:06, 09:34] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:31](1693 MB) + +PASS -- COMPILE 'atmwm_intel' [11:06, 09:23] +PASS -- TEST 'control_atmwav_intel' [03:37, 01:29](691 MB) + +PASS -- COMPILE 'atmaero_intel' [09:06, 07:04] +PASS -- TEST 'atmaero_control_p8_intel' [06:09, 03:37](1783 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:12, 04:14](1807 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:08, 04:27](1820 MB) + +PASS -- COMPILE 'atmaq_intel' [08:06, 06:48] + +PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:47] +PASS -- TEST 'regional_atmaq_debug_intel' [18:54, 16:21](4589 MB) + +PASS -- COMPILE 'atm_gnu' [05:05, 04:03] +PASS -- TEST 'control_c48_gnu' [11:36, 09:47](881 MB) +PASS -- TEST 'control_stochy_gnu' [04:29, 02:14](730 MB) +PASS -- TEST 'control_ras_gnu' [05:26, 03:38](734 MB) +PASS -- TEST 'control_p8_gnu' [05:47, 03:32](1514 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 03:27](1512 MB) +PASS -- TEST 'control_flake_gnu' [06:22, 04:18](805 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:05, 04:20] +PASS -- TEST 'rap_control_gnu' [09:36, 07:38](1088 MB) +PASS -- TEST 'rap_decomp_gnu' [09:36, 07:52](1095 MB) +PASS -- TEST 'rap_2threads_gnu' [09:09, 07:10](1146 MB) +PASS -- TEST 'rap_restart_gnu' [05:51, 03:54](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:09, 07:44](1092 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:47, 07:48](1083 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:48, 05:47](885 MB) +PASS -- TEST 'hrrr_control_gnu' [05:42, 03:59](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:41, 03:58](1136 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 03:35](1025 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 04:03](1072 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:05](880 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:00](936 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:52, 07:34](1080 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:05, 06:03] +PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:10](776 MB) +PASS -- TEST 'regional_debug_gnu' [08:26, 06:24](925 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:56](1099 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:12, 01:54](1090 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:11, 01:58](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:12, 01:57](1096 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:20, 02:04](1270 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:13, 03:04](1097 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:13, 01:59](1099 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:13, 01:57](1095 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:11, 01:11](725 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:11, 01:17](725 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:27, 01:19](1505 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:56](1103 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:13, 02:08](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:14](1113 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:36] +PASS -- TEST 'control_wam_debug_gnu' [03:17, 01:55](500 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:05, 04:39] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:44, 07:17](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:47](962 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:42, 06:55](973 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:31](883 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 03:47](953 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:50, 05:21](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:22, 01:57](857 MB) +PASS -- TEST 'conus13km_control_gnu' [04:34, 02:35](1264 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:28, 01:03](1173 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:27, 01:24](933 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:47, 11:46] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:26, 04:17](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:06, 09:59] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 01:57](979 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:58](968 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:26, 05:20](1280 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:26, 05:35](973 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:24, 03:16](1189 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:29, 05:24](1350 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:06, 12:18] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 01:55](1003 MB) + +PASS -- COMPILE 's2swa_gnu' [18:06, 16:56] + +PASS -- COMPILE 's2s_gnu' [18:06, 16:06] + +PASS -- COMPILE 's2swa_debug_gnu' [13:07, 11:51] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:07, 17:02] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:06, 11:53] + +PASS -- COMPILE 'datm_cdeps_gnu' [19:08, 17:15] SYNOPSIS: -Starting Date/Time: 20240321 11:53:01 -Ending Date/Time: 20240321 13:35:26 -Total Time: 01h:43m:01s +Starting Date/Time: 20240331 12:02:15 +Ending Date/Time: 20240331 13:24:55 +Total Time: 01h:23m:15s Compiles Completed: 55/55 -Tests Completed: 238/239 -Failed Tests: -* TEST control_wam_debug_gnu: FAIL TO COMPARE --- LOG: /work/noaa/nems/zshrader/hercules/rt-2194/tests/logs/log_hercules/rt_control_wam_debug_gnu.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERCULES REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -55da2dd260008d4a1196c77c941d5b3300bcae45 - -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) - 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) - 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808) - 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) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - 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) - 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) - 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) - - -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-20240315 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1958825 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_gnu' [07:06, 02:10] -PASS -- TEST 'control_wam_debug_gnu' [04:26, 02:05](499 MB) - -SYNOPSIS: -Starting Date/Time: 20240321 14:09:35 -Ending Date/Time: 20240321 14:22:27 -Total Time: 00h:13m:10s -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_jet.log b/tests/logs/RegressionTests_jet.log index 81587c04bd..c647aedf1f 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: -7908de2724b95cab917b6b6c3d059c66cb8bdaa7 +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,34 +11,34 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92) - 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch) + 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) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + 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) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) + 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) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -48,244 +48,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-20240315 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3728126 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_1584801 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:25, 38:16] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:44, 06:50](1787 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:42, 48:32] -PASS -- TEST 'cpld_control_gfsv17_intel' [24:39, 20:52](1659 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:10, 22:23](1876 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:20, 10:18](988 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:01, 24:06](1634 MB) - -PASS -- COMPILE 's2swa_intel' [40:25, 38:27] -PASS -- TEST 'cpld_control_p8_intel' [10:33, 07:40](1828 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:56, 07:39](1834 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:45, 04:18](1716 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:33, 07:48](1849 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:23](1732 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:28, 07:20](2270 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:27, 07:51](1828 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:14, 07:05](1782 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:56, 07:48](1833 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:46, 07:14](1784 MB) - -PASS -- COMPILE 's2sw_intel' [37:23, 35:37] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:22, 05:48](1664 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:38](1708 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:17] -PASS -- TEST 'cpld_debug_p8_intel' [13:52, 10:26](1855 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:42] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:12](1679 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [34:20, 32:17] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:57, 05:42](1715 MB) - -PASS -- COMPILE 's2s_intel' [34:25, 32:36] -PASS -- TEST 'cpld_control_c48_intel' [15:29, 12:44](2793 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:57, 33:16] -PASS -- TEST 'cpld_control_p8_faster_intel' [10:04, 06:59](1833 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:33, 45:34] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:39, 20:41](1687 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:40, 10:18](1037 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:41, 23:55](1656 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:09, 04:56] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:42, 31:53](1695 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [36:30, 35:06] -PASS -- TEST 'control_flake_intel' [06:27, 04:30](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:29, 03:17](596 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:35, 03:51](596 MB) -PASS -- TEST 'control_latlon_intel' [05:27, 03:19](602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:37, 03:28](599 MB) -PASS -- TEST 'control_c48_intel' [11:41, 10:07](841 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:39, 10:05](837 MB) -PASS -- TEST 'control_c192_intel' [14:53, 12:24](726 MB) -PASS -- TEST 'control_c384_intel' [19:17, 15:36](897 MB) -PASS -- TEST 'control_c384gdas_intel' [18:52, 13:21](1020 MB) -PASS -- TEST 'control_stochy_intel' [04:28, 02:14](601 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:17](434 MB) -PASS -- TEST 'control_lndp_intel' [04:28, 02:08](605 MB) -PASS -- TEST 'control_iovr4_intel' [05:31, 03:17](597 MB) -PASS -- TEST 'control_iovr5_intel' [05:31, 03:18](595 MB) -PASS -- TEST 'control_p8_intel' [06:29, 04:02](1571 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:40, 04:01](1574 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:52](1580 MB) -PASS -- TEST 'control_restart_p8_intel' [05:11, 02:06](818 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:34, 03:52](1559 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 02:04](833 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:34, 04:00](1558 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:34, 03:37](1664 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:16, 06:56](1572 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:55, 05:12](1643 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:46, 04:03](1590 MB) -PASS -- TEST 'merra2_thompson_intel' [08:07, 04:39](1592 MB) -PASS -- TEST 'regional_control_intel' [10:04, 07:05](765 MB) -PASS -- TEST 'regional_restart_intel' [05:43, 03:43](938 MB) -PASS -- TEST 'regional_decomp_intel' [10:04, 07:28](760 MB) -PASS -- TEST 'regional_2threads_intel' [06:56, 04:19](748 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:49, 06:56](759 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:54](761 MB) - -PASS -- COMPILE 'rrfs_intel' [35:24, 33:31] -PASS -- TEST 'rap_control_intel' [12:10, 10:01](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 05:29](1214 MB) -PASS -- TEST 'rap_decomp_intel' [13:14, 10:26](991 MB) -PASS -- TEST 'rap_2threads_intel' [12:06, 09:29](1077 MB) -PASS -- TEST 'rap_restart_intel' [08:20, 05:16](989 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:28, 10:00](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:10, 10:39](989 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 07:49](1001 MB) -PASS -- TEST 'hrrr_control_intel' [07:51, 05:07](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:53, 05:19](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:19, 04:43](1055 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:45](917 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:36, 09:48](993 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:13](1951 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 11:59](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [32:19, 30:58] -PASS -- TEST 'control_csawmg_intel' [09:50, 07:59](692 MB) -PASS -- TEST 'control_csawmgt_intel' [09:47, 07:54](695 MB) -PASS -- TEST 'control_ras_intel' [06:24, 04:20](665 MB) - -PASS -- COMPILE 'wam_intel' [31:17, 29:47] -PASS -- TEST 'control_wam_intel' [04:21, 02:44](507 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [32:18, 31:13] -PASS -- TEST 'control_p8_faster_intel' [06:38, 03:35](1581 MB) -PASS -- TEST 'regional_control_faster_intel' [08:49, 06:27](769 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:59] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:27, 03:19](764 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:20](765 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:42](768 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:24, 03:24](765 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:21](812 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:44, 05:14](812 MB) -PASS -- TEST 'control_ras_debug_intel' [05:25, 03:22](771 MB) -PASS -- TEST 'control_diag_debug_intel' [05:30, 03:26](818 MB) -PASS -- TEST 'control_debug_p8_intel' [05:50, 03:30](1592 MB) -PASS -- TEST 'regional_debug_intel' [23:54, 21:40](779 MB) -PASS -- TEST 'rap_control_debug_intel' [07:26, 05:57](1154 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:52](1142 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:58](1152 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 06:02](1152 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:24, 06:01](1146 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:38, 06:17](1231 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:13](1153 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:10](1150 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:04](1152 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:59](1152 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:55](1148 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 05:59](1149 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 10:00](1151 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 06:03](1152 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:26, 07:16](1157 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:02](1150 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:53, 10:24](1161 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:07, 03:44] -PASS -- TEST 'control_wam_debug_intel' [08:22, 06:10](438 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:18, 29:33] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:12](1070 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 08:15](903 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:59, 04:23](867 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:24, 07:52](943 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 04:01](908 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:59, 04:39](853 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:08, 06:12](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:21](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:25, 42:33] -PASS -- TEST 'conus13km_control_intel' [05:09, 03:02](1109 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:22](1059 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:33](1018 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:24, 30:26] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:59, 05:27](900 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:08, 03:53] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 05:59](1031 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 05:52](1029 MB) -PASS -- TEST 'conus13km_debug_intel' [21:03, 18:20](1146 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 18:28](857 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:38](1088 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:19](1207 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:47] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:04](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [36:20, 34:58] -PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:54](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:16](1088 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:38, 09:09](773 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:28, 16:16](806 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:47, 17:58](824 MB) -PASS -- TEST 'gnv1_nested_intel' [08:25, 05:33](775 MB) - -PASS -- COMPILE 'hafs_all_intel' [33:20, 31:19] -PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:27](768 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 08:30](753 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:08] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:31, 03:35](1059 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:19, 02:13](1030 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:31, 03:25](926 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:32, 03:32](936 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:32, 03:34](923 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:31, 03:37](1054 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:32, 03:32](1076 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:30, 03:29](928 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:49](898 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:13, 07:44](847 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 03:34](1069 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 05:04](2396 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:21, 05:04](2394 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:17] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:24, 08:01](1028 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:52] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:49](1079 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:51] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 01:31](228 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:18](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:47](248 MB) - -PASS -- COMPILE 'atml_intel' [35:20, 33:46] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:48, 07:54](1612 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:50, 07:50](1602 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:01](865 MB) - -PASS -- COMPILE 'atmw_intel' [33:18, 31:59] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:23, 02:15](1597 MB) - -PASS -- COMPILE 'atmwm_intel' [32:19, 30:28] -PASS -- TEST 'control_atmwav_intel' [05:16, 02:11](612 MB) - -PASS -- COMPILE 'atmaero_intel' [32:19, 30:16] -PASS -- TEST 'atmaero_control_p8_intel' [08:30, 05:08](1693 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:16](1719 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:42](1732 MB) +PASS -- COMPILE 's2swa_32bit_intel' [39:26, 38:12] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:58, 07:22](1790 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:36, 49:40] +PASS -- TEST 'cpld_control_gfsv17_intel' [24:23, 21:05](1660 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:24, 22:09](1928 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:24, 10:21](999 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:56, 24:05](1633 MB) + +PASS -- COMPILE 's2swa_intel' [40:26, 38:36] +PASS -- TEST 'cpld_control_p8_intel' [11:52, 08:35](1827 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:26, 08:15](1822 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:38, 04:45](1708 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:58, 08:32](1857 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 04:49](1730 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:40, 07:53](2263 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:34, 08:43](1827 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:01, 07:05](1778 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:28, 08:17](1824 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:04, 07:59](1783 MB) + +PASS -- COMPILE 's2sw_intel' [38:25, 36:51] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:27, 05:58](1658 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:50, 05:58](1717 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:28] +PASS -- TEST 'cpld_debug_p8_intel' [14:04, 10:40](1840 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:44] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:14](1678 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:22, 32:09] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:26, 06:37](1712 MB) + +PASS -- COMPILE 's2s_intel' [33:23, 32:19] +PASS -- TEST 'cpld_control_c48_intel' [15:12, 12:45](2796 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:55, 33:11] +PASS -- TEST 'cpld_control_p8_faster_intel' [12:05, 08:17](1824 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [50:32, 49:12] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:39, 20:45](1681 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:46, 10:32](1034 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:45, 24:35](1664 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:28] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:25, 32:13](1692 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [36:23, 34:22] +PASS -- TEST 'control_flake_intel' [06:28, 04:29](645 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 03:16](597 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:35, 03:35](601 MB) +PASS -- TEST 'control_latlon_intel' [05:28, 03:19](600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 03:24](596 MB) +PASS -- TEST 'control_c48_intel' [11:43, 10:04](850 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:40, 10:08](838 MB) +PASS -- TEST 'control_c192_intel' [14:50, 12:38](726 MB) +PASS -- TEST 'control_c384_intel' [19:56, 16:29](894 MB) +PASS -- TEST 'control_c384gdas_intel' [18:41, 13:51](1018 MB) +PASS -- TEST 'control_stochy_intel' [04:28, 02:17](598 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:17](436 MB) +PASS -- TEST 'control_lndp_intel' [04:29, 02:11](600 MB) +PASS -- TEST 'control_iovr4_intel' [05:30, 03:20](599 MB) +PASS -- TEST 'control_iovr5_intel' [05:33, 03:21](603 MB) +PASS -- TEST 'control_p8_intel' [06:31, 04:01](1572 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:53, 04:07](1571 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:52, 03:54](1577 MB) +PASS -- TEST 'control_restart_p8_intel' [05:09, 02:06](816 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 03:55](1572 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:14, 02:04](841 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:37, 04:08](1570 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:39, 03:46](1662 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:18, 07:07](1576 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:00, 05:20](1641 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:48, 04:03](1578 MB) +PASS -- TEST 'merra2_thompson_intel' [08:11, 04:46](1586 MB) +PASS -- TEST 'regional_control_intel' [10:06, 07:12](759 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:51](933 MB) +PASS -- TEST 'regional_decomp_intel' [10:06, 07:33](764 MB) +PASS -- TEST 'regional_2threads_intel' [07:09, 04:27](760 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:04, 07:02](759 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:46, 07:05](761 MB) + +PASS -- COMPILE 'rrfs_intel' [34:25, 33:02] +PASS -- TEST 'rap_control_intel' [13:02, 10:08](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:12, 05:41](1220 MB) +PASS -- TEST 'rap_decomp_intel' [12:57, 10:41](984 MB) +PASS -- TEST 'rap_2threads_intel' [12:27, 09:39](1088 MB) +PASS -- TEST 'rap_restart_intel' [08:27, 05:19](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:25, 10:07](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:58, 10:41](980 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:19, 07:43](996 MB) +PASS -- TEST 'hrrr_control_intel' [07:53, 05:09](987 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:53, 05:25](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:20, 04:47](1057 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:49](916 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:29, 09:59](990 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:21](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:29, 11:58](1941 MB) + +PASS -- COMPILE 'csawmg_intel' [32:20, 31:11] +PASS -- TEST 'control_csawmg_intel' [10:55, 08:09](697 MB) +PASS -- TEST 'control_csawmgt_intel' [09:48, 07:58](691 MB) +PASS -- TEST 'control_ras_intel' [06:26, 04:25](666 MB) + +PASS -- COMPILE 'wam_intel' [31:20, 29:49] +PASS -- TEST 'control_wam_intel' [04:27, 02:47](502 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [33:18, 31:33] +PASS -- TEST 'control_p8_faster_intel' [06:38, 03:32](1579 MB) +PASS -- TEST 'regional_control_faster_intel' [08:44, 06:36](767 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:57] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:24, 03:21](763 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:20](761 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:45](765 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:22, 03:22](766 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:40, 05:24](810 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [07:39, 05:13](812 MB) +PASS -- TEST 'control_ras_debug_intel' [05:21, 03:26](778 MB) +PASS -- TEST 'control_diag_debug_intel' [05:33, 03:32](816 MB) +PASS -- TEST 'control_debug_p8_intel' [05:50, 03:35](1595 MB) +PASS -- TEST 'regional_debug_intel' [23:52, 21:43](785 MB) +PASS -- TEST 'rap_control_debug_intel' [08:26, 06:11](1155 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:27, 05:59](1151 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 06:02](1153 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 06:03](1155 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 06:04](1152 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:19](1239 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:27, 06:10](1153 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:12](1156 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:03](1156 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:00](1152 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:56](1157 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 06:03](1154 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:35, 09:51](1146 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 06:02](1154 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:21, 07:24](1158 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:01](1153 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:35, 10:29](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:07, 04:08] +PASS -- TEST 'control_wam_debug_intel' [08:31, 06:10](441 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:20, 30:01] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:28, 05:15](1082 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:04, 08:53](898 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:07, 04:24](872 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:04, 08:24](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:07, 04:04](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:07, 04:41](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:48, 06:50](897 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:45, 03:01](841 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:26, 42:16] +PASS -- TEST 'conus13km_control_intel' [06:03, 03:08](1108 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:34](1049 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:51, 01:39](1027 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:18, 30:19] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:00, 05:48](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:53] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 05:56](1030 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 05:48](1030 MB) +PASS -- TEST 'conus13km_debug_intel' [21:03, 18:24](1143 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 18:39](852 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:34](1085 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:30](1206 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:17] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:31, 06:05](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [36:23, 34:58] +PASS -- TEST 'hafs_regional_atm_intel' [09:20, 06:57](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:39](1084 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:44, 09:34](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:37, 16:26](802 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:53, 18:48](823 MB) +PASS -- TEST 'gnv1_nested_intel' [08:31, 06:07](774 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:21, 32:01] +PASS -- TEST 'hafs_regional_docn_intel' [11:39, 08:48](763 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:40, 08:48](745 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:10, 08:07] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:41, 03:50](1059 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:10](1048 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:41, 03:53](929 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:58](926 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:41, 03:53](924 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:42, 03:54](1064 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:42, 04:05](1061 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:20, 04:01](925 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:33, 08:11](887 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:32, 08:03](840 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:22, 03:54](1056 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:43, 05:34](2345 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:43, 05:23](2407 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:33] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:04](1010 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:03] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:43](1053 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:52] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:50](229 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 01:38](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:51](251 MB) + +PASS -- COMPILE 'atml_intel' [36:22, 34:28] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:51, 09:09](1609 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:49, 09:15](1602 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 04:40](870 MB) + +PASS -- COMPILE 'atmw_intel' [33:21, 31:33] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 02:24](1610 MB) + +PASS -- COMPILE 'atmwm_intel' [32:21, 30:41] +PASS -- TEST 'control_atmwav_intel' [05:12, 02:28](608 MB) + +PASS -- COMPILE 'atmaero_intel' [32:19, 30:39] +PASS -- TEST 'atmaero_control_p8_intel' [08:28, 05:21](1699 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:21, 06:29](1720 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:45](1735 MB) SYNOPSIS: -Starting Date/Time: 20240319 13:16:22 -Ending Date/Time: 20240319 16:46:11 -Total Time: 03h:30m:34s +Starting Date/Time: 20240331 17:05:36 +Ending Date/Time: 20240331 20:36:53 +Total Time: 03h:31m:58s Compiles Completed: 33/33 Tests Completed: 161/161 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index f9aeedb7b4..7ee8c1f320 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: -55da2dd260008d4a1196c77c941d5b3300bcae45 +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,33 +11,33 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808) + 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) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + 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) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + 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) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -48,357 +48,279 @@ 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-20240315 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_281704 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_188248 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' [17:07, 15:49] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:49, 05:08](3180 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:58] -PASS -- TEST 'cpld_control_gfsv17_intel' [24:56, 16:31](1743 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:06, 17:09](2057 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:03](1113 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:01, 18:25](1648 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:08] -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:22, 23:21](1696 MB) - -PASS -- COMPILE 's2swa_intel' [16:07, 14:19] -PASS -- TEST 'cpld_control_p8_intel' [17:45, 05:38](3212 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:00, 05:41](3208 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:05, 03:21](3249 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:46, 05:38](3237 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:46, 03:19](3278 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:00, 06:08](3556 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:45, 05:42](3202 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:42, 04:44](3061 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:01, 05:41](3212 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:03, 09:52](3341 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:42, 06:20](3546 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:02, 10:57](4120 MB) -FAIL TO COMPARE -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [17:46, 05:27](3176 MB) - -PASS -- COMPILE 's2sw_intel' [15:07, 13:50] -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:19, 04:24](1734 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 04:27](1787 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:17] -PASS -- TEST 'cpld_debug_p8_intel' [11:36, 08:47](3252 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:08] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:20, 06:02](1755 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:06] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:34, 04:18](1785 MB) - -PASS -- COMPILE 's2s_intel' [15:07, 13:06] -PASS -- TEST 'cpld_control_c48_intel' [14:58, 08:04](2826 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:06] -PASS -- TEST 'cpld_control_p8_faster_intel' [13:45, 05:22](3213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:07, 19:06] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:16, 16:35](1771 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 08:05](1172 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:15, 18:30](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:06, 05:16] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:06, 24:47](1716 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:16] -PASS -- TEST 'control_flake_intel' [05:19, 03:28](700 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:19, 02:21](654 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 02:31](652 MB) -PASS -- TEST 'control_latlon_intel' [11:19, 02:30](647 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:28, 02:34](648 MB) -PASS -- TEST 'control_c48_intel' [12:26, 05:56](877 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:28, 05:55](877 MB) -PASS -- TEST 'control_c192_intel' [11:33, 09:00](860 MB) -PASS -- TEST 'control_c384_intel' [20:31, 10:03](1251 MB) -PASS -- TEST 'control_c384gdas_intel' [20:01, 08:48](1362 MB) -PASS -- TEST 'control_stochy_intel' [03:23, 01:43](653 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:19, 00:58](503 MB) -PASS -- TEST 'control_lndp_intel' [05:17, 01:35](656 MB) -PASS -- TEST 'control_iovr4_intel' [05:22, 02:31](646 MB) -PASS -- TEST 'control_iovr5_intel' [04:21, 02:33](649 MB) -PASS -- TEST 'control_p8_intel' [05:10, 03:00](1626 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:08, 02:56](1639 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:37, 02:49](1639 MB) -PASS -- TEST 'control_restart_p8_intel' [05:16, 01:42](895 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:16, 02:53](1617 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 01:37](929 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:02](1618 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:38, 03:00](1722 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:01, 07:31](1625 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:45, 05:36](1689 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:49, 04:24](1632 MB) -PASS -- TEST 'merra2_thompson_intel' [08:09, 03:27](1635 MB) -PASS -- TEST 'regional_control_intel' [07:57, 05:04](857 MB) -PASS -- TEST 'regional_restart_intel' [04:37, 02:44](1021 MB) -PASS -- TEST 'regional_decomp_intel' [07:33, 05:29](845 MB) -PASS -- TEST 'regional_2threads_intel' [05:50, 03:39](845 MB) -PASS -- TEST 'regional_noquilt_intel' [07:41, 05:01](1364 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:48, 05:01](861 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 05:08](860 MB) -PASS -- TEST 'regional_wofs_intel' [09:39, 06:33](1921 MB) - -PASS -- COMPILE 'rrfs_intel' [17:07, 12:18] -PASS -- TEST 'rap_control_intel' [11:36, 07:47](1100 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:58, 04:41](1300 MB) -PASS -- TEST 'rap_decomp_intel' [12:26, 08:49](1024 MB) -PASS -- TEST 'rap_2threads_intel' [10:37, 07:51](1179 MB) -PASS -- TEST 'rap_restart_intel' [06:26, 04:02](1105 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:33, 11:29](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:42, 08:01](1039 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:30, 05:50](1128 MB) -PASS -- TEST 'hrrr_control_intel' [07:28, 03:58](1036 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:03, 04:09](1022 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:10, 03:25](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:12](999 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:29, 07:35](1095 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:28, 12:19](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 08:51](2069 MB) - -PASS -- COMPILE 'csawmg_intel' [15:06, 11:08] -PASS -- TEST 'control_csawmg_intel' [08:34, 06:03](740 MB) -PASS -- TEST 'control_csawmgt_intel' [08:36, 05:56](748 MB) -PASS -- TEST 'control_ras_intel' [05:18, 03:19](739 MB) - -PASS -- COMPILE 'wam_intel' [15:07, 11:08] -PASS -- TEST 'control_wam_intel' [04:17, 02:07](656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:06, 11:44] -PASS -- TEST 'control_p8_faster_intel' [05:34, 02:36](1630 MB) -PASS -- TEST 'regional_control_faster_intel' [06:37, 04:43](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:06, 04:33] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:42](814 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:40](814 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:03](813 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:45](819 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:16](869 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:43, 04:00](858 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:44](824 MB) -PASS -- TEST 'control_diag_debug_intel' [04:26, 02:51](871 MB) -PASS -- TEST 'control_debug_p8_intel' [04:46, 02:54](1636 MB) -PASS -- TEST 'regional_debug_intel' [19:42, 17:18](845 MB) -PASS -- TEST 'rap_control_debug_intel' [06:19, 04:51](1201 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:47](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:47](1197 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:53](1202 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:51](1206 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:15](1285 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:19, 05:05](1200 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:04](1200 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:19, 05:03](1208 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 05:07](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:54](1206 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 04:57](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:55](1198 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:45](1193 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 06:05](1208 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:57](1199 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:24, 08:28](1208 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:06, 03:02] -PASS -- TEST 'control_wam_debug_intel' [06:18, 05:00](502 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:20, 11:40] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:00, 04:22](1167 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:28, 06:21](1044 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:09, 03:25](980 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:50, 06:44](1086 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:52, 02:57](963 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 03:39](921 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:17, 04:49](1036 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:20, 01:52](934 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:06, 13:43] -PASS -- TEST 'conus13km_control_intel' [04:56, 02:07](1199 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:48, 01:04](1126 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:21](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:07, 11:10] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:17](998 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:06] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:50](1077 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:47](1079 MB) -PASS -- TEST 'conus13km_debug_intel' [16:50, 14:27](1229 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:40](929 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:44, 08:19](1155 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:36](1290 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:06, 03:21] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:56](1123 MB) - -PASS -- COMPILE 'hafsw_intel' [14:07, 12:11] -PASS -- TEST 'hafs_regional_atm_intel' [08:13, 05:33](741 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:22, 05:47](1112 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:24, 06:57](832 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:12, 12:58](865 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 14:43](834 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:55, 06:05](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:22, 07:17](520 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:47, 03:09](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 07:58](465 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:47, 05:42](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:55, 03:57](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 05:23](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:24, 01:30](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:52, 04:31](802 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:06, 03:57] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 13:01](574 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:08, 13:39] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:55, 09:27](674 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:15, 10:06](741 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:07, 14:02] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:57, 09:21](727 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:06, 13:56] -PASS -- TEST 'hafs_regional_docn_intel' [09:12, 06:20](831 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:08, 06:26](816 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 15:57](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:06, 07:14] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:35](1130 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:45](1091 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:07, 13:39] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:21, 05:17](3188 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 19:08] +PASS -- TEST 'cpld_control_gfsv17_intel' [21:56, 16:30](1736 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:02, 18:16](2019 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:52, 08:19](1114 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:57, 18:26](1644 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:24] +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:56, 23:12](1683 MB) + +PASS -- COMPILE 's2swa_intel' [17:07, 15:36] +PASS -- TEST 'cpld_control_p8_intel' [11:32, 05:43](3210 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:42, 05:44](3206 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:47, 03:20](3257 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:32, 05:44](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:47, 03:31](3199 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:30, 06:11](3559 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:32, 05:43](3211 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 04:48](3066 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:43, 05:43](3217 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:44, 09:58](3267 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:25, 06:07](3627 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:09, 11:03](4173 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:31, 06:51](4372 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 05:23](3166 MB) + +PASS -- COMPILE 's2sw_intel' [14:07, 13:03] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:59, 04:35](1679 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:25, 04:25](1780 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:30] +PASS -- TEST 'cpld_debug_p8_intel' [11:33, 08:30](3246 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:06] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:10, 06:00](1753 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:12, 13:02] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:24, 04:20](1777 MB) + +PASS -- COMPILE 's2s_intel' [15:07, 13:13] +PASS -- TEST 'cpld_control_c48_intel' [10:50, 08:09](2826 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:07, 19:20] +PASS -- TEST 'cpld_control_p8_faster_intel' [10:36, 05:15](3213 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:56] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 16:39](1768 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:21, 08:14](1175 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 19:07](1680 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:07] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 24:42](1721 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:06, 12:41] +PASS -- TEST 'control_flake_intel' [05:20, 03:31](703 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:32](653 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:38](658 MB) +PASS -- TEST 'control_latlon_intel' [04:19, 02:31](658 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:33](654 MB) +PASS -- TEST 'control_c48_intel' [07:25, 06:03](869 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:56](875 MB) +PASS -- TEST 'control_c192_intel' [11:39, 09:08](836 MB) +PASS -- TEST 'control_c384_intel' [13:37, 10:04](1245 MB) +PASS -- TEST 'control_c384gdas_intel' [15:07, 09:08](1359 MB) +PASS -- TEST 'control_stochy_intel' [03:18, 01:47](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:17, 01:00](503 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:40](653 MB) +PASS -- TEST 'control_iovr4_intel' [06:24, 02:31](650 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:29](645 MB) +PASS -- TEST 'control_p8_intel' [05:07, 03:01](1637 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 02:59](1629 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 02:51](1637 MB) +PASS -- TEST 'control_restart_p8_intel' [04:02, 01:39](894 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:04, 02:53](1620 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:44](929 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:00, 03:09](1616 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:14, 03:09](1722 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:44, 05:14](1638 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:26, 03:59](1687 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:28, 03:00](1633 MB) +PASS -- TEST 'merra2_thompson_intel' [06:43, 03:32](1646 MB) +PASS -- TEST 'regional_control_intel' [07:41, 05:14](820 MB) +PASS -- TEST 'regional_restart_intel' [06:40, 02:43](1023 MB) +PASS -- TEST 'regional_decomp_intel' [07:32, 05:31](854 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 03:43](846 MB) +PASS -- TEST 'regional_noquilt_intel' [07:39, 05:13](1364 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:02](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 05:08](859 MB) +PASS -- TEST 'regional_wofs_intel' [08:40, 06:35](1919 MB) + +PASS -- COMPILE 'rrfs_intel' [14:06, 12:21] +PASS -- TEST 'rap_control_intel' [10:22, 07:41](1109 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:48](1296 MB) +PASS -- TEST 'rap_decomp_intel' [10:51, 08:07](1025 MB) +PASS -- TEST 'rap_2threads_intel' [10:10, 07:55](1187 MB) +PASS -- TEST 'rap_restart_intel' [07:21, 04:04](1101 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:26, 07:43](1099 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:25, 08:09](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:16, 05:50](1128 MB) +PASS -- TEST 'hrrr_control_intel' [06:55, 04:02](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 04:07](1019 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:03, 03:43](1064 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:23, 02:12](1004 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:23, 07:35](1099 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:26, 09:15](1996 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:23, 08:58](2075 MB) + +PASS -- COMPILE 'csawmg_intel' [14:06, 12:35] +PASS -- TEST 'control_csawmg_intel' [09:38, 06:00](753 MB) +PASS -- TEST 'control_csawmgt_intel' [09:44, 05:56](750 MB) +PASS -- TEST 'control_ras_intel' [06:17, 03:18](749 MB) + +PASS -- COMPILE 'wam_intel' [12:06, 10:51] +PASS -- TEST 'control_wam_intel' [05:16, 02:06](655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:06, 11:15] +PASS -- TEST 'control_p8_faster_intel' [06:28, 02:36](1633 MB) +PASS -- TEST 'regional_control_faster_intel' [08:41, 04:44](803 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:30] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 02:43](813 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:43](810 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:03](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:17, 02:46](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:15](865 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:05](865 MB) +PASS -- TEST 'control_ras_debug_intel' [04:19, 02:49](819 MB) +PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](871 MB) +PASS -- TEST 'control_debug_p8_intel' [04:40, 03:02](1639 MB) +PASS -- TEST 'regional_debug_intel' [19:37, 17:13](845 MB) +PASS -- TEST 'rap_control_debug_intel' [06:18, 05:00](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:54](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:57](1193 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:54](1200 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:15, 04:59](1200 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:27, 05:12](1282 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:03](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:19, 05:04](1142 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:53](1203 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:47](1198 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:54](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:20, 09:32](1197 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 04:53](1199 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 05:58](1200 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:53](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:24](1207 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:05, 03:25] +PASS -- TEST 'control_wam_debug_intel' [06:17, 04:58](519 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 11:00] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:59, 04:27](1165 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:15, 06:25](1049 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:17, 03:24](978 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:11, 06:40](1085 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:00](912 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:21, 03:34](929 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:12, 04:48](1035 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](923 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:06, 12:44] +PASS -- TEST 'conus13km_control_intel' [04:55, 02:10](1199 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:02](1098 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:18](1108 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:06, 11:00] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:17](996 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:21] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:50](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:43](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [16:52, 14:29](1230 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:14](916 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:25](1152 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 14:05](1297 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:08] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:22, 05:06](1126 MB) + +PASS -- COMPILE 'hafsw_intel' [15:07, 13:07] +PASS -- TEST 'hafs_regional_atm_intel' [08:04, 05:35](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:24, 05:51](1060 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:23, 06:52](833 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:09, 12:44](861 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:16, 14:27](843 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:52, 06:06](503 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:18, 07:30](519 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:41](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 08:08](453 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:41, 04:04](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:49, 04:19](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:51, 05:17](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:23, 01:25](398 MB) +PASS -- TEST 'gnv1_nested_intel' [08:48, 04:32](807 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:06, 03:41] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:47, 13:25](569 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:07, 14:03] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:54, 09:24](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:58, 09:38](706 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:06, 13:32] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 06:54](726 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:06, 12:36] +PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:15](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:20](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:52, 16:01](1210 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:05, 07:01] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:12, 02:41](1130 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:38](1080 MB) PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:30](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:37](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:36](1000 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:51](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:41](1134 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:31](1009 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:13, 06:11](1055 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 05:59](1038 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:41](1125 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:31](2491 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:35](2489 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:35](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:11, 02:39](1008 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:11, 02:42](1132 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:38](1139 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:34](1011 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 05:56](1060 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:04, 06:00](1036 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:39](1125 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:36](2443 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:36](2495 MB) -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:48] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:11](1060 MB) +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:05, 04:35] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:14](1059 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 07:45] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:40](1122 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:51] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:37](1117 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 01:13] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:23, 00:46](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:48](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:35](320 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:58] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:47](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](320 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:31](328 MB) -PASS -- COMPILE 'atml_intel' [15:07, 12:54] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:40, 04:15](1600 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:38, 04:15](1601 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:24](899 MB) +PASS -- COMPILE 'atml_intel' [14:08, 12:58] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:20](1603 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:15](1605 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:20](897 MB) -PASS -- COMPILE 'atmw_intel' [14:08, 12:21] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 01:46](1667 MB) +PASS -- COMPILE 'atmw_intel' [14:07, 11:00] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:14, 01:50](1667 MB) -PASS -- COMPILE 'atmwm_intel' [13:07, 11:42] -PASS -- TEST 'control_atmwav_intel' [04:11, 01:39](676 MB) +PASS -- COMPILE 'atmwm_intel' [16:09, 11:42] +PASS -- TEST 'control_atmwav_intel' [04:02, 01:41](678 MB) -PASS -- COMPILE 'atmaero_intel' [13:07, 11:47] -PASS -- TEST 'atmaero_control_p8_intel' [07:15, 04:05](2969 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 04:53](3089 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:59, 05:05](3107 MB) +PASS -- COMPILE 'atmaero_intel' [15:06, 10:47] +PASS -- TEST 'atmaero_control_p8_intel' [06:14, 03:55](3028 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:14, 04:47](3045 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:04](3108 MB) -PASS -- COMPILE 'atmaq_intel' [12:06, 10:11] +PASS -- COMPILE 'atmaq_intel' [14:08, 10:39] -PASS -- COMPILE 'atmaq_debug_intel' [06:06, 03:19] -PASS -- TEST 'regional_atmaq_debug_intel' [23:42, 20:56](4568 MB) +PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:28] +PASS -- TEST 'regional_atmaq_debug_intel' [23:38, 20:47](4411 MB) SYNOPSIS: -Starting Date/Time: 20240321 11:53:32 -Ending Date/Time: 20240321 13:32:01 -Total Time: 01h:39m:27s +Starting Date/Time: 20240331 12:01:52 +Ending Date/Time: 20240331 13:32:26 +Total Time: 01h:31m:04s Compiles Completed: 39/39 -Tests Completed: 181/182 -Failed Tests: -* TEST cpld_restart_bmark_p8_intel: FAIL TO COMPARE --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2194/tests/logs/log_orion/rt_cpld_restart_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: -55da2dd260008d4a1196c77c941d5b3300bcae45 - -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) - 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) - 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) - 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808) - 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) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - 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) - 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) - 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) - - -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-20240315 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_284715 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 's2swa_intel' [16:06, 14:23] -PASS -- TEST 'cpld_bmark_p8_intel' [19:05, 11:20](4122 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:13, 07:17](4364 MB) - -SYNOPSIS: -Starting Date/Time: 20240321 13:50:38 -Ending Date/Time: 20240321 14:43:04 -Total Time: 00h:52m:41s -Compiles Completed: 1/1 -Tests Completed: 2/2 +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 5346ff3eb9..4f4bce119a 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: -7908de2724b95cab917b6b6c3d059c66cb8bdaa7 +8be49df39e49439d1c10ad54ab3800070692d809 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,34 +11,34 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92) - 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (EP4-737-g94596b38) + 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) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + 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) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) + 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) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -48,235 +48,235 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240315 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10549 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39097 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:35, 11:04] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:51, 01:19](2974 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [39:46, 38:52] -PASS -- TEST 'cpld_control_gfsv17_intel' [13:39, 02:31](1586 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:55, 01:56](1708 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [54:55, 02:10](847 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:40, 02:17](1577 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:34, 10:22] -PASS -- TEST 'cpld_debug_gfsv17_intel' [41:53, 01:15](1604 MB) - -PASS -- COMPILE 's2swa_intel' [19:55, 18:56] -PASS -- TEST 'cpld_control_p8_intel' [33:30, 01:29](3002 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:30, 01:34](3002 MB) -PASS -- TEST 'cpld_restart_p8_intel' [24:57, 02:02](3059 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [33:30, 01:26](3028 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [24:57, 01:55](3082 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [33:30, 00:59](3317 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [33:30, 01:32](2999 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:31, 01:24](2925 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:30, 01:38](3002 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:39, 05:02](3952 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:50, 04:24](4254 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [33:30, 01:50](2970 MB) - -PASS -- COMPILE 's2sw_intel' [10:32, 10:05] -PASS -- TEST 'cpld_control_noaero_p8_intel' [42:53, 00:59](1584 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:53, 01:08](1635 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [24:04, 23:22] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:21, 02:01](1634 MB) - -PASS -- COMPILE 's2s_intel' [27:10, 26:15] -PASS -- TEST 'cpld_control_c48_intel' [26:00, 00:50](2657 MB) - -PASS -- COMPILE 's2swa_faster_intel' [28:13, 27:56] -PASS -- TEST 'cpld_control_p8_faster_intel' [24:57, 01:47](3003 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [11:35, 10:52] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:51, 01:30](1602 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:01, 01:43](901 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:37, 01:04](1568 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:20, 04:18] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:06, 01:08](1623 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:50, 18:04] -PASS -- TEST 'control_flake_intel' [29:13, 00:25](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [29:13, 00:48](518 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:13, 00:43](531 MB) -PASS -- TEST 'control_latlon_intel' [29:13, 00:40](525 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:13, 00:49](521 MB) -PASS -- TEST 'control_c48_intel' [29:12, 00:57](716 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [29:12, 00:57](714 MB) -PASS -- TEST 'control_c192_intel' [29:13, 00:35](639 MB) -PASS -- TEST 'control_c384_intel' [29:17, 01:53](954 MB) -PASS -- TEST 'control_c384gdas_intel' [29:17, 02:36](1093 MB) -PASS -- TEST 'control_stochy_intel' [29:13, 00:24](535 MB) -PASS -- TEST 'control_stochy_restart_intel' [26:45, 01:01](332 MB) -PASS -- TEST 'control_lndp_intel' [29:13, 00:26](527 MB) -PASS -- TEST 'control_iovr4_intel' [29:13, 00:43](524 MB) -PASS -- TEST 'control_iovr5_intel' [29:13, 00:39](524 MB) -PASS -- TEST 'control_p8_intel' [29:13, 01:57](1501 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [29:13, 01:58](1499 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [29:13, 01:59](1510 MB) -PASS -- TEST 'control_restart_p8_intel' [23:37, 00:54](689 MB) -PASS -- TEST 'control_noqr_p8_intel' [26:45, 01:29](1488 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [21:33, 00:58](695 MB) -PASS -- TEST 'control_decomp_p8_intel' [26:01, 01:35](1497 MB) -PASS -- TEST 'control_2threads_p8_intel' [25:43, 00:52](1593 MB) -PASS -- TEST 'control_p8_lndp_intel' [25:41, 01:20](1510 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [25:40, 01:06](1566 MB) -PASS -- TEST 'control_p8_mynn_intel' [25:40, 01:53](1513 MB) -PASS -- TEST 'merra2_thompson_intel' [25:36, 01:36](1510 MB) -PASS -- TEST 'regional_control_intel' [25:32, 00:20](609 MB) -PASS -- TEST 'regional_restart_intel' [19:37, 00:29](776 MB) -PASS -- TEST 'regional_decomp_intel' [24:54, 01:04](606 MB) -PASS -- TEST 'regional_2threads_intel' [24:45, 01:02](666 MB) -PASS -- TEST 'regional_noquilt_intel' [24:44, 00:33](1145 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [24:38, 00:28](608 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [24:11, 00:15](610 MB) -PASS -- TEST 'regional_wofs_intel' [23:33, 01:01](1584 MB) - -PASS -- COMPILE 'rrfs_intel' [13:42, 12:32] -PASS -- TEST 'rap_control_intel' [22:24, 01:22](920 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:24, 01:16](1092 MB) -PASS -- TEST 'rap_decomp_intel' [21:36, 02:08](917 MB) -PASS -- TEST 'rap_2threads_intel' [21:33, 01:34](1010 MB) -PASS -- TEST 'rap_restart_intel' [13:41, 01:19](785 MB) -PASS -- TEST 'rap_sfcdiff_intel' [20:52, 01:17](913 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:51, 01:59](912 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:18, 01:58](788 MB) -PASS -- TEST 'hrrr_control_intel' [20:16, 01:16](913 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [20:11, 01:09](910 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [20:06, 01:24](987 MB) -PASS -- TEST 'hrrr_control_restart_intel' [15:00, 01:08](741 MB) -PASS -- TEST 'rrfs_v1beta_intel' [19:52, 01:22](914 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:48, 01:09](1876 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:07, 00:28](1860 MB) - -PASS -- COMPILE 'csawmg_intel' [23:01, 22:26] -PASS -- TEST 'control_csawmg_intel' [18:49, 00:32](599 MB) -PASS -- TEST 'control_csawmgt_intel' [18:43, 00:40](599 MB) -PASS -- TEST 'control_ras_intel' [18:39, 00:49](561 MB) - -PASS -- COMPILE 'wam_intel' [22:02, 21:34] -PASS -- TEST 'control_wam_intel' [18:18, 00:57](273 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [30:26, 29:18] -PASS -- TEST 'control_p8_faster_intel' [11:25, 02:03](1510 MB) -PASS -- TEST 'regional_control_faster_intel' [11:19, 00:29](611 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [21:02, 20:46] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:49, 01:18](687 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:27, 01:25](690 MB) -PASS -- TEST 'control_stochy_debug_intel' [12:23, 00:54](694 MB) -PASS -- TEST 'control_lndp_debug_intel' [11:56, 01:12](695 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:31, 00:43](736 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [11:20, 00:47](735 MB) -PASS -- TEST 'control_ras_debug_intel' [10:55, 01:10](700 MB) -PASS -- TEST 'control_diag_debug_intel' [10:52, 01:15](746 MB) -PASS -- TEST 'control_debug_p8_intel' [10:15, 01:07](1519 MB) -PASS -- TEST 'regional_debug_intel' [10:01, 01:08](629 MB) -PASS -- TEST 'rap_control_debug_intel' [09:14, 01:01](1079 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:14, 01:04](1068 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:14, 00:59](1073 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:02, 01:01](1074 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:21, 00:58](1074 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:09, 00:55](1163 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:54, 00:53](1072 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:43, 00:50](1073 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:37, 00:55](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 01:06](1074 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:56, 01:08](1074 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:55, 01:04](1071 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:46, 00:49](1071 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 01:10](1066 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:15, 01:14](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:55, 01:03](1073 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [05:39, 01:35](1077 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:43, 13:23] -PASS -- TEST 'control_wam_debug_intel' [15:37, 00:59](301 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:43, 14:08] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:31, 01:20](955 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:30, 01:18](790 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:30, 01:43](785 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:30, 01:50](856 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:31, 02:01](843 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:30, 01:35](788 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:33, 01:45](687 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:31, 00:15](667 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:58, 20:25] -PASS -- TEST 'conus13km_control_intel' [05:30, 01:05](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:28, 00:54](1006 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:25, 00:42](879 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:56, 16:17] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 01:30](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:22, 03:57] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:16, 01:17](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [18:02, 00:17](952 MB) -PASS -- TEST 'conus13km_debug_intel' [18:02, 00:43](1037 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:57, 00:35](713 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:40, 00:48](1038 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:35, 00:34](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:27, 07:01] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:22, 01:07](979 MB) - -PASS -- COMPILE 'hafsw_intel' [14:48, 13:37] -PASS -- TEST 'hafs_regional_atm_intel' [03:40, 02:08](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:19, 01:20](968 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [03:05, 02:01](662 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [02:37, 01:37](690 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [02:38, 01:27](707 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [02:37, 01:16](388 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:28, 02:12](408 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [01:50, 01:19](289 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [01:38, 02:20](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [01:34, 01:35](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [01:20, 00:50](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [01:14, 01:54](491 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:05, 01:08](314 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:33, 09:49] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [00:46, 01:05](502 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:47, 13:52] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [00:21, 00:52](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [00:21, 00:49](707 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:42, 12:52] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [00:16, 00:59](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:42, 14:18] -PASS -- TEST 'hafs_regional_docn_intel' [58:57, 01:14](660 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [58:57, 02:11](649 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [58:55, 00:38](880 MB) - -PASS -- COMPILE 'atml_intel' [21:59, 21:38] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [51:24, 02:29](1539 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [51:24, 02:34](1553 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [43:16, 01:16](744 MB) - -PASS -- COMPILE 'atmaero_intel' [14:46, 13:35] -PASS -- TEST 'atmaero_control_p8_intel' [57:41, 01:37](2849 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [57:41, 01:02](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [57:41, 01:51](2926 MB) - -PASS -- COMPILE 'atmaq_intel' [15:48, 14:48] - -PASS -- COMPILE 'atmaq_debug_intel' [11:39, 10:56] -PASS -- TEST 'regional_atmaq_debug_intel' [57:42, 01:13](4434 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:35, 10:54] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:13, 01:16](2975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [32:18, 32:03] +PASS -- TEST 'cpld_control_gfsv17_intel' [47:42, 02:10](1594 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:27, 01:24](1719 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [28:18, 01:48](849 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:08, 02:01](1566 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:30, 08:51] +PASS -- TEST 'cpld_debug_gfsv17_intel' [13:18, 01:47](1602 MB) + +PASS -- COMPILE 's2swa_intel' [30:14, 29:26] +PASS -- TEST 'cpld_control_p8_intel' [51:59, 01:10](3002 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [51:59, 01:15](3004 MB) +PASS -- TEST 'cpld_restart_p8_intel' [42:16, 01:42](3063 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [51:45, 01:58](3029 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [41:15, 01:15](3082 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [51:31, 01:17](3316 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [50:34, 01:19](3000 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [46:58, 01:45](2928 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:46, 02:04](3002 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [46:55, 04:07](3952 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:06, 03:32](4252 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [46:46, 01:27](2968 MB) + +PASS -- COMPILE 's2sw_intel' [11:35, 10:40] +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:12, 00:50](1586 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:12, 01:01](1635 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [43:44, 42:49] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [38:34, 01:05](1631 MB) + +PASS -- COMPILE 's2s_intel' [10:33, 09:43] +PASS -- TEST 'cpld_control_c48_intel' [12:14, 00:45](2658 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:11, 28:56] +PASS -- TEST 'cpld_control_p8_faster_intel' [53:16, 01:18](3001 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:56, 20:40] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:10, 01:53](1600 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:16, 01:10](904 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:41, 01:10](1570 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:31, 08:24] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:17, 01:27](1627 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:32, 09:35] +PASS -- TEST 'control_flake_intel' [02:44, 00:46](572 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [02:44, 00:40](521 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 00:55](531 MB) +PASS -- TEST 'control_latlon_intel' [02:44, 00:19](524 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:44, 00:43](527 MB) +PASS -- TEST 'control_c48_intel' [02:43, 00:30](714 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [02:43, 00:37](713 MB) +PASS -- TEST 'control_c192_intel' [02:44, 00:51](637 MB) +PASS -- TEST 'control_c384_intel' [02:48, 01:30](956 MB) +PASS -- TEST 'control_c384gdas_intel' [02:48, 01:41](1094 MB) +PASS -- TEST 'control_stochy_intel' [02:44, 00:36](527 MB) +PASS -- TEST 'control_stochy_restart_intel' [56:08, 01:10](328 MB) +PASS -- TEST 'control_lndp_intel' [02:44, 00:42](530 MB) +PASS -- TEST 'control_iovr4_intel' [02:44, 00:24](521 MB) +PASS -- TEST 'control_iovr5_intel' [02:44, 00:21](526 MB) +PASS -- TEST 'control_p8_intel' [02:44, 00:52](1511 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [02:44, 01:30](1503 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [02:44, 01:28](1511 MB) +PASS -- TEST 'control_restart_p8_intel' [53:16, 01:52](688 MB) +PASS -- TEST 'control_noqr_p8_intel' [02:44, 00:58](1490 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [53:16, 01:50](699 MB) +PASS -- TEST 'control_decomp_p8_intel' [02:44, 00:42](1500 MB) +PASS -- TEST 'control_2threads_p8_intel' [02:44, 01:25](1593 MB) +PASS -- TEST 'control_p8_lndp_intel' [02:44, 00:45](1501 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [02:44, 01:38](1558 MB) +PASS -- TEST 'control_p8_mynn_intel' [02:44, 02:00](1514 MB) +PASS -- TEST 'merra2_thompson_intel' [02:44, 01:45](1516 MB) +PASS -- TEST 'regional_control_intel' [02:43, 00:14](610 MB) +PASS -- TEST 'regional_restart_intel' [53:43, 01:05](779 MB) +PASS -- TEST 'regional_decomp_intel' [02:43, 00:58](607 MB) +PASS -- TEST 'regional_2threads_intel' [02:44, 00:41](658 MB) +PASS -- TEST 'regional_noquilt_intel' [02:43, 00:27](1145 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [56:08, 00:47](607 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [55:02, 01:02](610 MB) +PASS -- TEST 'regional_wofs_intel' [55:02, 00:33](1577 MB) + +PASS -- COMPILE 'rrfs_intel' [17:49, 16:37] +PASS -- TEST 'rap_control_intel' [55:03, 01:34](917 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [55:02, 01:25](1096 MB) +PASS -- TEST 'rap_decomp_intel' [54:55, 01:17](918 MB) +PASS -- TEST 'rap_2threads_intel' [53:44, 01:06](1012 MB) +PASS -- TEST 'rap_restart_intel' [43:32, 01:45](787 MB) +PASS -- TEST 'rap_sfcdiff_intel' [53:44, 01:43](915 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [53:16, 01:21](913 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [42:06, 01:57](783 MB) +PASS -- TEST 'hrrr_control_intel' [53:00, 01:00](911 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [53:00, 01:52](906 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [52:58, 01:12](994 MB) +PASS -- TEST 'hrrr_control_restart_intel' [45:45, 01:00](742 MB) +PASS -- TEST 'rrfs_v1beta_intel' [52:55, 01:46](905 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [52:49, 00:27](1876 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:42, 00:56](1863 MB) + +PASS -- COMPILE 'csawmg_intel' [09:30, 09:00] +PASS -- TEST 'control_csawmg_intel' [46:06, 00:31](598 MB) +PASS -- TEST 'control_csawmgt_intel' [45:55, 00:42](601 MB) +PASS -- TEST 'control_ras_intel' [45:45, 00:48](563 MB) + +PASS -- COMPILE 'wam_intel' [28:13, 27:01] +PASS -- TEST 'control_wam_intel' [42:36, 00:36](272 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:48, 16:38] +PASS -- TEST 'control_p8_faster_intel' [45:16, 00:59](1501 MB) +PASS -- TEST 'regional_control_faster_intel' [45:05, 00:55](609 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:50, 13:14] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:49, 00:44](684 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:45, 00:52](692 MB) +PASS -- TEST 'control_stochy_debug_intel' [43:54, 01:10](690 MB) +PASS -- TEST 'control_lndp_debug_intel' [43:32, 00:44](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [43:32, 01:13](734 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [42:17, 00:52](731 MB) +PASS -- TEST 'control_ras_debug_intel' [42:16, 01:06](701 MB) +PASS -- TEST 'control_diag_debug_intel' [42:15, 01:05](748 MB) +PASS -- TEST 'control_debug_p8_intel' [42:02, 01:03](1525 MB) +PASS -- TEST 'regional_debug_intel' [41:21, 00:25](631 MB) +PASS -- TEST 'rap_control_debug_intel' [41:17, 01:22](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [41:15, 00:21](1067 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [41:03, 00:27](1071 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [40:53, 00:31](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:52, 01:19](1078 MB) +PASS -- TEST 'rap_diag_debug_intel' [40:15, 01:23](1157 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [40:06, 00:26](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [38:20, 00:46](1079 MB) +PASS -- TEST 'rap_lndp_debug_intel' [38:14, 01:03](1075 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [38:12, 01:05](1076 MB) +PASS -- TEST 'rap_noah_debug_intel' [38:12, 01:09](1074 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [38:03, 01:04](1077 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:01, 00:56](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [38:00, 01:05](1070 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [37:11, 01:00](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [36:44, 01:01](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [36:39, 01:18](1077 MB) + +PASS -- COMPILE 'wam_debug_intel' [16:46, 12:09] +PASS -- TEST 'control_wam_debug_intel' [36:15, 00:54](298 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:43, 11:42] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [36:07, 01:19](955 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [35:42, 01:11](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [35:21, 02:30](788 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [34:40, 02:10](854 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [34:40, 02:10](840 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [34:24, 01:54](786 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:19, 01:45](687 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [27:36, 01:07](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:54, 16:12] +PASS -- TEST 'conus13km_control_intel' [34:14, 00:32](1001 MB) +PASS -- TEST 'conus13km_2threads_intel' [29:21, 00:32](1009 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [27:10, 00:30](879 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:36, 08:17] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:35, 00:45](811 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:31, 06:31] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:32, 00:29](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:28, 00:30](955 MB) +PASS -- TEST 'conus13km_debug_intel' [33:16, 00:58](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [32:27, 01:00](714 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [31:58, 00:28](1039 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:43, 00:28](1103 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [20:00, 17:27] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [31:29, 01:15](977 MB) + +PASS -- COMPILE 'hafsw_intel' [13:43, 11:34] +PASS -- TEST 'hafs_regional_atm_intel' [31:29, 01:32](620 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [31:28, 00:43](971 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [31:26, 02:08](659 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:26, 01:26](701 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:11, 01:53](704 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:58, 00:53](390 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [29:42, 02:07](407 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [29:38, 00:51](283 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:04, 02:33](370 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:47, 01:14](411 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:03, 01:19](412 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:59, 01:16](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [25:56, 00:57](323 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:31, 08:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:52, 01:22](500 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:52, 17:55] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:02, 00:46](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:29, 00:57](709 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:03, 22:01] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:52, 01:18](715 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:33, 09:09] +PASS -- TEST 'hafs_regional_docn_intel' [23:39, 01:35](665 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:24, 01:35](642 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:58, 00:40](882 MB) + +PASS -- COMPILE 'atml_intel' [22:03, 19:36] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:26, 02:09](1550 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [20:12, 01:26](1547 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:38, 01:12](740 MB) + +PASS -- COMPILE 'atmaero_intel' [13:42, 11:37] +PASS -- TEST 'atmaero_control_p8_intel' [22:49, 01:12](2849 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [22:05, 00:59](2909 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:51, 01:02](2922 MB) + +PASS -- COMPILE 'atmaq_intel' [12:39, 11:22] + +PASS -- COMPILE 'atmaq_debug_intel' [06:25, 05:38] +PASS -- TEST 'regional_atmaq_debug_intel' [19:52, 01:36](4448 MB) SYNOPSIS: -Starting Date/Time: 20240319 13:06:16 -Ending Date/Time: 20240319 14:29:03 -Total Time: 01h:23m:32s +Starting Date/Time: 20240401 13:36:53 +Ending Date/Time: 20240401 15:08:45 +Total Time: 01h:32m:35s Compiles Completed: 31/31 Tests Completed: 157/157 diff --git a/tests/rt.sh b/tests/rt.sh index fd6464c60f..e05e8d4636 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -87,7 +87,7 @@ update_rtconf() { RT_COMPILER_IN=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') 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 @@ -112,7 +112,7 @@ update_rtconf() { 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 fi @@ -135,7 +135,7 @@ update_rtconf() { fi fi echo "$line" >> $RT_TEMP_CONF - fi + fi fi fi done < "$TESTS_FILE" @@ -610,20 +610,26 @@ echo "Machine: " $MACHINE_ID " Account: " $ACCNR if [[ $MACHINE_ID = wcoss2 ]]; then - module load ecflow/5.6.0.13 + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.6.0.13 + fi module load intel/19.1.3.304 python/3.8.6 - 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} + 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 - ROCOTO_SCHEDULER=pbs + if [[ "${ROCOTO:-false}" == true ]] ; then + ROCOTO_SCHEDULER=pbs + fi PARTITION= STMP=/lfs/h2/emc/ptmp PTMP=/lfs/h2/emc/ptmp @@ -631,20 +637,26 @@ if [[ $MACHINE_ID = wcoss2 ]]; then elif [[ $MACHINE_ID = acorn ]]; then - module load ecflow/5.6.0.13 + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.6.0.13 + fi module load intel/19.1.3.304 python/3.8.6 - 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} + 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 - ROCOTO_SCHEDULER=pbs + if [[ "${ROCOTO:-false}" == true ]] ; then + ROCOTO_SCHEDULER=pbs + fi PARTITION= STMP=/lfs/h2/emc/ptmp PTMP=/lfs/h2/emc/ptmp @@ -652,13 +664,14 @@ elif [[ $MACHINE_ID = acorn ]]; then elif [[ $MACHINE_ID = gaea ]]; then - module use /ncrc/proj/epic/rocoto/modulefiles - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - + 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 @@ -666,29 +679,36 @@ elif [[ $MACHINE_ID = gaea ]]; then module load python/3.9.12 module use /ncrc/proj/epic/spack-stack/modulefiles module load gcc/12.2.0 - 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 )) + 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 - STMP=/gpfs/f5/epic/scratch - PTMP=/gpfs/f5/epic/scratch + dprefix=${dprefix:-/gpfs/f5/$ACCNR/scratch/$USER} + STMP=${STMP:-$dprefix/RT_BASELINE} + PTMP=${PTMP:-$dprefix/RT_RUNDIRS} SCHEDULER=slurm elif [[ $MACHINE_ID = hera ]]; then - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi - module load ecflow/5.5.3 - ECFLOW_START=ecflow_start.sh + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.11.4 + ECFLOW_START=ecflow_start.sh + fi QUEUE=batch COMPILE_QUEUE=batch @@ -707,16 +727,20 @@ elif [[ $MACHINE_ID = orion ]]; then module load gcc/10.2.0 module load python/3.9.2 - module load contrib rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm + 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/orion/modulefiles - 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 )) + 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 @@ -730,16 +754,20 @@ elif [[ $MACHINE_ID = orion ]]; then elif [[ $MACHINE_ID = hercules ]]; then - module load contrib rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm + 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 - 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 )) + 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 QUEUE=batch COMPILE_QUEUE=batch @@ -762,14 +790,18 @@ elif [[ $MACHINE_ID = jet ]]; then exit 1 fi - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi - module load ecflow/5.11.4 - ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh + 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 @@ -787,18 +819,24 @@ elif [[ $MACHINE_ID = jet ]]; then elif [[ $MACHINE_ID = s4 ]]; then - module load rocoto/1.3.2 - module load ecflow/5.6.0 + 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 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm module use /data/prod/jedi/spack-stack/modulefiles - 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 )) + 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 QUEUE=s4 COMPILE_QUEUE=s4 @@ -813,17 +851,23 @@ elif [[ $MACHINE_ID = s4 ]]; then elif [[ $MACHINE_ID = derecho ]]; then - module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles - module load rocoto + 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 - module load ecflow/5.8.4 + 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 - ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) + 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 QUEUE=main COMPILE_QUEUE=main @@ -836,15 +880,19 @@ elif [[ $MACHINE_ID = derecho ]]; then cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=pbspro + if [[ "${ROCOTO:-false}" == true ]] ; then + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=pbspro + fi elif [[ $MACHINE_ID = stampede ]]; then export PYTHONPATH= - ECFLOW_START= + if [[ "${ECFLOW:-false}" == true ]] ; then + ECFLOW_START= + fi QUEUE=skx-normal COMPILE_QUEUE=skx-dev PARTITION= @@ -859,7 +907,9 @@ elif [[ $MACHINE_ID = stampede ]]; then elif [[ $MACHINE_ID = expanse ]]; then export PYTHONPATH= - ECFLOW_START= + if [[ "${ECFLOW:-false}" == true ]] ; then + ECFLOW_START= + fi QUEUE=compute COMPILE_QUEUE=shared PARTITION= @@ -873,12 +923,14 @@ elif [[ $MACHINE_ID = expanse ]]; then export PATH=/contrib/EPIC/bin:$PATH module use /apps/modules/modulefiles - module load rocoto/1.3.3 + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto/1.3.3 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi QUEUE=batch COMPILE_QUEUE=batch @@ -935,7 +987,7 @@ if [[ "$CREATE_BASELINE" == false ]] ; then fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101} -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} shift $((OPTIND-1)) diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 238f8ed695..a8fb423529 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -438,7 +438,7 @@ rocoto_create_compile_task() { cat << EOF >> $ROCOTO_XML - &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} > &LOG;/compile_${COMPILE_ID}.log + &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} 2>&1 | tee &LOG;/compile_${COMPILE_ID}.log compile_${COMPILE_ID} ${ACCNR} ${COMPILE_QUEUE} @@ -449,7 +449,7 @@ EOF --clusters=es eslogin_c5 EOF - else + elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then cat << EOF >> $ROCOTO_XML ${PARTITION} EOF @@ -482,7 +482,7 @@ rocoto_create_run_task() { cat << EOF >> $ROCOTO_XML $DEP_STRING - &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > &LOG;/run_${TEST_ID}${RT_SUFFIX}.log + &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} @@ -493,7 +493,7 @@ EOF --clusters=${PARTITION} --partition=batch EOF - else + elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then cat << EOF >> $ROCOTO_XML ${QUEUE} ${PARTITION} @@ -503,8 +503,7 @@ EOF cat << EOF >> $ROCOTO_XML ${NODES}:ppn=${TPN} 00:${WLCLK}:00 - &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.out - &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.err + &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.log ${NATIVE} EOF