diff --git a/FV3 b/FV3 index 6942270941..1ba84102cb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 694227094198b8c1fe101af22dc506e9aeff9ebe +Subproject commit 1ba84102cb814ec377efae92264fceb317c24398 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/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/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 08758d8f87..ad867c6e92 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 +Tue Mar 26 16:22:58 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_3765727/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 = 273.805616 + 0: The maximum resident set size (KB) = 1258976 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_3765727/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 = 952.201032 + 0: The maximum resident set size (KB) = 1237956 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_3765727/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 = 242.017304 + 0: The maximum resident set size (KB) = 1230120 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_3765727/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 = 236.990247 + 0: The maximum resident set size (KB) = 1230212 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_3765727/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 = 236.183608 + 0: The maximum resident set size (KB) = 1242204 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_3765727/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 = 239.119350 + 0: The maximum resident set size (KB) = 1231424 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_3765727/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 = 239.894578 + 0: The maximum resident set size (KB) = 1240384 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! +Tue Mar 26 17:56:35 UTC 2024 +Elapsed time: 01h:33m:38s. 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..09ce2852a0 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,79 +1,77 @@ -Fri Mar 15 17:05:46 UTC 2024 +Tue Mar 26 22:12:47 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_1241976/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Moving RESTART/20210323.060000.MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving sfcf021.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile1.nc + Moving sfcf021.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile2.nc + Moving sfcf021.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile3.nc + Moving sfcf021.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile4.nc + Moving sfcf021.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile5.nc + Moving sfcf021.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile6.nc + Moving atmf021.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile1.nc + Moving atmf021.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile2.nc + Moving atmf021.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile3.nc + Moving atmf021.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile4.nc + Moving atmf021.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile5.nc + Moving atmf021.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile6.nc + Moving sfcf024.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile1.nc + Moving sfcf024.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile2.nc + Moving sfcf024.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile3.nc + Moving sfcf024.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile4.nc + Moving sfcf024.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile5.nc + Moving sfcf024.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile6.nc + Moving atmf024.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile1.nc + Moving atmf024.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile2.nc + Moving atmf024.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile3.nc + Moving atmf024.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile4.nc + Moving atmf024.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile5.nc + Moving atmf024.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile6.nc + Moving RESTART/20210323.060000.coupler.res .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.coupler.res + Moving RESTART/20210323.060000.fv_core.res.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.nc + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile1.nc + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile2.nc + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile3.nc + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile4.nc + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile5.nc + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile6.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile1.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile2.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile3.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile4.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile5.nc + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile6.nc + Moving RESTART/20210323.060000.phy_data.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile1.nc + Moving RESTART/20210323.060000.phy_data.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile2.nc + Moving RESTART/20210323.060000.phy_data.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile3.nc + Moving RESTART/20210323.060000.phy_data.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile4.nc + Moving RESTART/20210323.060000.phy_data.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile5.nc + Moving RESTART/20210323.060000.phy_data.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile6.nc + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile1.nc + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile2.nc + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile3.nc + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile4.nc + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile5.nc + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile6.nc + Moving RESTART/20210323.060000.MOM.res.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.MOM.res.nc + Moving RESTART/iced.2021-03-23-21600.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/iced.2021-03-23-21600.nc + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc - 0: The total amount of wall time = 1356.631044 - 0: The maximum resident set size (KB) = 1411552 -Test dbg_base PASS +Test dbg_base FAIL baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_183838/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +133,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 388.496545 - 0: The maximum resident set size (KB) = 1403852 + 0: The total amount of wall time = 388.843974 + 0: The maximum resident set size (KB) = 1344020 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_1241976/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +203,13 @@ 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 = 628.835447 + 0: The maximum resident set size (KB) = 1344928 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! +FAILED TESTS: +Test dbg_base failed in check_result failed +OPERATION REQUIREMENT TEST FAILED +Wed Mar 27 00:59:11 UTC 2024 +Elapsed time: 02h:46m:25s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index bfe3cac9fc..c850e901e5 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 +Tue Mar 26 20:13:13 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_887520/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 = 2158.268024 + 0: The maximum resident set size (KB) = 543636 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_887520/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 = 2133.860924 + 0: The maximum resident set size (KB) = 549544 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_887520/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 = 2127.082224 + 0: The maximum resident set size (KB) = 542244 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! +Tue Mar 26 22:12:01 UTC 2024 +Elapsed time: 01h:58m:49s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 4c5dda01e8..a399e2d764 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 +2df0c04528dab7f66acaaba949e607a1f3951915 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,17 +11,17 @@ 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR) 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) + 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f) 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) @@ -32,10 +32,10 @@ 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f) 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) @@ -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_2712 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:46, 19:22] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 04:57](3076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:46, 20:28] +PASS -- TEST 'cpld_control_gfsv17_intel' [21:15, 13:51](1686 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:56, 15:07](1823 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:38, 07:10](956 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:24, 15:50](1652 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:40, 09:15] +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:16, 21:38](1694 MB) + +PASS -- COMPILE 's2swa_intel' [19:40, 19:16] +PASS -- TEST 'cpld_control_p8_intel' [10:15, 05:37](3089 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:15, 05:37](3088 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:01, 03:18](3147 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:15, 05:35](3124 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:01, 03:21](3172 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:07, 05:31](3089 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:44, 04:35](3395 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 05:34](3102 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:52, 08:51](3636 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:40, 05:57](3615 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [34:35, 09:43](4343 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:43, 06:57](4652 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:46, 05:20](3059 MB) + +PASS -- COMPILE 's2sw_intel' [19:46, 18:38] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:26, 04:11](1678 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:33, 04:15](1721 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:41, 09:13] +PASS -- TEST 'cpld_debug_p8_intel' [10:45, 07:47](3150 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:36, 08:39] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:07, 05:17](1704 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:42, 14:14] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 04:16](1716 MB) + +PASS -- COMPILE 's2s_intel' [14:43, 14:18] +PASS -- TEST 'cpld_control_c48_intel' [09:31, 06:38](2671 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:46, 22:45] +PASS -- TEST 'cpld_control_p8_faster_intel' [11:26, 05:28](3101 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:31, 19:37] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:11, 14:02](1698 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:41, 07:19](1015 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:20, 15:59](1667 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:20, 08:38] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:08, 22:37](1715 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:23, 12:26] +PASS -- TEST 'control_flake_intel' [08:46, 03:27](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:52, 02:04](620 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:57, 02:11](625 MB) +PASS -- TEST 'control_latlon_intel' [08:48, 02:05](621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:58, 02:07](618 MB) +PASS -- TEST 'control_c48_intel' [10:52, 05:13](734 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:44, 05:13](739 MB) +PASS -- TEST 'control_c192_intel' [14:45, 07:52](740 MB) +PASS -- TEST 'control_c384_intel' [17:17, 08:06](1059 MB) +PASS -- TEST 'control_c384gdas_intel' [18:42, 07:14](1203 MB) +PASS -- TEST 'control_stochy_intel' [06:45, 01:27](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:39, 00:52](904 MB) +PASS -- TEST 'control_lndp_intel' [06:47, 01:22](625 MB) +PASS -- TEST 'control_iovr4_intel' [07:55, 02:06](618 MB) +PASS -- TEST 'control_iovr5_intel' [03:37, 02:05](617 MB) +PASS -- TEST 'control_p8_intel' [04:57, 02:27](1599 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:16, 02:29](1592 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 02:27](1605 MB) +PASS -- TEST 'control_restart_p8_intel' [07:45, 01:23](803 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:16, 02:31](1591 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:43, 01:23](801 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:13, 02:33](1593 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:59, 04:21](1592 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:05, 03:17](1658 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:01, 02:32](1602 MB) +PASS -- TEST 'merra2_thompson_intel' [05:57, 02:58](1599 MB) +PASS -- TEST 'regional_control_intel' [06:24, 04:29](632 MB) +PASS -- TEST 'regional_restart_intel' [04:22, 02:28](798 MB) +PASS -- TEST 'regional_decomp_intel' [06:23, 04:41](631 MB) +PASS -- TEST 'regional_noquilt_intel' [11:10, 04:24](1157 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:11, 04:28](631 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:07, 04:29](631 MB) +PASS -- TEST 'regional_wofs_intel' [12:09, 05:36](1601 MB) + +PASS -- COMPILE 'rrfs_intel' [13:20, 11:06] +PASS -- TEST 'rap_control_intel' [11:27, 06:03](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:40, 03:42](1192 MB) +PASS -- TEST 'rap_decomp_intel' [12:24, 06:21](1003 MB) +PASS -- TEST 'rap_restart_intel' [05:21, 03:13](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:20, 06:04](1002 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:33, 06:22](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:21, 04:33](877 MB) +PASS -- TEST 'hrrr_control_intel' [07:14, 03:13](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:09, 03:18](996 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 02:48](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:44, 01:46](829 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:24, 05:58](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:45, 07:20](1954 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:57, 07:08](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [13:15, 10:12] +PASS -- TEST 'control_csawmg_intel' [08:41, 05:52](693 MB) +PASS -- TEST 'control_csawmgt_intel' [08:40, 05:47](696 MB) +PASS -- TEST 'control_ras_intel' [04:38, 02:52](656 MB) + +PASS -- COMPILE 'wam_intel' [13:21, 09:28] +PASS -- TEST 'control_wam_intel' [03:31, 01:55](385 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:21, 12:31] +PASS -- TEST 'control_p8_faster_intel' [05:06, 02:22](1600 MB) +PASS -- TEST 'regional_control_faster_intel' [06:28, 04:17](630 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:26, 08:22] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:46, 02:34](790 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:40, 02:32](795 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:36, 02:57](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:39, 02:32](797 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:36, 03:57](835 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:37, 04:05](837 MB) +PASS -- TEST 'control_ras_debug_intel' [03:43, 02:38](1249 MB) +PASS -- TEST 'control_diag_debug_intel' [04:38, 02:40](852 MB) +PASS -- TEST 'control_debug_p8_intel' [05:25, 02:42](1623 MB) +PASS -- TEST 'regional_debug_intel' [17:36, 15:53](662 MB) +PASS -- TEST 'rap_control_debug_intel' [05:35, 04:37](1180 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:42, 04:31](1177 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:44, 04:41](1181 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:49, 04:38](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:52, 04:38](1249 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:34, 04:50](1259 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:50, 04:45](1180 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:49, 04:53](1180 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:43, 04:47](1181 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:42, 04:37](1180 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:40, 04:34](1177 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:44, 04:39](1178 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:29](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:33](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 05:49](1182 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:35, 04:47](1178 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:11, 07:54](1180 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:24, 05:14] +PASS -- TEST 'control_wam_debug_intel' [05:31, 04:37](420 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:33] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:39, 03:30](1058 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:08, 05:08](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:03, 02:46](881 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:09, 02:54](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:00, 03:53](793 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 01:32](774 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:24, 11:45] +PASS -- TEST 'conus13km_control_intel' [04:37, 01:53](1082 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:34, 00:58](1086 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:34, 01:08](970 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:25, 09:44] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:06, 03:38](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:18, 05:30] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:31, 04:34](1053 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:26](1055 MB) +PASS -- TEST 'conus13km_debug_intel' [16:13, 13:17](1131 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:10, 13:38](814 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:56, 13:22](1199 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 05:23] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:37, 04:36](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [16:22, 15:40] +PASS -- TEST 'hafs_regional_atm_intel' [06:48, 04:33](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:21, 05:07](1067 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 06:27](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:56, 10:59](790 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:51, 12:03](814 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:42, 04:44](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:55, 05:41](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:12, 02:21](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:34, 06:16](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:01, 03:18](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:31, 03:05](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:24, 03:52](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:38, 01:17](427 MB) +PASS -- TEST 'gnv1_nested_intel' [05:18, 03:23](781 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:24, 06:57] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:17, 11:57](607 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:32, 19:27] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 07:08](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:09](687 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:29, 16:34] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:50, 05:22](673 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:27, 13:53] +PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:35](750 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:40, 05:37](736 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:34, 16:11](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:22, 07:38] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:30](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:47, 01:33](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:37, 02:22](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:24](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:45, 02:24](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:31](748 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:47, 02:30](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:41, 02:22](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:29, 05:40](1369 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 05:40](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:28](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:35, 03:54](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:27, 03:56](2016 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:20, 05:02] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:37, 05:03](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:26, 07:39] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:28](749 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:22] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:54, 01:09](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:31, 01:06](449 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:41, 00:44](450 MB) + +PASS -- COMPILE 'atml_intel' [13:16, 12:55] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 06:39](1633 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:08, 06:21](1626 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:29, 03:20](853 MB) + +PASS -- COMPILE 'atmw_intel' [13:21, 12:29] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 01:37](1627 MB) + +PASS -- COMPILE 'atmwm_intel' [13:21, 12:19] +PASS -- TEST 'control_atmwav_intel' [02:59, 01:30](635 MB) + +PASS -- COMPILE 'atmaero_intel' [12:21, 11:07] +PASS -- TEST 'atmaero_control_p8_intel' [06:51, 03:45](2947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:57, 04:20](2995 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:31](3013 MB) + +PASS -- COMPILE 'atmaq_intel' [11:27, 10:45] + +PASS -- COMPILE 'atmaq_debug_intel' [07:18, 06:09] +PASS -- TEST 'regional_atmaq_debug_intel' [25:59, 21:55](4533 MB) SYNOPSIS: -Starting Date/Time: 20240321 10:52:46 -Ending Date/Time: 20240321 14:12:13 -Total Time: 03h:20m:40s +Starting Date/Time: 20240325 17:32:13 +Ending Date/Time: 20240325 19:04:27 +Total Time: 01h:32m:59s Compiles Completed: 39/39 Tests Completed: 175/175 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 3665612fc2..cbc4be40d7 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 +0a6b9489ca89719f3fab9fa759a07c60c4c91f78 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,10 +9,10 @@ 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f) 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) @@ -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/Fernando.Andrade-maldonado/FV3_RT/rt_2507836 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' [13:00, 13:00] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:25, 05:35](3163 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:13, 16:13] +PASS -- TEST 'cpld_control_gfsv17_intel' [17:43, 17:00](1737 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:39, 17:42](1994 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:56, 08:00](1092 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:55, 19:10](1637 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:41, 04:41] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:37, 22:53](1664 MB) + +PASS -- COMPILE 's2swa_intel' [12:59, 12:59] +PASS -- TEST 'cpld_control_p8_intel' [06:39, 05:51](3185 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:42, 05:51](3191 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:24, 03:23](3229 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [06:40, 05:52](3213 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:22, 03:24](3254 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:23, 05:31](3533 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:41, 05:50](3192 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:38, 04:48](3045 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:56, 06:01](3203 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:05, 11:27](3267 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:17, 07:04](3541 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:32, 10:10](4046 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:26, 06:02](4348 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:57, 05:56](3151 MB) + +PASS -- COMPILE 's2sw_intel' [12:17, 12:17] +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:50, 04:58](1716 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:11, 04:21](1758 MB) + +PASS -- COMPILE 's2swa_debug_intel' [04:39, 04:39] +PASS -- TEST 'cpld_debug_p8_intel' [09:23, 08:27](3192 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:21, 04:20] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:57, 10:08](1722 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:27, 11:27] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:19, 04:26](1771 MB) + +PASS -- COMPILE 's2s_intel' [11:44, 11:44] +PASS -- TEST 'cpld_control_c48_intel' [10:06, 09:35](2786 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 18:11] +PASS -- TEST 'cpld_control_p8_faster_intel' [06:17, 05:25](3189 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:35, 15:35] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:24, 17:38](1767 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:03, 08:05](1143 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:26, 19:38](1657 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:22, 04:21] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:58, 25:12](1677 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:21, 11:21] +PASS -- TEST 'control_flake_intel' [03:31, 03:20](686 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:25](631 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:51, 02:34](642 MB) +PASS -- TEST 'control_latlon_intel' [02:46, 02:33](642 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:50, 02:32](641 MB) +PASS -- TEST 'control_c48_intel' [06:40, 06:26](862 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:38, 06:24](859 MB) +PASS -- TEST 'control_c192_intel' [09:41, 09:14](837 MB) +PASS -- TEST 'control_c384_intel' [10:18, 09:11](1278 MB) +PASS -- TEST 'control_c384gdas_intel' [10:17, 08:00](1375 MB) +PASS -- TEST 'control_stochy_intel' [01:52, 01:39](642 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:15, 00:59](481 MB) +PASS -- TEST 'control_lndp_intel' [01:45, 01:33](648 MB) +PASS -- TEST 'control_iovr4_intel' [02:43, 02:28](632 MB) +PASS -- TEST 'control_iovr5_intel' [02:42, 02:28](633 MB) +PASS -- TEST 'control_p8_intel' [03:48, 03:01](1604 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:45, 02:57](1618 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:40, 02:53](1616 MB) +PASS -- TEST 'control_restart_p8_intel' [02:12, 01:36](873 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:34, 02:56](1597 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:13, 01:35](910 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:40, 03:03](1598 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:26, 02:49](1702 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:55, 05:20](1583 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:37, 03:56](1678 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:41, 02:59](1622 MB) +PASS -- TEST 'merra2_thompson_intel' [04:07, 03:28](1627 MB) +PASS -- TEST 'regional_control_intel' [05:37, 05:12](835 MB) +PASS -- TEST 'regional_restart_intel' [03:13, 02:44](1011 MB) +PASS -- TEST 'regional_decomp_intel' [05:59, 05:32](826 MB) +PASS -- TEST 'regional_2threads_intel' [03:44, 03:16](831 MB) +PASS -- TEST 'regional_noquilt_intel' [05:37, 05:10](1338 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:39, 05:12](833 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:41, 05:13](833 MB) +PASS -- TEST 'regional_wofs_intel' [07:14, 06:47](1898 MB) + +PASS -- COMPILE 'rrfs_intel' [10:50, 10:50] +PASS -- TEST 'rap_control_intel' [08:19, 07:45](1091 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:51, 04:07](1276 MB) +PASS -- TEST 'rap_decomp_intel' [08:37, 08:13](1020 MB) +PASS -- TEST 'rap_2threads_intel' [07:53, 07:18](1166 MB) +PASS -- TEST 'rap_restart_intel' [04:35, 04:03](1086 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:14, 07:44](1081 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:34, 08:09](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 05:49](1115 MB) +PASS -- TEST 'hrrr_control_intel' [04:26, 04:00](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:37, 04:14](990 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 03:39](1089 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:42, 02:22](960 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:11, 07:41](1078 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:30, 09:12](1966 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 09:03](2054 MB) + +PASS -- COMPILE 'csawmg_intel' [10:28, 10:28] +PASS -- TEST 'control_csawmg_intel' [06:28, 06:02](734 MB) +PASS -- TEST 'control_csawmgt_intel' [06:22, 05:56](748 MB) +PASS -- TEST 'control_ras_intel' [03:30, 03:18](700 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:56, 03:55] +PASS -- TEST 'control_csawmg_gnu' [08:36, 08:06](535 MB) +PASS -- TEST 'control_csawmgt_gnu' [08:42, 08:15](532 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 10:23] +PASS -- TEST 'control_wam_intel' [02:28, 02:17](618 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:43, 10:42] +PASS -- TEST 'control_p8_faster_intel' [04:00, 03:17](1621 MB) +PASS -- TEST 'regional_control_faster_intel' [05:19, 04:48](830 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:04, 05:03] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:08, 02:52](758 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:56, 02:39](780 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:15, 03:03](786 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:59, 02:45](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:40, 04:10](835 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [04:58, 04:27](805 MB) +PASS -- TEST 'control_ras_debug_intel' [03:06, 02:54](770 MB) +PASS -- TEST 'control_diag_debug_intel' [03:10, 02:50](839 MB) +PASS -- TEST 'control_debug_p8_intel' [03:32, 03:01](1622 MB) +PASS -- TEST 'regional_debug_intel' [18:18, 17:45](794 MB) +PASS -- TEST 'rap_control_debug_intel' [05:11, 04:56](1165 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:54, 04:42](1170 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:02, 04:52](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 05:01](1172 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:08, 04:56](1176 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:14](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:12, 05:01](1172 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:07](1176 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:13, 04:54](1170 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 04:58](1174 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:16, 04:56](1174 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:13, 04:58](1179 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:07](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:09, 04:55](1167 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:05, 05:48](1180 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:09, 04:52](1174 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 08:19](1180 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:49, 02:48] +PASS -- TEST 'control_csawmg_debug_gnu' [02:36, 02:09](508 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [02:43, 02:08](509 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:43, 03:42] +PASS -- TEST 'control_wam_debug_intel' [05:15, 05:03](465 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 10:09] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:56](1151 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 06:25](1036 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 03:41](954 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:30, 06:06](1077 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:29, 03:08](952 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:03, 03:36](921 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:23, 04:51](1018 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:08, 01:50](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:17, 12:16] +PASS -- TEST 'conus13km_control_intel' [02:57, 02:03](1183 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:32, 00:52](1101 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:45, 01:14](1093 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:19, 10:18] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:09](964 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:31, 03:30] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:06, 04:53](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:54, 04:42](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [15:05, 14:28](1180 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:03, 14:22](899 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:35, 07:58](1098 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:32, 14:52](1223 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:37, 03:37] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:09, 04:54](1094 MB) + +PASS -- COMPILE 'hafsw_intel' [11:52, 11:51] +PASS -- TEST 'hafs_regional_atm_intel' [06:02, 05:05](730 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:08, 05:49](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:55, 06:48](819 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:28, 13:28](853 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:24, 15:15](875 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:11, 05:26](483 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:01, 06:45](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 03:30](358 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:47, 07:06](462 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:12, 03:39](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:13, 03:29](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:35, 04:00](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:34, 01:11](384 MB) +PASS -- TEST 'gnv1_nested_intel' [04:39, 04:03](784 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:51, 03:50] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:24, 12:38](536 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:10, 12:09] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:45, 08:57](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:28, 08:37](692 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:19, 12:18] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:28, 06:35](715 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:17, 11:16] +PASS -- TEST 'hafs_regional_docn_intel' [07:13, 06:12](823 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:22, 06:25](799 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:55, 16:17](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:07, 06:06] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:50, 02:42](1137 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:50, 01:40](1091 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:37, 02:30](1002 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:48, 02:39](1022 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:47, 02:39](1002 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:52, 02:44](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:48, 02:41](1131 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:42, 02:34](1009 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:50, 05:48](1053 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:14](1035 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:49, 02:42](1128 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:02, 03:53](2436 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:02, 03:53](2435 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:05, 03:05] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:25, 06:16](1068 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:05, 06:05] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:50, 02:42](1150 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:09, 01:08] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:01, 00:43](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:00, 00:45](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:31](322 MB) + +PASS -- COMPILE 'atml_intel' [11:54, 11:53] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:17, 04:23](1581 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:09, 04:17](1615 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:51, 02:15](877 MB) + +PASS -- COMPILE 'atmw_intel' [11:05, 11:04] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:23, 01:45](1669 MB) + +PASS -- COMPILE 'atmwm_intel' [11:01, 11:00] +PASS -- TEST 'control_atmwav_intel' [02:03, 01:41](669 MB) + +PASS -- COMPILE 'atmaero_intel' [11:18, 11:18] +PASS -- TEST 'atmaero_control_p8_intel' [04:51, 04:02](3012 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:43, 04:53](3064 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:44, 05:12](3101 MB) + +PASS -- COMPILE 'atmaq_intel' [10:21, 10:20] + +PASS -- COMPILE 'atmaq_debug_intel' [03:46, 03:46] +PASS -- TEST 'regional_atmaq_debug_intel' [27:51, 26:14](4435 MB) + +PASS -- COMPILE 'atm_gnu' [03:49, 03:48] +PASS -- TEST 'control_c48_gnu' [10:56, 10:41](751 MB) +PASS -- TEST 'control_stochy_gnu' [03:33, 03:22](493 MB) +PASS -- TEST 'control_ras_gnu' [05:00, 04:48](505 MB) +PASS -- TEST 'control_p8_gnu' [05:21, 04:37](1255 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:12, 04:31](1255 MB) +PASS -- TEST 'control_flake_gnu' [10:43, 10:31](537 MB) + +PASS -- COMPILE 'rrfs_gnu' [03:47, 03:46] +PASS -- TEST 'rap_control_gnu' [11:18, 10:50](847 MB) +PASS -- TEST 'rap_decomp_gnu' [11:06, 10:43](848 MB) +PASS -- TEST 'rap_2threads_gnu' [10:10, 09:41](924 MB) +PASS -- TEST 'rap_restart_gnu' [05:50, 05:23](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:15, 10:43](842 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:30, 11:03](851 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:24, 08:00](573 MB) +PASS -- TEST 'hrrr_control_gnu' [05:50, 05:26](845 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:53, 05:32](827 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:28, 05:01](925 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:57, 05:34](833 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:05, 02:49](561 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:08, 02:52](653 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:51, 10:22](853 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:38, 03:37] +PASS -- TEST 'control_diag_debug_gnu' [01:58, 01:36](534 MB) +PASS -- TEST 'regional_debug_gnu' [11:37, 11:00](547 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:50, 02:34](852 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:48, 02:33](851 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:46, 02:35](852 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:35](854 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:16, 02:52](933 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:13, 04:00](851 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:49, 02:36](849 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:45, 02:32](846 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:33](480 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:49, 01:39](475 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:11, 01:39](1235 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:49, 02:36](855 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:01, 02:48](848 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:41, 04:17](839 MB) + +PASS -- COMPILE 'wam_debug_gnu' [01:53, 01:52] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:47, 03:46] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:47, 09:22](698 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:18, 04:58](706 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:59, 08:39](748 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:56, 04:35](743 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:24, 05:05](707 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:22, 06:57](550 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:44, 02:31](526 MB) +PASS -- TEST 'conus13km_control_gnu' [03:56, 03:11](869 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:21, 05:53](873 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:17, 01:49](565 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:21, 05:20] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:44](738 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:52, 03:51] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:45, 02:33](701 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:40, 02:28](706 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:36, 07:06](875 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 06:57](568 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:01, 07:35](873 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 06:57](941 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:47, 03:46] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:42, 02:30](721 MB) + +PASS -- COMPILE 's2swa_gnu' [14:51, 14:51] + +PASS -- COMPILE 's2s_gnu' [14:28, 14:27] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:30, 07:36](1343 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [02:37, 02:36] + +PASS -- COMPILE 's2sw_pdlib_gnu' [14:25, 14:24] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:57, 22:07](1310 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:21, 02:20] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:32, 12:51](1305 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [13:59, 13:58] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:04](691 MB) SYNOPSIS: -Starting Date/Time: 20240321 17:22:54 -Ending Date/Time: 20240321 19:31:46 -Total Time: 02h:10m:00s +Starting Date/Time: 20240326 15:42:19 +Ending Date/Time: 20240326 17:59:30 +Total Time: 02h:17m:58s Compiles Completed: 55/55 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 7b84273d14..76e32fe4f4 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 +0a6b9489ca89719f3fab9fa759a07c60c4c91f78 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,17 +11,17 @@ 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR) 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) + 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f) 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) @@ -32,10 +32,10 @@ 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f) 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) @@ -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/epic/nandoam/stmp/nandoam/FV3_RT/rt_3737953 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' [13:07, 11:09] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:18, 07:31](1897 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:54] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:26, 13:51](1772 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:48, 14:32](2160 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:40, 06:38](1177 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:06, 16:09](1690 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:40] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:25, 20:22](1726 MB) + +PASS -- COMPILE 's2swa_intel' [11:07, 10:02] +PASS -- TEST 'cpld_control_p8_intel' [10:10, 07:41](2061 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:23, 07:47](2074 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:27, 04:17](1974 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:08, 07:54](1985 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:29, 04:19](1744 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:20, 09:05](2502 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:01, 07:35](2069 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:06, 06:28](1894 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:21, 07:46](2077 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:53, 15:43](2805 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 05:54](2923 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:25, 08:59](3631 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:53, 06:02](3619 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 04:58](2028 MB) + +PASS -- COMPILE 's2sw_intel' [12:07, 10:38] +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 07:03](1772 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:11, 04:01](1820 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:33] +PASS -- TEST 'cpld_debug_p8_intel' [09:14, 06:53](2040 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:30] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:07, 04:46](1797 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:06, 07:59] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:09, 03:58](1821 MB) + +PASS -- COMPILE 's2s_intel' [09:06, 07:52] +PASS -- TEST 'cpld_control_c48_intel' [09:48, 07:11](2843 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:06, 11:40] +PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 07:24](2095 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:07, 16:42] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:10, 14:08](1811 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:14, 06:45](1288 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:07, 15:48](1737 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:17] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:08, 22:02](1778 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:06, 09:19] +PASS -- TEST 'control_flake_intel' [04:18, 02:57](713 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:05](660 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:22](665 MB) +PASS -- TEST 'control_latlon_intel' [04:18, 02:10](672 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:23, 02:09](660 MB) +PASS -- TEST 'control_c48_intel' [07:27, 05:50](858 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:46](861 MB) +PASS -- TEST 'control_c192_intel' [09:32, 07:54](956 MB) +PASS -- TEST 'control_c384_intel' [11:08, 08:25](1444 MB) +PASS -- TEST 'control_c384gdas_intel' [11:17, 07:18](1509 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:29](681 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:25, 00:59](545 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:25](666 MB) +PASS -- TEST 'control_iovr4_intel' [04:19, 02:12](661 MB) +PASS -- TEST 'control_iovr5_intel' [04:18, 02:08](663 MB) +PASS -- TEST 'control_p8_intel' [05:03, 02:36](1644 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:07, 02:36](1633 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:10, 02:28](1649 MB) +PASS -- TEST 'control_restart_p8_intel' [03:59, 01:29](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:54, 02:32](1634 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:06, 01:27](971 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:49, 02:39](1623 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:52, 02:30](1728 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:45, 04:34](1646 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:13, 03:33](1721 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:05, 02:39](1658 MB) +PASS -- TEST 'merra2_thompson_intel' [05:12, 03:02](1657 MB) +PASS -- TEST 'regional_control_intel' [06:37, 04:45](956 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 02:34](1108 MB) +PASS -- TEST 'regional_decomp_intel' [06:29, 05:00](947 MB) +PASS -- TEST 'regional_2threads_intel' [05:32, 03:06](914 MB) +PASS -- TEST 'regional_noquilt_intel' [06:32, 04:29](1489 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:33](961 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:32, 04:36](966 MB) +PASS -- TEST 'regional_wofs_intel' [07:30, 05:38](2075 MB) + +PASS -- COMPILE 'rrfs_intel' [09:06, 07:31] +PASS -- TEST 'rap_control_intel' [09:11, 06:39](1182 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 03:32](1409 MB) +PASS -- TEST 'rap_decomp_intel' [08:39, 06:55](1136 MB) +PASS -- TEST 'rap_2threads_intel' [08:40, 06:26](1373 MB) +PASS -- TEST 'rap_restart_intel' [06:12, 03:23](1152 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:58, 06:34](1192 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 06:58](1142 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:02, 05:02](1187 MB) +PASS -- TEST 'hrrr_control_intel' [05:48, 03:26](1093 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 03:24](1044 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:39, 03:11](1120 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:50](1027 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:59, 06:28](1178 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 07:44](2014 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:24, 07:35](2171 MB) + +PASS -- COMPILE 'csawmg_intel' [09:06, 07:21] +PASS -- TEST 'control_csawmg_intel' [07:29, 05:19](799 MB) +PASS -- TEST 'control_csawmgt_intel' [07:29, 05:16](825 MB) +PASS -- TEST 'control_ras_intel' [04:17, 02:50](821 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:06, 04:12] +PASS -- TEST 'control_csawmg_gnu' [08:33, 06:31](812 MB) +PASS -- TEST 'control_csawmgt_gnu' [08:27, 06:25](812 MB) + +PASS -- COMPILE 'wam_intel' [08:06, 06:50] +PASS -- TEST 'control_wam_intel' [03:22, 01:51](793 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 10:05] +PASS -- TEST 'control_p8_faster_intel' [05:11, 02:16](1629 MB) +PASS -- TEST 'regional_control_faster_intel' [06:31, 04:32](957 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:52] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:21, 02:13](821 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:14](827 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:27](831 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:17](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:30, 03:29](882 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:30, 03:26](875 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:20](840 MB) +PASS -- TEST 'control_diag_debug_intel' [04:24, 02:18](894 MB) +PASS -- TEST 'control_debug_p8_intel' [04:36, 02:22](1659 MB) +PASS -- TEST 'regional_debug_intel' [16:32, 14:07](897 MB) +PASS -- TEST 'rap_control_debug_intel' [05:17, 03:58](1228 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:56](1225 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:59](1219 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 04:02](1230 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 04:01](1213 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:27, 04:13](1302 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:07](1223 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 04:06](1218 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:00](1222 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 03:58](1220 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:18, 03:57](1218 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:19, 03:57](1222 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:18, 06:30](1219 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 03:53](1213 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 05:13](1221 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:04](1214 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:05, 06:51](1220 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:21] +PASS -- TEST 'control_csawmg_debug_gnu' [03:32, 01:45](790 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [03:31, 01:44](789 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:06, 02:38] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:55] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 03:26](1274 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:57, 05:24](1134 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 02:54](1025 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:48, 05:04](1283 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:47, 02:39](1037 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:44, 03:01](994 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:57, 04:02](1105 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:34](958 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:07, 09:31] +PASS -- TEST 'conus13km_control_intel' [03:46, 01:45](1311 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:28, 00:43](1199 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:36, 01:10](1145 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 07:22] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:41](1068 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:59] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:51](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 03:58](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [13:37, 11:30](1332 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:37, 12:16](977 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:34, 06:38](1238 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:34, 11:31](1413 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:00] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:03](1153 MB) + +PASS -- COMPILE 'hafsw_intel' [12:07, 10:43] +PASS -- TEST 'hafs_regional_atm_intel' [08:08, 05:27](870 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:03](1272 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:19](938 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:04, 14:32](996 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:13, 14:46](1000 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 05:39](606 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:27, 07:18](620 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:00](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 07:55](543 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:49, 04:00](618 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:49](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:58](675 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:30](449 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:05, 03:09] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:46, 11:33](634 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:06, 11:00] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:02, 16:45](729 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:00, 16:48](811 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:21] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:02, 09:47](789 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:06, 09:52] +PASS -- TEST 'hafs_regional_docn_intel' [08:03, 05:22](969 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:04, 05:30](937 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:47, 16:26](1342 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:06, 06:03] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:11](1127 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:17](1099 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:11, 02:06](1012 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:08](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:09](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:11, 02:08](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:10](1143 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:11, 02:03](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:00, 04:57](1153 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:54, 04:50](1146 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:09](1144 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:00](2381 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:12, 03:01](2433 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:40] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:11, 05:11](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:08](1141 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:51] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:51](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:53](559 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:33](559 MB) + +PASS -- COMPILE 'atml_intel' [10:06, 08:17] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:23, 06:04](1627 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:20, 06:05](1631 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 03:07](956 MB) + +PASS -- COMPILE 'atmw_intel' [11:06, 09:06] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:03, 01:34](1692 MB) + +PASS -- COMPILE 'atmwm_intel' [11:06, 09:44] +PASS -- TEST 'control_atmwav_intel' [03:52, 01:33](697 MB) + +PASS -- COMPILE 'atmaero_intel' [09:06, 07:28] +PASS -- TEST 'atmaero_control_p8_intel' [06:01, 03:40](1789 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 04:25](1795 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 04:31](1834 MB) + +PASS -- COMPILE 'atmaq_intel' [08:06, 07:00] + +PASS -- COMPILE 'atmaq_debug_intel' [04:06, 02:42] +PASS -- TEST 'regional_atmaq_debug_intel' [19:37, 16:56](4584 MB) + +PASS -- COMPILE 'atm_gnu' [06:07, 04:43] +PASS -- TEST 'control_c48_gnu' [11:28, 09:52](882 MB) +PASS -- TEST 'control_stochy_gnu' [04:18, 02:18](731 MB) +PASS -- TEST 'control_ras_gnu' [05:15, 03:47](730 MB) +PASS -- TEST 'control_p8_gnu' [05:58, 03:39](1519 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 03:35](1514 MB) +PASS -- TEST 'control_flake_gnu' [06:19, 04:24](811 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:06, 04:39] +PASS -- TEST 'rap_control_gnu' [09:50, 07:49](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [09:38, 07:52](1084 MB) +PASS -- TEST 'rap_2threads_gnu' [09:35, 07:19](1138 MB) +PASS -- TEST 'rap_restart_gnu' [05:46, 03:59](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:06, 07:46](1089 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:38, 07:48](1087 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:00, 05:47](884 MB) +PASS -- TEST 'hrrr_control_gnu' [05:49, 04:04](1069 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:35, 04:06](1140 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:38, 03:45](1040 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:34, 04:04](1073 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:07](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:08](935 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 07:44](1079 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:06, 06:04] +PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:14](774 MB) +PASS -- TEST 'regional_debug_gnu' [08:31, 06:20](926 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:20, 01:59](1099 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:57](1091 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 02:00](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 01:59](1097 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:29, 02:11](1269 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:12](1096 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:27, 02:02](1100 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:26, 02:01](1096 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:14](726 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:18](725 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:17](1501 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:21, 01:59](1103 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:10](1101 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:51, 03:18](1104 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:06, 03:23] +PASS -- TEST 'control_wam_debug_gnu' [03:23, 01:55](499 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:06, 05:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:34, 07:14](964 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:57, 03:49](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:51, 06:44](970 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:40, 03:32](895 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:44, 03:52](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:41, 05:37](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:20, 02:01](856 MB) +PASS -- TEST 'conus13km_control_gnu' [04:48, 02:32](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:30, 01:04](1173 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:33, 01:29](928 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:07, 12:12] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 04:23](988 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:06, 11:22] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:56](978 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 01:59](972 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:37, 05:31](1278 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:36, 05:49](972 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:33, 03:17](1190 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:34, 05:31](1354 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:06, 11:46] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:00](1000 MB) + +PASS -- COMPILE 's2swa_gnu' [18:07, 16:16] + +PASS -- COMPILE 's2s_gnu' [19:09, 17:18] + +PASS -- COMPILE 's2swa_debug_gnu' [14:07, 12:08] + +PASS -- COMPILE 's2sw_pdlib_gnu' [19:07, 17:36] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:06, 12:06] + +PASS -- COMPILE 'datm_cdeps_gnu' [19:07, 17:24] SYNOPSIS: -Starting Date/Time: 20240321 11:53:01 -Ending Date/Time: 20240321 13:35:26 -Total Time: 01h:43m:01s +Starting Date/Time: 20240326 10:44:23 +Ending Date/Time: 20240326 12:06:35 +Total Time: 01h:23m:31s 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..ad7c0590ad 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 +0a6b9489ca89719f3fab9fa759a07c60c4c91f78 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR) 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) + 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f) 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) + 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f) 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) + 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/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1851415 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 's2swa_32bit_intel' [39:23, 38:04] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:53, 06:52](1795 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:28, 47:48] +PASS -- TEST 'cpld_control_gfsv17_intel' [23:57, 20:53](1666 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:23, 21:21](1885 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:26, 10:15](991 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:31, 23:46](1632 MB) + +PASS -- COMPILE 's2swa_intel' [40:23, 38:36] +PASS -- TEST 'cpld_control_p8_intel' [10:32, 07:27](1824 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:58, 07:25](1826 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:49, 04:26](1714 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:32, 07:29](1847 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:49, 04:32](1727 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:24, 07:16](2267 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:26, 07:31](1825 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:50, 06:16](1784 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:54, 07:30](1823 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 07:12](1793 MB) + +PASS -- COMPILE 's2sw_intel' [37:22, 35:51] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:26, 05:53](1660 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:40, 05:44](1718 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:07] +PASS -- TEST 'cpld_debug_p8_intel' [13:42, 10:29](1847 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:09, 04:38] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:26, 07:08](1673 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [34:20, 32:32] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:03, 05:37](1711 MB) + +PASS -- COMPILE 's2s_intel' [34:22, 32:18] +PASS -- TEST 'cpld_control_c48_intel' [15:13, 12:42](2803 MB) + +PASS -- COMPILE 's2swa_faster_intel' [33:53, 32:47] +PASS -- TEST 'cpld_control_p8_faster_intel' [09:55, 07:07](1832 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [39:23, 38:06] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:35, 19:03](1686 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:47, 10:26](1034 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:44, 24:00](1656 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 05:05] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:43, 31:50](1689 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [36:23, 35:01] +PASS -- TEST 'control_flake_intel' [06:28, 04:26](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:16](597 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:36, 03:42](600 MB) +PASS -- TEST 'control_latlon_intel' [05:28, 03:21](602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:22](596 MB) +PASS -- TEST 'control_c48_intel' [11:38, 10:04](844 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:43, 10:04](847 MB) +PASS -- TEST 'control_c192_intel' [14:48, 12:21](724 MB) +PASS -- TEST 'control_c384_intel' [18:54, 15:44](899 MB) +PASS -- TEST 'control_c384gdas_intel' [18:35, 13:29](1020 MB) +PASS -- TEST 'control_stochy_intel' [04:29, 02:11](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:18](438 MB) +PASS -- TEST 'control_lndp_intel' [04:29, 02:06](600 MB) +PASS -- TEST 'control_iovr4_intel' [05:30, 03:17](602 MB) +PASS -- TEST 'control_iovr5_intel' [05:31, 03:20](595 MB) +PASS -- TEST 'control_p8_intel' [06:32, 03:57](1575 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:42, 03:56](1576 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:50, 03:48](1574 MB) +PASS -- TEST 'control_restart_p8_intel' [05:05, 02:07](819 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:38, 03:52](1568 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 02:03](837 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:33, 04:03](1565 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:38, 03:41](1661 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:17, 07:00](1574 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:03](1644 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:49, 03:56](1578 MB) +PASS -- TEST 'merra2_thompson_intel' [08:11, 04:30](1592 MB) +PASS -- TEST 'regional_control_intel' [09:06, 07:00](757 MB) +PASS -- TEST 'regional_restart_intel' [05:44, 03:47](931 MB) +PASS -- TEST 'regional_decomp_intel' [09:58, 07:25](755 MB) +PASS -- TEST 'regional_2threads_intel' [06:42, 04:14](759 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:48, 06:55](760 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 06:52](761 MB) + +PASS -- COMPILE 'rrfs_intel' [34:23, 33:07] +PASS -- TEST 'rap_control_intel' [12:10, 10:05](996 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:28](1214 MB) +PASS -- TEST 'rap_decomp_intel' [12:56, 10:29](979 MB) +PASS -- TEST 'rap_2threads_intel' [12:08, 09:28](1092 MB) +PASS -- TEST 'rap_restart_intel' [08:28, 05:11](990 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:26, 10:01](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:57, 10:35](980 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:19, 07:32](997 MB) +PASS -- TEST 'hrrr_control_intel' [07:54, 05:13](995 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:21](985 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:20, 04:45](1049 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:47](917 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:31, 09:54](994 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:16](1947 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:33, 11:59](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [33:20, 31:26] +PASS -- TEST 'control_csawmg_intel' [09:49, 08:00](697 MB) +PASS -- TEST 'control_csawmgt_intel' [09:49, 07:53](692 MB) +PASS -- TEST 'control_ras_intel' [06:24, 04:23](660 MB) + +PASS -- COMPILE 'wam_intel' [31:17, 29:37] +PASS -- TEST 'control_wam_intel' [04:22, 02:46](500 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [33:20, 31:46] +PASS -- TEST 'control_p8_faster_intel' [06:50, 03:35](1582 MB) +PASS -- TEST 'regional_control_faster_intel' [08:54, 06:24](762 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 -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 03:18](755 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:22](761 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:43](763 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:23, 03:20](768 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:43, 05:14](806 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [07:43, 05:09](808 MB) +PASS -- TEST 'control_ras_debug_intel' [05:22, 03:23](770 MB) +PASS -- TEST 'control_diag_debug_intel' [05:34, 03:27](819 MB) +PASS -- TEST 'control_debug_p8_intel' [05:46, 03:33](1595 MB) +PASS -- TEST 'regional_debug_intel' [23:51, 21:38](780 MB) +PASS -- TEST 'rap_control_debug_intel' [07:24, 06:07](1156 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:30, 05:53](1145 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 05:57](1150 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 06:01](1150 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:59](1148 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:19](1234 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:08](1152 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:08](1149 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:04](1147 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 06:01](1150 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:25, 05:54](1148 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:00](1147 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:29, 09:48](1152 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 05:56](1146 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:26, 07:17](1149 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:01](1149 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:35, 10:24](1158 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:07, 03:56] +PASS -- TEST 'control_wam_debug_intel' [08:22, 06:08](438 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:16, 30:00] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:09](1077 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 08:15](899 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:04, 04:22](868 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:21, 07:49](943 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 04:03](913 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 04:36](854 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:09, 06:09](896 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:20](856 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 42:37] +PASS -- TEST 'conus13km_control_intel' [06:02, 02:54](1103 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:27](1058 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:39](1028 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:17, 30:37] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:54, 05:26](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:58] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:29, 05:55](1031 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:53](1030 MB) +PASS -- TEST 'conus13km_debug_intel' [21:04, 18:26](1138 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:04, 18:35](881 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:40](1082 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:25](1202 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:58] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:34, 06:03](1073 MB) + +PASS -- COMPILE 'hafsw_intel' [36:22, 34:45] +PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:56](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:17](1089 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:45, 09:14](767 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:27, 16:50](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:54, 18:32](821 MB) +PASS -- TEST 'gnv1_nested_intel' [08:25, 05:40](773 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:22, 31:33] +PASS -- TEST 'hafs_regional_docn_intel' [11:24, 08:33](763 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:29, 08:38](755 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:09, 08:06] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:17, 03:36](1048 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:18, 02:12](1032 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:17, 03:31](922 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:18, 03:34](927 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 03:33](921 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:36](1044 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 03:48](1063 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 03:31](941 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:08, 07:37](889 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:08, 07:45](839 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:14, 03:36](1060 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:18, 05:08](2393 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 05:02](2396 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:07, 03:00] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 07:58](1013 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 08:00] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:39](1077 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 01:46] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 01:33](225 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:16](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:48](251 MB) + +PASS -- COMPILE 'atml_intel' [36:21, 34:06] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:42, 08:05](1596 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:39, 08:03](1596 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:51, 04:17](866 MB) + +PASS -- COMPILE 'atmw_intel' [33:18, 32:05] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:38, 02:16](1611 MB) + +PASS -- COMPILE 'atmwm_intel' [32:21, 30:57] +PASS -- TEST 'control_atmwav_intel' [05:08, 02:12](609 MB) + +PASS -- COMPILE 'atmaero_intel' [32:18, 30:18] +PASS -- TEST 'atmaero_control_p8_intel' [08:33, 05:10](1703 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:20](1735 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:41](1736 MB) SYNOPSIS: -Starting Date/Time: 20240319 13:16:22 -Ending Date/Time: 20240319 16:46:11 -Total Time: 03h:30m:34s +Starting Date/Time: 20240326 15:42:51 +Ending Date/Time: 20240326 19:11:37 +Total Time: 03h:29m:25s Compiles Completed: 33/33 Tests Completed: 161/161 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index f9aeedb7b4..b4183dfa8b 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 +0a6b9489ca89719f3fab9fa759a07c60c4c91f78 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,17 +11,17 @@ 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR) 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) + 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f) 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) @@ -32,10 +32,10 @@ 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f) 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) @@ -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/epic/nandoam/stmp/nandoam/FV3_RT/rt_34792 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 -- 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 -- 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_faster_intel' [09:06, 07:45] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:40](1122 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 '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 'atmw_intel' [14:08, 12:21] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 01:46](1667 MB) - -PASS -- COMPILE 'atmwm_intel' [13:07, 11:42] -PASS -- TEST 'control_atmwav_intel' [04:11, 01:39](676 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 'atmaq_intel' [12:06, 10:11] - -PASS -- COMPILE 'atmaq_debug_intel' [06:06, 03:19] -PASS -- TEST 'regional_atmaq_debug_intel' [23:42, 20:56](4568 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:07, 15:34] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:38, 05:11](3171 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:08, 20:52] +PASS -- TEST 'cpld_control_gfsv17_intel' [20:05, 16:27](1743 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:02, 17:23](2027 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:59, 08:10](1112 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:57, 18:29](1651 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 05:16] +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:09, 23:06](1676 MB) + +PASS -- COMPILE 's2swa_intel' [18:07, 15:09] +PASS -- TEST 'cpld_control_p8_intel' [12:39, 05:49](3150 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:54, 05:46](3211 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:45, 03:22](3207 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:39, 05:49](3233 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:45, 03:29](3271 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:39, 06:13](3548 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:39, 05:54](3205 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:46, 04:47](3071 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:54, 05:42](3210 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:14, 09:55](3342 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:22, 06:12](3625 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:09, 10:59](4111 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:21, 06:56](4373 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:43, 05:25](3172 MB) + +PASS -- COMPILE 's2sw_intel' [17:07, 14:24] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:12, 04:27](1744 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:35, 04:19](1776 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:07, 07:29] +PASS -- TEST 'cpld_debug_p8_intel' [11:31, 08:41](3244 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:07, 05:50] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:06, 06:01](1747 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:07, 13:40] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:38, 04:26](1780 MB) + +PASS -- COMPILE 's2s_intel' [17:07, 14:04] +PASS -- TEST 'cpld_control_c48_intel' [10:59, 08:02](2829 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:13, 19:40] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:47, 05:22](3211 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:14, 20:31] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:22, 16:37](1769 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:18, 08:07](1173 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:12, 18:27](1680 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:29] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:17, 24:28](1710 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:07, 14:25] +PASS -- TEST 'control_flake_intel' [05:18, 03:31](695 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:20, 02:27](655 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:31](655 MB) +PASS -- TEST 'control_latlon_intel' [04:17, 02:30](649 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:27](648 MB) +PASS -- TEST 'control_c48_intel' [07:27, 05:55](877 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:52](872 MB) +PASS -- TEST 'control_c192_intel' [11:35, 09:09](857 MB) +PASS -- TEST 'control_c384_intel' [13:38, 10:09](1246 MB) +PASS -- TEST 'control_c384gdas_intel' [12:54, 08:55](1357 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:40](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:22, 00:59](503 MB) +PASS -- TEST 'control_lndp_intel' [03:19, 01:36](653 MB) +PASS -- TEST 'control_iovr4_intel' [04:20, 02:29](616 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:27](655 MB) +PASS -- TEST 'control_p8_intel' [05:14, 03:01](1625 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:16, 02:58](1637 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 02:51](1629 MB) +PASS -- TEST 'control_restart_p8_intel' [04:18, 01:39](896 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:08, 02:54](1619 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 01:38](928 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:18, 03:04](1623 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:17, 03:05](1722 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:10](1629 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 03:54](1699 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:37, 02:54](1632 MB) +PASS -- TEST 'merra2_thompson_intel' [06:48, 03:28](1610 MB) +PASS -- TEST 'regional_control_intel' [07:45, 05:07](858 MB) +PASS -- TEST 'regional_restart_intel' [04:40, 02:51](1023 MB) +PASS -- TEST 'regional_decomp_intel' [07:42, 05:30](851 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 03:41](846 MB) +PASS -- TEST 'regional_noquilt_intel' [06:40, 05:02](1368 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:03](853 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:35, 05:03](858 MB) +PASS -- TEST 'regional_wofs_intel' [11:34, 06:38](1919 MB) + +PASS -- COMPILE 'rrfs_intel' [13:07, 12:01] +PASS -- TEST 'rap_control_intel' [10:39, 07:44](1102 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:55, 04:39](1272 MB) +PASS -- TEST 'rap_decomp_intel' [11:00, 08:05](1031 MB) +PASS -- TEST 'rap_2threads_intel' [11:24, 07:51](1185 MB) +PASS -- TEST 'rap_restart_intel' [07:20, 04:05](1104 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:29, 07:44](1108 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:09, 08:08](1025 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:19, 05:48](1134 MB) +PASS -- TEST 'hrrr_control_intel' [07:00, 04:01](1044 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:10](1024 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:24, 03:20](1105 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:20, 02:11](999 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:19, 07:40](1101 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:10](2001 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:03](2075 MB) + +PASS -- COMPILE 'csawmg_intel' [13:08, 11:34] +PASS -- TEST 'control_csawmg_intel' [07:41, 06:01](747 MB) +PASS -- TEST 'control_csawmgt_intel' [07:40, 05:58](749 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:21](742 MB) + +PASS -- COMPILE 'wam_intel' [12:08, 10:59] +PASS -- TEST 'control_wam_intel' [04:19, 02:07](657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:09, 17:36] +PASS -- TEST 'control_p8_faster_intel' [05:34, 02:45](1601 MB) +PASS -- TEST 'regional_control_faster_intel' [06:44, 04:39](853 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:03] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:24, 02:41](812 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:29, 02:42](808 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:07](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:46](816 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:47, 04:10](831 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [08:46, 04:06](853 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:52](823 MB) +PASS -- TEST 'control_diag_debug_intel' [07:29, 02:51](870 MB) +PASS -- TEST 'control_debug_p8_intel' [07:51, 02:54](1648 MB) +PASS -- TEST 'regional_debug_intel' [23:51, 18:45](845 MB) +PASS -- TEST 'rap_control_debug_intel' [09:25, 04:48](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:23, 04:44](1192 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:24, 05:02](1199 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:22, 04:51](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:04](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:21](1281 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:00](1201 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 04:52](1198 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:27, 05:05](1186 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 04:57](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:49](1207 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:51](1196 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:55](1207 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:51](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 05:47](1200 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:22, 04:52](1193 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:33, 08:25](1203 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:08, 03:30] +PASS -- TEST 'control_wam_debug_intel' [07:18, 05:02](516 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:27] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:56, 04:27](1138 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:23, 06:28](1046 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:22](986 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:52, 06:42](1088 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:05, 02:56](963 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:59, 03:38](925 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:12, 05:00](1038 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:52](932 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:06, 13:08] +PASS -- TEST 'conus13km_control_intel' [04:53, 02:08](1200 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:00](1123 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:18](1108 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:07, 11:00] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:14](1010 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:30] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 04:55](1076 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:43](1074 MB) +PASS -- TEST 'conus13km_debug_intel' [16:52, 14:34](1232 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:08](925 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:40, 08:29](1151 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:39](1289 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:06, 03:46] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1129 MB) + +PASS -- COMPILE 'hafsw_intel' [15:07, 13:26] +PASS -- TEST 'hafs_regional_atm_intel' [09:08, 05:41](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:23, 06:03](1122 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:09](835 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:12, 12:54](864 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:33, 14:37](882 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 06:08](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 07:34](518 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:45, 03:07](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:26, 08:02](477 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:41, 04:15](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:49, 04:02](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:51, 05:22](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:24, 01:30](402 MB) +PASS -- TEST 'gnv1_nested_intel' [08:56, 04:40](801 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:55] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:13](574 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:23] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 09:28](673 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:01, 09:43](708 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:42] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:01, 07:12](724 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:06, 12:26] +PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:19](825 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:15, 06:29](811 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:54, 16:07](1215 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:06, 07:32] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:15, 02:37](1133 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:41](1083 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:34](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:40](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:39](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:36](1136 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:39](1134 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:36](1011 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 05:55](1057 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:06, 06:03](1034 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:39](1134 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:32](2439 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:40](2438 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:08] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:22](1059 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:34](1136 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:15] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:50](251 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:49](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:32](320 MB) + +PASS -- COMPILE 'atml_intel' [14:08, 12:55] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:33, 04:21](1595 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 04:18](1599 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:23](896 MB) + +PASS -- COMPILE 'atmw_intel' [15:08, 12:44] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 01:48](1672 MB) + +PASS -- COMPILE 'atmwm_intel' [14:06, 11:48] +PASS -- TEST 'control_atmwav_intel' [04:03, 01:42](673 MB) + +PASS -- COMPILE 'atmaero_intel' [14:07, 11:52] +PASS -- TEST 'atmaero_control_p8_intel' [06:18, 03:57](3033 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 04:47](3100 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:02, 05:03](3106 MB) + +PASS -- COMPILE 'atmaq_intel' [13:08, 11:44] + +PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:11] +PASS -- TEST 'regional_atmaq_debug_intel' [24:47, 20:47](4585 MB) SYNOPSIS: -Starting Date/Time: 20240321 11:53:32 -Ending Date/Time: 20240321 13:32:01 -Total Time: 01h:39m:27s +Starting Date/Time: 20240326 10:43:43 +Ending Date/Time: 20240326 12:20:21 +Total Time: 01h:37m:23s 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..b05a8b7d07 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 +0a6b9489ca89719f3fab9fa759a07c60c4c91f78 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/develop-74-gbc6e0e3) 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) + 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5186-g7fa55935) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10031-gdc248836f) 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) + 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) + bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/develop-74-gbc6e0e3) 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) + dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10031-gdc248836f) 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) + 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_147708 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' [15:47, 15:28] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:02, 01:24](2972 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:06, 23:12] +PASS -- TEST 'cpld_control_gfsv17_intel' [02:44, 02:26](1590 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:18, 02:06](1711 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [44:06, 01:29](845 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:45, 01:34](1569 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:52, 16:53] +PASS -- TEST 'cpld_debug_gfsv17_intel' [08:58, 01:23](1602 MB) + +PASS -- COMPILE 's2swa_intel' [26:11, 25:50] +PASS -- TEST 'cpld_control_p8_intel' [00:24, 01:38](3003 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [00:24, 01:36](3003 MB) +PASS -- TEST 'cpld_restart_p8_intel' [51:26, 01:43](3063 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [00:24, 01:30](3030 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [51:26, 01:42](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [59:28, 01:46](3314 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [57:57, 02:04](2999 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [57:53, 01:43](2927 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:49, 02:23](3004 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [57:55, 04:05](3952 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:52, 03:37](4252 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [57:44, 02:25](2969 MB) + +PASS -- COMPILE 's2sw_intel' [12:37, 11:58] +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:12, 00:59](1582 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:12, 01:04](1637 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:36, 10:07] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:13, 01:04](1636 MB) + +PASS -- COMPILE 's2s_intel' [44:48, 43:53] +PASS -- TEST 'cpld_control_c48_intel' [41:37, 00:48](2657 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:51, 16:25] +PASS -- TEST 'cpld_control_p8_faster_intel' [09:58, 01:47](3004 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:47, 15:03] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:02, 01:27](1603 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [53:24, 00:52](901 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [53:15, 01:07](1572 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:26, 04:13] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:24, 01:28](1620 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [19:53, 19:30] +PASS -- TEST 'control_flake_intel' [01:29, 00:31](571 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [01:29, 00:54](523 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:29, 00:55](527 MB) +PASS -- TEST 'control_latlon_intel' [01:29, 00:50](523 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:29, 00:55](525 MB) +PASS -- TEST 'control_c48_intel' [01:28, 01:00](714 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [01:28, 00:58](718 MB) +PASS -- TEST 'control_c192_intel' [01:29, 01:39](638 MB) +PASS -- TEST 'control_c384_intel' [01:33, 03:25](953 MB) +PASS -- TEST 'control_c384gdas_intel' [01:24, 04:28](1092 MB) +PASS -- TEST 'control_stochy_intel' [57:00, 00:34](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [54:20, 00:54](334 MB) +PASS -- TEST 'control_lndp_intel' [56:58, 00:39](526 MB) +PASS -- TEST 'control_iovr4_intel' [56:57, 00:54](526 MB) +PASS -- TEST 'control_iovr5_intel' [56:56, 00:56](523 MB) +PASS -- TEST 'control_p8_intel' [56:52, 01:53](1499 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [56:51, 01:58](1508 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [56:01, 02:02](1500 MB) +PASS -- TEST 'control_restart_p8_intel' [51:15, 02:08](688 MB) +PASS -- TEST 'control_noqr_p8_intel' [55:59, 01:45](1494 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [50:34, 01:02](699 MB) +PASS -- TEST 'control_decomp_p8_intel' [55:50, 01:39](1503 MB) +PASS -- TEST 'control_2threads_p8_intel' [54:35, 01:07](1587 MB) +PASS -- TEST 'control_p8_lndp_intel' [54:34, 01:39](1509 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [54:33, 02:21](1559 MB) +PASS -- TEST 'control_p8_mynn_intel' [54:32, 02:18](1514 MB) +PASS -- TEST 'merra2_thompson_intel' [54:19, 01:45](1512 MB) +PASS -- TEST 'regional_control_intel' [54:08, 00:27](610 MB) +PASS -- TEST 'regional_restart_intel' [48:11, 00:25](776 MB) +PASS -- TEST 'regional_decomp_intel' [53:13, 01:05](606 MB) +PASS -- TEST 'regional_2threads_intel' [51:46, 01:01](665 MB) +PASS -- TEST 'regional_noquilt_intel' [51:22, 00:23](1145 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [51:12, 00:26](609 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [51:11, 00:23](608 MB) +PASS -- TEST 'regional_wofs_intel' [50:33, 01:03](1576 MB) + +PASS -- COMPILE 'rrfs_intel' [10:31, 10:05] +PASS -- TEST 'rap_control_intel' [05:41, 01:24](921 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:42, 01:23](1089 MB) +PASS -- TEST 'rap_decomp_intel' [05:41, 02:06](919 MB) +PASS -- TEST 'rap_2threads_intel' [05:41, 02:02](1009 MB) +PASS -- TEST 'rap_restart_intel' [50:19, 01:15](788 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:41, 01:25](914 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:41, 02:07](912 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [50:13, 01:43](789 MB) +PASS -- TEST 'hrrr_control_intel' [05:41, 01:17](913 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:41, 01:12](910 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:42, 01:42](993 MB) +PASS -- TEST 'hrrr_control_restart_intel' [50:08, 01:00](744 MB) +PASS -- TEST 'rrfs_v1beta_intel' [05:41, 01:29](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [05:41, 01:12](1875 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [05:41, 00:31](1861 MB) + +PASS -- COMPILE 'csawmg_intel' [11:39, 10:50] +PASS -- TEST 'control_csawmg_intel' [02:33, 00:42](598 MB) +PASS -- TEST 'control_csawmgt_intel' [02:33, 00:43](598 MB) +PASS -- TEST 'control_ras_intel' [02:33, 01:02](563 MB) + +PASS -- COMPILE 'wam_intel' [17:50, 17:29] +PASS -- TEST 'control_wam_intel' [50:07, 00:50](271 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:41, 13:14] +PASS -- TEST 'control_p8_faster_intel' [48:51, 02:09](1505 MB) +PASS -- TEST 'regional_control_faster_intel' [48:35, 00:28](609 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:54, 16:40] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [48:31, 01:11](689 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [48:21, 01:21](692 MB) +PASS -- TEST 'control_stochy_debug_intel' [48:05, 00:56](691 MB) +PASS -- TEST 'control_lndp_debug_intel' [47:32, 01:07](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [47:12, 00:37](733 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [47:06, 00:42](733 MB) +PASS -- TEST 'control_ras_debug_intel' [46:55, 01:09](706 MB) +PASS -- TEST 'control_diag_debug_intel' [46:51, 01:22](745 MB) +PASS -- TEST 'control_debug_p8_intel' [46:35, 01:02](1517 MB) +PASS -- TEST 'regional_debug_intel' [46:34, 00:09](630 MB) +PASS -- TEST 'rap_control_debug_intel' [46:29, 00:58](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [46:27, 01:02](1069 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [46:13, 00:59](1077 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [45:35, 00:56](1073 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [45:19, 00:56](1079 MB) +PASS -- TEST 'rap_diag_debug_intel' [45:19, 00:44](1156 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:41, 00:48](1075 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [44:41, 00:48](1074 MB) +PASS -- TEST 'rap_lndp_debug_intel' [44:26, 00:54](1078 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:43, 00:57](1073 MB) +PASS -- TEST 'rap_noah_debug_intel' [43:36, 01:07](1073 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [43:34, 01:02](1069 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [43:28, 00:56](1075 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [43:23, 01:05](1065 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [42:39, 01:07](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [42:29, 01:05](1076 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [42:17, 01:27](1078 MB) + +PASS -- COMPILE 'wam_debug_intel' [16:49, 15:55] +PASS -- TEST 'control_wam_debug_intel' [42:17, 01:12](299 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:38, 11:11] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [42:18, 01:29](953 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [42:10, 01:38](795 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [42:06, 02:34](788 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [42:05, 02:02](849 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [41:13, 01:56](842 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:11, 02:07](785 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [34:29, 01:38](689 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [36:08, 00:15](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:33, 11:11] +PASS -- TEST 'conus13km_control_intel' [39:53, 01:05](1003 MB) +PASS -- TEST 'conus13km_2threads_intel' [36:00, 00:56](1009 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [35:54, 00:45](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:40, 12:05] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:50, 01:38](808 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:28, 06:34] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [39:32, 01:12](953 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [39:01, 00:21](949 MB) +PASS -- TEST 'conus13km_debug_intel' [38:45, 00:58](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [38:37, 00:43](712 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [38:05, 00:56](1041 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [38:04, 00:57](1105 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:43, 14:31] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [37:50, 01:14](980 MB) + +PASS -- COMPILE 'hafsw_intel' [14:50, 13:39] +PASS -- TEST 'hafs_regional_atm_intel' [37:05, 01:27](619 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:00, 01:00](967 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [36:58, 02:06](663 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [36:50, 01:51](699 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:10, 01:54](706 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:06, 01:07](383 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:32, 01:23](401 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [35:31, 01:36](282 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [35:07, 02:41](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:30, 01:37](413 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:57, 00:59](419 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [33:57, 00:53](495 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:47, 00:25](313 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:21, 03:56] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:42, 01:05](503 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:40, 12:26] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:28, 01:14](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:24, 01:11](707 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:01, 20:19] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [31:33, 01:11](718 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:50, 14:56] +PASS -- TEST 'hafs_regional_docn_intel' [33:21, 01:35](664 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [33:08, 01:30](649 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:03, 00:45](883 MB) + +PASS -- COMPILE 'atml_intel' [15:49, 14:54] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [33:00, 01:15](1542 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [31:13, 01:12](1549 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [24:42, 00:22](744 MB) + +PASS -- COMPILE 'atmaero_intel' [18:59, 18:09] +PASS -- TEST 'atmaero_control_p8_intel' [31:05, 01:33](2849 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [30:31, 01:01](2912 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [30:14, 02:01](2922 MB) + +PASS -- COMPILE 'atmaq_intel' [09:34, 08:55] + +PASS -- COMPILE 'atmaq_debug_intel' [12:41, 11:58] +PASS -- TEST 'regional_atmaq_debug_intel' [29:20, 01:06](4435 MB) SYNOPSIS: -Starting Date/Time: 20240319 13:06:16 -Ending Date/Time: 20240319 14:29:03 -Total Time: 01h:23m:32s +Starting Date/Time: 20240326 17:32:52 +Ending Date/Time: 20240326 18:56:26 +Total Time: 01h:24m:15s Compiles Completed: 31/31 Tests Completed: 157/157 diff --git a/tests/rt.sh b/tests/rt.sh index fd6464c60f..a1d72d4b81 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,9 +679,11 @@ 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 @@ -681,14 +696,18 @@ elif [[ $MACHINE_ID = gaea ]]; then 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 +726,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 +753,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 +789,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 +818,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 +850,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 +879,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 +906,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 +922,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 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