diff --git a/FV3 b/FV3 index 1ba84102cb..1b75fe2c90 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1ba84102cb814ec377efae92264fceb317c24398 +Subproject commit 1b75fe2c90f2a0abf03844d867bd2afa00e86de9 diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index 04a44585ed..871021f54a 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -1,111 +1,112 @@ #!/bin/bash set -eu -# This script checks if head repo of PR is up to date with ufs-weather-model develop -# Checks for top level (ufs-weather-model) and next level components (submodules) -result() { - if [[ -n $comment ]]; then - logID=$1 - comment="@$logID please bring these up to date with respective authoritative repositories\n"$comment - printf %s "$comment" - #exit 1 - fi +get_shas () { + cwd=$(pwd) + # Get sha-1's of the top of develop and feature branches + app="Accept: application/vnd.github.v3+json" + url=$1 + gitapi=$2 + branch=$3 + base_sha=$(curl -sS -H "$app" $gitapi | jq -r '.commit.sha') + workspace=$4 + cd $workspace + git remote add upstream $url + git fetch -q upstream $branch + common=$(git merge-base $base_sha @) + echo $common $base_sha $workspace + if [[ $common != $base_sha ]]; then + printf "%s\n\n" "** $workspace **NOT** up to date" + flag_sync=false + fi + cd $cwd } -# Declare variables -declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics atmos_cubed_sphere -submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics atmos_cubed_sphere" -comment='' +flag_sync=true + ownerID=$1 -# Base branch: this is the top of develop of ufs-weather-model -base[repo]='https://github.com/ufs-community/ufs-weather-model' -base[branch]='develop' +declare -A urls branches pathes +submodules="base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp_physics ccpp_framework aqm noahmp" -# Submodules to check -fv3[repo]='https://github.com/NOAA-EMC/fv3atm' -fv3[branch]='develop' -fv3[dir]='FV3' +urls[base]='https://github.com/ufs-community/ufs-weather-model' +branches[base]='develop' +pathes[base]='' -mom6[repo]='https://github.com/NOAA-EMC/MOM6' -mom6[branch]='dev/emc' -mom6[dir]='MOM6-interface/MOM6' +urls[fv3]='https://github.com/NOAA-EMC/fv3atm' +branches[fv3]='develop' +pathes[fv3]='FV3' -cice[repo]='https://github.com/NOAA-EMC/CICE' -cice[branch]='emc/develop' -cice[dir]='CICE-interface/CICE' +urls[mom6]='https://github.com/NOAA-EMC/MOM6' +branches[mom6]='dev/emc' +pathes[mom6]='MOM6-interface/MOM6' -ww3[repo]='https://github.com/NOAA-EMC/WW3' -ww3[branch]='dev/ufs-weather-model' -ww3[dir]='WW3' +urls[cice]='https://github.com/NOAA-EMC/CICE' +branches[cice]='emc/develop' +pathes[cice]='CICE-interface/CICE' -stoch[repo]='https://github.com/noaa-psl/stochastic_physics' -stoch[branch]='master' -stoch[dir]='stochastic_physics' +urls[ww3]='https://github.com/NOAA-EMC/WW3' +branches[ww3]='dev/ufs-weather-model' +pathes[ww3]='WW3' -gocart[repo]='https://github.com/GEOS-ESM/GOCART' -gocart[branch]='develop' -gocart[dir]='GOCART' +urls[stoch]='https://github.com/noaa-psl/stochastic_physics' +branches[stoch]='master' +pathes[stoch]='stochastic_physics' -cmeps[repo]='https://github.com/NOAA-EMC/CMEPS' -cmeps[branch]='emc/develop' -cmeps[dir]='CMEPS-interface/CMEPS' +urls[gocart]='https://github.com/GEOS-ESM/GOCART' +branches[gocart]='develop' +pathes[gocart]='GOCART' -cdeps[repo]='https://github.com/NOAA-EMC/CDEPS' -cdeps[branch]='develop' -cdeps[dir]='CDEPS-interface/CDEPS' +urls[cmeps]='https://github.com/NOAA-EMC/CMEPS' +branches[cmeps]='emc/develop' +pathes[cmeps]='CMEPS-interface/CMEPS' -hycom[repo]='https://github.com/NOAA-EMC/HYCOM-src' -hycom[branch]='emc/develop' -hycom[dir]='HYCOM-interface/HYCOM' +urls[cdeps]='https://github.com/NOAA-EMC/CDEPS' +branches[cdeps]='develop' +pathes[cdeps]='CDEPS-interface/CDEPS' -cmake[repo]='https://github.com/NOAA-EMC/CMakeModules' -cmake[branch]='develop' -cmake[dir]='CMakeModules' +urls[hycom]='https://github.com/NOAA-EMC/HYCOM-src' +branches[hycom]='emc/develop' +pathes[hycom]='HYCOM-interface/HYCOM' -ccpp-framework[repo]='https://github.com/NCAR/ccpp-framework' -ccpp-framework[branch]='main' -ccpp-framework[dir]='FV3/ccpp/framework' +urls[cmake]='https://github.com/NOAA-EMC/CMakeModules' +branches[cmake]='develop' +pathes[cmake]='CMakeModules' -ccpp-physics[repo]='https://github.com/ufs-community/ccpp-physics' -ccpp-physics[branch]='ufs/dev' -ccpp-physics[dir]='FV3/ccpp/physics' +urls[ccpp_physics]='https://github.com/ufs-community/ccpp-physics' +branches[ccpp_physics]='ufs/dev' +pathes[ccpp_physics]='FV3/ccpp/physics' -#upp[repo]='https://github.com/NOAA-EMC/UPP' -#upp[branch]='develop' -#upp[dir]='upp' +urls[ccpp_framework]='https://github.com/NCAR/ccpp-framework' +branches[ccpp_framework]='main' +pathes[ccpp_framework]='FV3/ccpp/framework' -atmos_cubed_sphere[repo]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere' -atmos_cubed_sphere[branch]='dev/emc' -atmos_cubed_sphere[dir]='FV3/atmos_cubed_sphere' +urls[aqm]='https://github.com/NOAA-EMC/AQM' +branches[aqm]='develop' +pathes[aqm]='AQM' -# Get sha-1's of the top of develop of ufs-weather-model -app="Accept: application/vnd.github.v3+json" -url="https://github.com/gitapi/repos/ufs-community/ufs-weather-model/branches/develop" -base[sha]=$(curl -sS -H "$app" $url | jq -r '.commit.sha') -for submodule in $submodules; do - eval url=https://github.com/gitapi/repos/ufs-community/ufs-weather-model/contents/'${'$submodule'[dir]}' - eval $submodule'[sha]=$(curl -sS -H "$app" $url | jq -r '.sha')' -done +urls[noahmp]='https://github.com/NOAA-EMC/noahmp' +branches[noahmp]='develop' +pathes[noahmp]='NOAHMP-interface/noahmp' -# Check if the head branch is up to date with the base branch -cd ${GITHUB_WORKSPACE} -git remote add upstream ${base[repo]} -git fetch -q upstream ${base[branch]} -common=$(git merge-base ${base[sha]} @) -if [[ $common != ${base[sha]} ]]; then - comment="* ufs-weather-model **NOT** up to date\n" -fi +#urls[upp]='https://github.com/NOAA-EMC/UPP' +#branches[upp]='develop' +#pathes[upp]='upp' + +#urls[cubed_sphere]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere' +#branches[cubed_sphere]='dev/emc' +#pathes[cubed_sphere]='FV3/atmos_cubed_sphere' for submodule in $submodules; do - eval cd ${GITHUB_WORKSPACE}/'${'$submodule'[dir]}' - eval git remote add upstream '${'$submodule'[repo]}' - eval git fetch -q upstream '${'$submodule'[branch]}' - common=$(eval git merge-base '${'$submodule'[sha]}' @) - if (eval test $common != '${'$submodule'[sha]}'); then - comment+="* $submodule **NOT** up to date\n" - fi + url=${urls[$submodule]} + branch=${branches[$submodule]} + workspace=${GITHUB_WORKSPACE}'/'${pathes[$submodule]} + gitapi=$(echo "$url" | sed 's/github.com/api.github.com\/repos/g')'/branches/'$branch + get_shas $url $gitapi $branch $workspace done -result $ownerID -exit 0 +if [[ $flag_sync=='true' ]]; then + exit 0 +else + exit 0 +fi diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index d8bfc5e08c..b7445431fe 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Mar 28 15:57:29 UTC 2024 +Mon Apr 1 12:58:41 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 272.712165 - 0: The maximum resident set size (KB) = 1267880 + 0: The total amount of wall time = 268.251032 + 0: The maximum resident set size (KB) = 1265156 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 976.383245 - 0: The maximum resident set size (KB) = 1259420 + 0: The total amount of wall time = 965.834768 + 0: The maximum resident set size (KB) = 1256504 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 244.611359 - 0: The maximum resident set size (KB) = 1246672 + 0: The total amount of wall time = 246.586805 + 0: The maximum resident set size (KB) = 1233548 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 240.307501 - 0: The maximum resident set size (KB) = 1240192 + 0: The total amount of wall time = 235.970450 + 0: The maximum resident set size (KB) = 1247740 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 244.559360 - 0: The maximum resident set size (KB) = 1249316 + 0: The total amount of wall time = 242.245564 + 0: The maximum resident set size (KB) = 1242900 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.325911 - 0: The maximum resident set size (KB) = 1245732 + 0: The total amount of wall time = 237.390294 + 0: The maximum resident set size (KB) = 1248812 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 243.431160 - 0: The maximum resident set size (KB) = 1246648 + 0: The total amount of wall time = 242.382720 + 0: The maximum resident set size (KB) = 1242900 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Mar 28 17:55:09 UTC 2024 -Elapsed time: 01h:57m:40s. Have a nice day! +Mon Apr 1 14:07:52 UTC 2024 +Elapsed time: 01h:09m:14s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 1b7f6539f6..2b21c64d86 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Fri Mar 29 15:59:03 UTC 2024 +Mon Apr 1 18:08:14 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1890279/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1521.977133 - 0: The maximum resident set size (KB) = 1364132 + 0: The total amount of wall time = 1299.447405 + 0: The maximum resident set size (KB) = 1367532 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1890279/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +135,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 377.430537 - 0: The maximum resident set size (KB) = 1358388 + 0: The total amount of wall time = 604.635134 + 0: The maximum resident set size (KB) = 1359688 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1890279/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 672.561875 - 0: The maximum resident set size (KB) = 1359300 + 0: The total amount of wall time = 385.824022 + 0: The maximum resident set size (KB) = 1360152 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Mar 29 17:09:20 UTC 2024 -Elapsed time: 01h:10m:18s. Have a nice day! +Mon Apr 1 19:12:24 UTC 2024 +Elapsed time: 01h:04m:10s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 0b84461381..2c2b774530 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Mar 28 20:48:12 UTC 2024 +Mon Apr 1 16:00:46 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3525418/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -14,14 +14,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2226.184948 - 0: The maximum resident set size (KB) = 556332 + 0: The total amount of wall time = 2150.095224 + 0: The maximum resident set size (KB) = 553404 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3525418/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2159.090793 - 0: The maximum resident set size (KB) = 555116 + 0: The total amount of wall time = 2151.572064 + 0: The maximum resident set size (KB) = 563124 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3525418/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -51,11 +51,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2233.120288 - 0: The maximum resident set size (KB) = 555128 + 0: The total amount of wall time = 2129.213652 + 0: The maximum resident set size (KB) = 560932 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Mar 28 22:58:00 UTC 2024 -Elapsed time: 02h:09m:48s. Have a nice day! +Mon Apr 1 17:59:32 UTC 2024 +Elapsed time: 01h:58m:47s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 817ec138b6..f05e309630 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -3747664d1511e058657743b4b84f7e51566ac419 +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -25,19 +25,19 @@ Submodule hashes used in testing: 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) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -48,270 +48,270 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240315 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_117712 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6817 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [28:34, 19:20] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:30, 04:51](3072 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [37:49, 20:39] -PASS -- TEST 'cpld_control_gfsv17_intel' [24:06, 13:46](1690 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:32, 15:01](1820 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:17, 07:08](956 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:01, 15:47](1654 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [21:43, 09:22] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:51, 21:18](1693 MB) - -PASS -- COMPILE 's2swa_intel' [20:33, 19:34] -PASS -- TEST 'cpld_control_p8_intel' [11:44, 05:36](3095 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:41, 05:36](3090 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:32, 03:14](3148 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:47, 05:37](3127 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:19, 03:17](3178 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:23, 05:30](3089 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:28, 04:33](3384 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:42, 05:32](3099 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [27:52, 08:40](3633 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:15, 06:08](3613 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:19, 09:36](4341 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:14, 06:40](4645 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:18, 05:14](3062 MB) - -PASS -- COMPILE 's2sw_intel' [39:53, 18:39] -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:56, 04:12](1681 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:02, 04:12](1734 MB) - -PASS -- COMPILE 's2swa_debug_intel' [20:47, 09:12] -PASS -- TEST 'cpld_debug_p8_intel' [13:19, 07:45](3149 MB) - -PASS -- COMPILE 's2sw_debug_intel' [21:43, 08:41] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:41, 05:17](1702 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [32:44, 14:18] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:52, 04:14](1724 MB) - -PASS -- COMPILE 's2s_intel' [23:36, 14:16] -PASS -- TEST 'cpld_control_c48_intel' [08:15, 06:33](2672 MB) - -PASS -- COMPILE 's2swa_faster_intel' [33:48, 22:50] -PASS -- TEST 'cpld_control_p8_faster_intel' [13:21, 05:26](3097 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:30, 19:31] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:05, 14:02](1696 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:30, 07:14](1014 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:15, 15:59](1668 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:22, 08:59] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:49, 22:50](1713 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:29, 12:26] -PASS -- TEST 'control_flake_intel' [13:55, 03:23](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [13:59, 02:02](620 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:03, 02:07](624 MB) -PASS -- TEST 'control_latlon_intel' [09:52, 02:05](621 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:04, 02:06](618 MB) -PASS -- TEST 'control_c48_intel' [08:57, 05:16](738 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:58, 05:13](740 MB) -PASS -- TEST 'control_c192_intel' [20:36, 08:11](741 MB) -PASS -- TEST 'control_c384_intel' [16:31, 08:03](1059 MB) -PASS -- TEST 'control_c384gdas_intel' [19:06, 07:11](1198 MB) -PASS -- TEST 'control_stochy_intel' [09:55, 01:25](623 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:42, 00:52](436 MB) -PASS -- TEST 'control_lndp_intel' [08:52, 01:21](622 MB) -PASS -- TEST 'control_iovr4_intel' [14:02, 02:06](622 MB) -PASS -- TEST 'control_iovr5_intel' [10:02, 02:06](621 MB) -PASS -- TEST 'control_p8_intel' [17:17, 02:28](1601 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [16:16, 02:29](1599 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [17:25, 02:28](1605 MB) -PASS -- TEST 'control_restart_p8_intel' [05:52, 01:24](797 MB) -PASS -- TEST 'control_noqr_p8_intel' [16:15, 02:29](1581 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:54, 01:23](801 MB) -PASS -- TEST 'control_decomp_p8_intel' [17:18, 02:33](1591 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:08, 04:21](1602 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [16:18, 03:16](1650 MB) -PASS -- TEST 'control_p8_mynn_intel' [15:41, 02:34](1604 MB) -PASS -- TEST 'merra2_thompson_intel' [08:46, 02:57](1605 MB) -PASS -- TEST 'regional_control_intel' [10:20, 04:26](631 MB) -PASS -- TEST 'regional_restart_intel' [05:14, 02:30](801 MB) -PASS -- TEST 'regional_decomp_intel' [07:17, 04:41](631 MB) -PASS -- TEST 'regional_noquilt_intel' [10:18, 04:23](1160 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:28, 04:26](626 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:12, 04:28](629 MB) -PASS -- TEST 'regional_wofs_intel' [10:17, 05:35](1599 MB) - -PASS -- COMPILE 'rrfs_intel' [13:29, 11:12] -PASS -- TEST 'rap_control_intel' [08:09, 06:08](1005 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 03:38](1191 MB) -PASS -- TEST 'rap_decomp_intel' [08:02, 06:20](1005 MB) -PASS -- TEST 'rap_restart_intel' [05:13, 03:13](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:16, 06:04](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:13, 06:24](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 04:32](878 MB) -PASS -- TEST 'hrrr_control_intel' [08:03, 03:11](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:03, 03:17](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:11, 02:48](1082 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:50, 01:46](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:14, 05:56](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:57, 07:21](1955 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:50, 07:06](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [12:20, 10:17] -PASS -- TEST 'control_csawmg_intel' [10:19, 05:47](692 MB) -PASS -- TEST 'control_csawmgt_intel' [10:30, 05:46](693 MB) -PASS -- TEST 'control_ras_intel' [06:40, 02:52](656 MB) - -PASS -- COMPILE 'wam_intel' [10:20, 09:36] -PASS -- TEST 'control_wam_intel' [05:36, 01:54](473 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:29, 12:32] -PASS -- TEST 'control_p8_faster_intel' [06:39, 02:22](1600 MB) -PASS -- TEST 'regional_control_faster_intel' [07:12, 04:15](630 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:19, 08:29] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:41, 02:35](794 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:32](793 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:49](796 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:40](794 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:16, 03:53](836 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:22, 03:58](834 MB) -PASS -- TEST 'control_ras_debug_intel' [03:38, 02:35](808 MB) -PASS -- TEST 'control_diag_debug_intel' [05:40, 02:44](854 MB) -PASS -- TEST 'control_debug_p8_intel' [04:14, 02:36](1623 MB) -PASS -- TEST 'regional_debug_intel' [19:12, 16:20](665 MB) -PASS -- TEST 'rap_control_debug_intel' [05:44, 04:37](1179 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:43, 04:33](1178 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 04:40](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:40, 04:37](1179 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:41, 04:48](1179 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:01, 04:53](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:35, 04:44](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:44, 04:43](1181 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:47, 04:42](1181 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:46, 04:48](1179 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:39, 04:40](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:43, 04:51](1179 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:27](1177 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:36](1173 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:40, 05:55](1177 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:41, 04:41](1178 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:08, 07:52](1182 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:18, 05:19] -PASS -- TEST 'control_wam_debug_intel' [06:34, 04:43](420 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:24, 09:47] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:04, 03:38](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 05:10](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:09, 02:47](881 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:12, 02:57](882 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:56](792 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:52, 01:39](776 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:25, 11:36] -PASS -- TEST 'conus13km_control_intel' [05:06, 01:50](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:36, 00:59](1084 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:08](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:24, 09:41] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:14, 03:37](905 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:27, 05:32] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:44, 04:40](1056 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:36, 04:33](1053 MB) -PASS -- TEST 'conus13km_debug_intel' [15:58, 13:30](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:23](819 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 13:28](1199 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:19, 05:32] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:37, 04:46](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [17:30, 15:38] -PASS -- TEST 'hafs_regional_atm_intel' [07:53, 04:34](712 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:12, 05:13](1066 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:00, 06:37](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:41, 10:51](798 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:56, 11:58](810 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:34, 04:43](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 05:51](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:12, 02:30](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:59, 06:22](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:15, 03:22](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:07](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:23, 03:55](582 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:47, 01:22](426 MB) -PASS -- TEST 'gnv1_nested_intel' [05:16, 03:35](788 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:19, 06:46] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:28, 12:02](606 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [04:50, 19:57] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:31, 07:02](635 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:34, 07:08](687 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [00:39, 17:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:39, 05:18](670 MB) - -PASS -- COMPILE 'hafs_all_intel' [55:35, 14:09] -PASS -- TEST 'hafs_regional_docn_intel' [10:32, 05:31](749 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:34, 05:37](735 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:33, 16:09](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [47:30, 07:47] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:48, 02:29](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:38, 01:32](994 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:48, 02:21](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:50, 02:24](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:48, 02:23](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:44, 02:29](759 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:29](748 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 02:20](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:24, 05:43](688 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:39, 05:39](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:33, 02:28](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:41, 03:51](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:38, 03:52](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [44:30, 05:04] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:49, 05:03](733 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [47:34, 07:50] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:34, 02:30](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [40:30, 02:23] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:12](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:40, 01:04](449 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:38, 00:47](451 MB) - -PASS -- COMPILE 'atml_intel' [50:39, 12:57] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:05, 06:45](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:05, 06:38](1626 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:08, 03:27](848 MB) - -PASS -- COMPILE 'atmw_intel' [48:40, 12:52] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:38, 01:33](1633 MB) - -PASS -- COMPILE 'atmwm_intel' [41:35, 12:34] -PASS -- TEST 'control_atmwav_intel' [05:07, 01:29](634 MB) - -PASS -- COMPILE 'atmaero_intel' [30:27, 11:09] -PASS -- TEST 'atmaero_control_p8_intel' [08:44, 03:38](2947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:48, 04:21](2998 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 04:34](3009 MB) - -PASS -- COMPILE 'atmaq_intel' [28:25, 10:48] - -PASS -- COMPILE 'atmaq_debug_intel' [20:34, 06:14] -PASS -- TEST 'regional_atmaq_debug_intel' [25:19, 21:54](4530 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:26, 19:23] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:04, 04:54](3073 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:26, 20:52] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:17, 13:45](1683 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:34, 15:02](1826 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:28, 07:10](955 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:20, 15:46](1655 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:26, 09:14] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:52, 21:19](1699 MB) + +PASS -- COMPILE 's2swa_intel' [20:28, 19:17] +PASS -- TEST 'cpld_control_p8_intel' [09:02, 05:37](3091 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:20, 05:36](3091 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:35, 03:16](3150 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:02, 05:37](3128 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:35, 03:17](3176 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:59, 05:28](3088 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:35, 04:36](3382 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:06, 05:33](3094 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:41, 08:42](3633 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:31, 05:44](3616 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:23, 09:45](4345 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:22, 06:51](4650 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:50, 05:16](3063 MB) + +PASS -- COMPILE 's2sw_intel' [19:26, 18:52] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:42, 04:13](1679 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:13](1731 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:26, 09:13] +PASS -- TEST 'cpld_debug_p8_intel' [11:41, 07:46](3147 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:26, 08:42] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:27, 05:19](1706 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:26, 14:20] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:15, 04:15](1720 MB) + +PASS -- COMPILE 's2s_intel' [15:26, 14:15] +PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:32](2666 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:30, 22:56] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:20, 05:28](3099 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:30, 19:35] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:00, 14:04](1693 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:55, 07:13](1011 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:30, 16:02](1666 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:26, 08:37] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:20, 22:49](1709 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:28, 12:42] +PASS -- TEST 'control_flake_intel' [04:58, 03:26](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:05](617 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:11](623 MB) +PASS -- TEST 'control_latlon_intel' [03:49, 02:05](618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:59, 02:07](622 MB) +PASS -- TEST 'control_c48_intel' [06:44, 05:13](733 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:44, 05:13](739 MB) +PASS -- TEST 'control_c192_intel' [10:35, 07:50](738 MB) +PASS -- TEST 'control_c384_intel' [13:56, 08:08](1061 MB) +PASS -- TEST 'control_c384gdas_intel' [15:36, 07:17](1194 MB) +PASS -- TEST 'control_stochy_intel' [02:50, 01:25](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:39, 00:50](439 MB) +PASS -- TEST 'control_lndp_intel' [02:50, 01:23](621 MB) +PASS -- TEST 'control_iovr4_intel' [03:56, 02:07](617 MB) +PASS -- TEST 'control_iovr5_intel' [03:41, 02:05](621 MB) +PASS -- TEST 'control_p8_intel' [04:32, 02:29](1595 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:39, 02:27](1592 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:27](1597 MB) +PASS -- TEST 'control_restart_p8_intel' [03:23, 01:26](803 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:45, 02:30](1589 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:23](804 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:41, 02:34](1583 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:35, 04:22](1595 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:41, 03:14](1653 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:46, 02:31](1611 MB) +PASS -- TEST 'merra2_thompson_intel' [05:39, 02:58](1607 MB) +PASS -- TEST 'regional_control_intel' [06:09, 04:30](630 MB) +PASS -- TEST 'regional_restart_intel' [04:09, 02:29](800 MB) +PASS -- TEST 'regional_decomp_intel' [06:11, 04:43](631 MB) +PASS -- TEST 'regional_noquilt_intel' [06:10, 04:24](1215 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:18, 04:27](627 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:12, 04:28](629 MB) +PASS -- TEST 'regional_wofs_intel' [07:06, 05:34](1601 MB) + +PASS -- COMPILE 'rrfs_intel' [11:29, 10:57] +PASS -- TEST 'rap_control_intel' [08:24, 06:05](1000 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:40, 03:40](1188 MB) +PASS -- TEST 'rap_decomp_intel' [08:19, 06:21](1004 MB) +PASS -- TEST 'rap_restart_intel' [05:20, 03:11](876 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:12, 06:05](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:18, 06:20](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:12, 04:35](880 MB) +PASS -- TEST 'hrrr_control_intel' [05:05, 03:12](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:16, 03:18](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:24, 02:48](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:48, 01:46](829 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:05, 05:58](997 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 07:21](1954 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:44, 07:08](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [11:29, 10:07] +PASS -- TEST 'control_csawmg_intel' [08:07, 05:46](692 MB) +PASS -- TEST 'control_csawmgt_intel' [08:06, 05:44](693 MB) +PASS -- TEST 'control_ras_intel' [04:39, 02:53](657 MB) + +PASS -- COMPILE 'wam_intel' [10:25, 09:18] +PASS -- TEST 'control_wam_intel' [03:33, 01:53](378 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:28, 12:27] +PASS -- TEST 'control_p8_faster_intel' [04:44, 02:20](1598 MB) +PASS -- TEST 'regional_control_faster_intel' [06:15, 04:16](626 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:20, 08:17] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:35](794 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:36](795 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:40, 02:49](794 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:40](799 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:10, 04:01](841 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:13, 03:51](837 MB) +PASS -- TEST 'control_ras_debug_intel' [04:37, 02:37](805 MB) +PASS -- TEST 'control_diag_debug_intel' [05:13, 02:42](849 MB) +PASS -- TEST 'control_debug_p8_intel' [04:15, 02:44](1620 MB) +PASS -- TEST 'regional_debug_intel' [17:12, 16:02](666 MB) +PASS -- TEST 'rap_control_debug_intel' [05:41, 04:41](1181 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:33](1175 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:39, 04:34](1182 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:35, 04:38](1182 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:49, 04:40](1180 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:13, 04:50](1266 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:39, 04:43](1180 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:46, 04:51](1177 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:44, 04:48](1181 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 04:39](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:38, 04:31](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 04:39](1176 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:30](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 04:37](1174 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:33](1177 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:42, 04:44](1177 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:09, 07:53](1182 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:25, 05:12] +PASS -- TEST 'control_wam_debug_intel' [05:29, 04:37](423 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:37] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:28, 03:27](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:07](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:16, 02:44](882 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:10, 02:54](879 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:51](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 01:31](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:21, 11:33] +PASS -- TEST 'conus13km_control_intel' [04:13, 01:51](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:41, 00:54](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:08](971 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:21, 09:45] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:07, 03:37](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:24, 05:33] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:34, 04:31](1054 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:28](1053 MB) +PASS -- TEST 'conus13km_debug_intel' [16:01, 13:21](1130 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:58, 13:34](813 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:02, 13:44](1197 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:24, 05:23] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:40, 04:33](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [16:23, 15:43] +PASS -- TEST 'hafs_regional_atm_intel' [06:49, 04:30](713 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 05:03](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:17, 06:20](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [12:59, 10:49](897 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:16, 11:53](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:31, 04:39](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:40, 05:44](493 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 02:20](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:21, 06:15](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:11, 03:16](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:18, 03:03](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:28, 03:49](579 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:39, 01:14](428 MB) +PASS -- TEST 'gnv1_nested_intel' [05:07, 03:23](786 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:18, 06:45] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:21, 11:54](608 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:13] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:02](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:34, 07:06](685 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:26, 16:31] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:49, 05:19](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:27, 13:59] +PASS -- TEST 'hafs_regional_docn_intel' [07:42, 05:36](749 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:46, 05:32](734 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:31, 16:15](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:39] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:44, 02:29](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:30](1215 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:38, 02:22](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:36, 02:26](1215 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:33, 02:25](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 02:31](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:46, 02:30](748 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:20](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:39, 05:42](688 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 05:41](669 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:34, 02:29](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:52, 03:51](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:46, 03:53](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:19, 04:58] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:38, 05:03](735 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 07:37] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:27](759 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:16] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 01:06](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:02](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:40, 00:42](507 MB) + +PASS -- COMPILE 'atml_intel' [14:15, 12:54] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:02, 06:12](1637 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:23](1632 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:24, 03:23](850 MB) + +PASS -- COMPILE 'atmw_intel' [13:21, 12:35] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:40, 01:34](1629 MB) + +PASS -- COMPILE 'atmwm_intel' [13:26, 12:34] +PASS -- TEST 'control_atmwav_intel' [02:57, 01:28](637 MB) + +PASS -- COMPILE 'atmaero_intel' [11:20, 11:01] +PASS -- TEST 'atmaero_control_p8_intel' [06:01, 03:36](2948 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:03, 04:16](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:33, 04:27](3014 MB) + +PASS -- COMPILE 'atmaq_intel' [11:21, 10:45] + +PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:05] +PASS -- TEST 'regional_atmaq_debug_intel' [25:29, 21:51](4532 MB) SYNOPSIS: -Starting Date/Time: 20240328 08:57:30 -Ending Date/Time: 20240328 11:19:15 -Total Time: 02h:22m:32s +Starting Date/Time: 20240331 11:02:38 +Ending Date/Time: 20240331 12:30:03 +Total Time: 01h:28m:12s Compiles Completed: 39/39 Tests Completed: 175/175 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index cbc929976c..4b2e1b676d 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -055b13ffbe0e49abbcf8d4e503ee617a8e78e5be +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -25,19 +25,19 @@ Submodule hashes used in testing: 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) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -48,277 +48,277 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240315 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_44233 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_230915 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [25:18, 23:19] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:48, 08:04](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:22, 24:47] -PASS -- TEST 'cpld_control_gfsv17_intel' [18:07, 14:02](1697 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:51, 14:39](1811 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:48, 06:36](949 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:42, 15:25](1666 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:14, 13:54] -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:04, 24:27](1702 MB) - -PASS -- COMPILE 's2swa_intel' [22:12, 20:16] -PASS -- TEST 'cpld_control_p8_intel' [15:49, 08:43](3100 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:01, 08:47](3100 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:02, 05:11](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:49, 08:54](3126 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:02, 05:20](3179 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:32, 07:20](3414 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:38, 08:35](3101 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 07:29](3022 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:01, 08:33](3100 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:51, 10:54](3275 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:47, 07:14](3601 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:23, 13:35](4036 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:37, 09:27](4339 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:45, 08:03](3068 MB) - -PASS -- COMPILE 's2sw_intel' [20:12, 18:23] -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:08, 05:42](1684 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:53, 05:47](1730 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:10, 11:49] -PASS -- TEST 'cpld_debug_p8_intel' [13:46, 11:00](3132 MB) - -PASS -- COMPILE 's2sw_debug_intel' [19:15, 17:18] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:42, 06:09](1699 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:38] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 05:35](1733 MB) - -PASS -- COMPILE 's2s_intel' [18:11, 16:51] -PASS -- TEST 'cpld_control_c48_intel' [09:18, 06:58](2662 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:21, 22:55] -PASS -- TEST 'cpld_control_p8_faster_intel' [15:00, 09:00](3100 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:17, 23:11] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 15:20](1704 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:46, 07:25](1001 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:59, 17:47](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:15, 13:59] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:16, 25:55](1709 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:14, 15:56] -PASS -- TEST 'control_flake_intel' [05:30, 03:44](675 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:39, 02:38](620 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:37, 02:55](627 MB) -PASS -- TEST 'control_latlon_intel' [04:27, 02:44](623 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:40, 03:00](623 MB) -PASS -- TEST 'control_c48_intel' [07:58, 05:39](727 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:59, 05:37](728 MB) -PASS -- TEST 'control_c192_intel' [10:52, 09:07](739 MB) -PASS -- TEST 'control_c384_intel' [19:02, 17:07](1043 MB) -PASS -- TEST 'control_c384gdas_intel' [17:49, 14:13](1184 MB) -PASS -- TEST 'control_stochy_intel' [04:28, 02:16](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:32, 01:18](430 MB) -PASS -- TEST 'control_lndp_intel' [04:27, 02:10](628 MB) -PASS -- TEST 'control_iovr4_intel' [04:31, 02:40](623 MB) -PASS -- TEST 'control_iovr5_intel' [04:34, 02:39](623 MB) -PASS -- TEST 'control_p8_intel' [06:19, 03:47](1606 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:36, 03:47](1608 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:21](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [04:07, 02:04](790 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:20, 03:39](1595 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:28, 02:07](792 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:28, 03:24](1595 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:30, 02:40](1685 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:07, 05:21](1607 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:35, 04:18](1657 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:16](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [06:17, 04:04](1616 MB) -PASS -- TEST 'regional_control_intel' [06:43, 04:38](615 MB) -PASS -- TEST 'regional_restart_intel' [04:49, 02:37](789 MB) -PASS -- TEST 'regional_decomp_intel' [06:42, 04:54](615 MB) -PASS -- TEST 'regional_2threads_intel' [04:42, 02:57](758 MB) -PASS -- TEST 'regional_noquilt_intel' [06:44, 04:54](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:15, 04:45](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:50, 04:45](615 MB) -PASS -- TEST 'regional_wofs_intel' [08:52, 06:17](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [15:10, 13:44] -PASS -- TEST 'rap_control_intel' [09:20, 06:51](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:11, 03:55](1189 MB) -PASS -- TEST 'rap_decomp_intel' [09:20, 07:02](1009 MB) -PASS -- TEST 'rap_2threads_intel' [08:25, 05:56](1095 MB) -PASS -- TEST 'rap_restart_intel' [06:05, 03:41](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:32, 06:56](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 07:01](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:14, 05:11](880 MB) -PASS -- TEST 'hrrr_control_intel' [06:31, 03:51](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:31, 03:48](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:31, 03:02](1085 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:41, 02:01](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:33, 06:37](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:58, 08:14](1962 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:58, 08:24](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [14:15, 12:51] -PASS -- TEST 'control_csawmg_intel' [08:45, 06:35](695 MB) -PASS -- TEST 'control_csawmgt_intel' [08:43, 06:44](691 MB) -PASS -- TEST 'control_ras_intel' [05:41, 03:35](657 MB) - -PASS -- COMPILE 'wam_intel' [14:10, 12:47] -PASS -- TEST 'control_wam_intel' [04:39, 02:09](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:48] -PASS -- TEST 'control_p8_faster_intel' [06:35, 03:14](1608 MB) -PASS -- TEST 'regional_control_faster_intel' [06:58, 04:39](614 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 12:01] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:59](779 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:52](783 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:34, 03:30](786 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:54](790 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:36](826 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:54, 04:18](827 MB) -PASS -- TEST 'control_ras_debug_intel' [04:32, 02:54](796 MB) -PASS -- TEST 'control_diag_debug_intel' [04:50, 02:55](845 MB) -PASS -- TEST 'control_debug_p8_intel' [05:52, 03:16](1622 MB) -PASS -- TEST 'regional_debug_intel' [17:55, 16:04](637 MB) -PASS -- TEST 'rap_control_debug_intel' [07:32, 05:38](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:08](1166 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:35, 05:34](1169 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:43, 05:15](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:34, 05:19](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:29](1255 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:44, 05:22](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 05:27](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:47, 05:14](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 05:16](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:34, 05:23](1168 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 05:33](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:34, 08:28](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:33, 05:12](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:36, 06:39](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:33, 05:16](1169 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:11, 08:55](1171 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:10, 09:31] -PASS -- TEST 'control_wam_debug_intel' [06:31, 04:57](394 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:10, 12:06] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 04:01](1044 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:10, 06:09](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:11, 04:03](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:04, 05:15](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:17, 02:49](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:06, 03:57](887 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:02, 04:04](782 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:33, 02:10](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 15:43] -PASS -- TEST 'conus13km_control_intel' [05:02, 02:37](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:46, 01:33](1072 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:22](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:09, 12:12] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:23, 04:26](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:55] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 04:58](1046 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:36, 04:56](1046 MB) -PASS -- TEST 'conus13km_debug_intel' [16:01, 13:59](1128 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:54, 14:28](803 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:14](1108 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 14:05](1193 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:08, 08:56] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:10](1067 MB) - -PASS -- COMPILE 'hafsw_intel' [17:16, 16:07] -PASS -- TEST 'hafs_regional_atm_intel' [08:19, 05:21](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 04:40](1062 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:38, 07:42](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:20, 11:57](791 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:52, 13:06](793 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:32, 05:22](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:41, 06:47](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:26, 02:55](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:13, 08:10](444 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:08, 03:58](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:06, 03:48](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:03, 04:46](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:40, 01:45](401 MB) -PASS -- TEST 'gnv1_nested_intel' [06:31, 03:58](763 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:08, 10:49] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:20, 13:17](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:20, 19:41] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:17, 07:52](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:16, 07:52](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 17:09] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:11, 06:02](786 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 15:25] -PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:12](746 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:25, 06:11](729 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:16, 20:10](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:09, 11:59] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 02:37](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:33](734 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:27](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:31, 02:27](635 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 02:35](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:34](759 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 02:35](758 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:25](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:15, 06:16](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:08](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:35](758 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 04:34](2011 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:32, 04:35](2013 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:08, 07:24] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 05:27](739 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 12:40] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:37](759 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:32] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:58, 02:00](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:54, 01:43](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:59, 01:50](456 MB) - -PASS -- COMPILE 'atml_intel' [16:13, 14:39] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:31, 08:04](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:23, 07:44](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:12, 04:39](835 MB) - -PASS -- COMPILE 'atmw_intel' [16:14, 14:34] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 02:31](1649 MB) - -PASS -- COMPILE 'atmwm_intel' [16:13, 14:57] -PASS -- TEST 'control_atmwav_intel' [05:06, 02:04](640 MB) - -PASS -- COMPILE 'atmaero_intel' [15:16, 14:06] -PASS -- TEST 'atmaero_control_p8_intel' [09:44, 06:21](2943 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:47](3010 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 07:03](3017 MB) - -PASS -- COMPILE 'atmaq_intel' [16:12, 14:16] - -PASS -- COMPILE 'atmaq_debug_intel' [12:20, 10:41] -PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 18:45](4479 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:10, 15:34] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:32, 07:09](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 20:50] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:35, 13:57](1700 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:46, 14:25](1813 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:05, 06:43](951 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:55, 15:17](1666 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [24:11, 23:03] +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:29, 25:04](1697 MB) + +PASS -- COMPILE 's2swa_intel' [18:09, 16:36] +PASS -- TEST 'cpld_control_p8_intel' [11:54, 08:05](3100 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:01, 07:55](3100 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:32, 05:31](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:47, 08:05](3127 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 05:02](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:53, 06:29](3412 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:38, 07:54](3100 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:53, 06:56](3023 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:01, 07:48](3101 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:01, 10:28](3273 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:53, 07:48](3607 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:30, 13:22](4039 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:00, 09:48](4346 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:46, 07:35](3068 MB) + +PASS -- COMPILE 's2sw_intel' [17:10, 15:27] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:48, 04:56](1682 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 05:18](1731 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:08, 10:10] +PASS -- TEST 'cpld_debug_p8_intel' [13:00, 09:51](3130 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:08, 10:13] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 06:05](1697 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:26] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:47, 05:13](1731 MB) + +PASS -- COMPILE 's2s_intel' [16:10, 14:08] +PASS -- TEST 'cpld_control_c48_intel' [09:14, 06:54](2662 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:36] +PASS -- TEST 'cpld_control_p8_faster_intel' [12:36, 08:23](3099 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 21:53] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:15, 14:52](1703 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:37, 07:14](1000 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:14, 17:38](1680 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:09, 10:32] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:51, 26:49](1710 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:09, 13:42] +PASS -- TEST 'control_flake_intel' [05:30, 04:02](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:44, 02:48](620 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:47, 02:58](626 MB) +PASS -- TEST 'control_latlon_intel' [04:38, 02:54](623 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:53, 02:55](623 MB) +PASS -- TEST 'control_c48_intel' [07:55, 05:35](727 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:36](722 MB) +PASS -- TEST 'control_c192_intel' [12:23, 09:27](738 MB) +PASS -- TEST 'control_c384_intel' [19:32, 16:26](1042 MB) +PASS -- TEST 'control_c384gdas_intel' [19:18, 14:13](1183 MB) +PASS -- TEST 'control_stochy_intel' [03:36, 01:55](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:02, 01:06](430 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 01:59](628 MB) +PASS -- TEST 'control_iovr4_intel' [04:41, 02:34](623 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:36](623 MB) +PASS -- TEST 'control_p8_intel' [07:53, 03:37](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:55, 03:17](1608 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:53, 03:14](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [04:40, 01:45](789 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:15](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:40, 01:57](793 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:45, 03:22](1594 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:57, 02:46](1678 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:12, 05:15](1605 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:51, 04:15](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:59, 03:49](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [07:53, 04:16](1615 MB) +PASS -- TEST 'regional_control_intel' [07:09, 04:45](615 MB) +PASS -- TEST 'regional_restart_intel' [04:56, 02:33](789 MB) +PASS -- TEST 'regional_decomp_intel' [07:09, 04:58](615 MB) +PASS -- TEST 'regional_2threads_intel' [05:22, 03:00](757 MB) +PASS -- TEST 'regional_noquilt_intel' [06:51, 04:45](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:00, 04:56](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 04:44](615 MB) +PASS -- TEST 'regional_wofs_intel' [08:42, 06:08](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [14:09, 12:24] +PASS -- TEST 'rap_control_intel' [09:29, 06:47](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:12, 03:56](1186 MB) +PASS -- TEST 'rap_decomp_intel' [10:37, 07:04](1009 MB) +PASS -- TEST 'rap_2threads_intel' [09:29, 06:12](1096 MB) +PASS -- TEST 'rap_restart_intel' [06:08, 03:39](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:29, 06:44](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:29, 07:02](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:08, 05:48](879 MB) +PASS -- TEST 'hrrr_control_intel' [06:21, 03:46](1004 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:21, 03:47](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:21, 03:08](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:49, 01:57](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:31, 06:39](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:02, 07:53](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:01, 07:53](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [14:09, 12:11] +PASS -- TEST 'control_csawmg_intel' [09:35, 06:42](695 MB) +PASS -- TEST 'control_csawmgt_intel' [09:14, 06:43](691 MB) +PASS -- TEST 'control_ras_intel' [05:44, 03:51](657 MB) + +PASS -- COMPILE 'wam_intel' [13:09, 11:34] +PASS -- TEST 'control_wam_intel' [04:34, 02:09](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:09, 15:14] +PASS -- TEST 'control_p8_faster_intel' [06:39, 03:51](1608 MB) +PASS -- TEST 'regional_control_faster_intel' [07:09, 04:43](614 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:09, 10:50] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:53](778 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:52](782 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:14, 03:12](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:11, 03:04](789 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:23](825 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:51, 04:25](826 MB) +PASS -- TEST 'control_ras_debug_intel' [06:04, 03:11](796 MB) +PASS -- TEST 'control_diag_debug_intel' [05:20, 03:00](843 MB) +PASS -- TEST 'control_debug_p8_intel' [06:00, 03:16](1622 MB) +PASS -- TEST 'regional_debug_intel' [19:03, 16:29](635 MB) +PASS -- TEST 'rap_control_debug_intel' [07:42, 05:07](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:39, 04:58](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 05:06](1168 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:31, 05:15](1168 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:30, 05:08](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:16](1252 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:34, 05:18](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:26](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:39, 05:50](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 05:57](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:30, 05:18](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:50, 05:17](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:42, 08:13](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:49, 05:03](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:49, 05:52](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:37, 05:11](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:12, 08:36](1172 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:11, 08:25] +PASS -- TEST 'control_wam_debug_intel' [06:34, 04:59](396 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:14, 12:18] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:15, 03:44](1051 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:44](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:33](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:52, 05:23](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:03, 02:40](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:51, 03:30](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 04:12](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:40](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:18, 21:15] +PASS -- TEST 'conus13km_control_intel' [04:02, 02:01](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:03](1072 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:30](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:09, 13:46] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:59, 04:12](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:38] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 05:08](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 04:58](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [17:07, 13:59](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:14](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:57, 08:09](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:01](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:09, 08:18] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 05:19](1065 MB) + +PASS -- COMPILE 'hafsw_intel' [18:09, 16:32] +PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:17](707 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 04:33](1057 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:31](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:40, 11:35](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:52, 12:52](797 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 05:25](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:45](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:54](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:46, 08:00](432 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 03:52](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:08, 03:34](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:05, 04:40](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:37, 01:42](401 MB) +PASS -- TEST 'gnv1_nested_intel' [07:16, 04:05](768 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:14, 12:09] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:05](588 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:10, 18:37] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:17, 07:41](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:44, 07:45](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:10, 18:45] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:14, 05:59](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [27:12, 25:36] +PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:04](745 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:03, 06:12](728 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:17, 20:13](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:13, 11:54] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:35](759 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:57, 01:33](746 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:26](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:29](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:33](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:33](758 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:33](758 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 02:25](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:02](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 06:06](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:40, 02:35](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:32, 04:34](2013 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:31, 04:38](2014 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:11, 09:45] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:27](740 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:12, 14:32] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:58, 02:39](758 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 03:29] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:06, 03:43](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:40, 01:56](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:00, 01:26](456 MB) + +PASS -- COMPILE 'atml_intel' [24:19, 22:31] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:58, 08:51](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:30, 08:14](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 04:01](835 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 14:03] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:31, 02:15](1649 MB) + +PASS -- COMPILE 'atmwm_intel' [15:09, 13:54] +PASS -- TEST 'control_atmwav_intel' [05:18, 02:02](640 MB) + +PASS -- COMPILE 'atmaero_intel' [15:14, 13:52] +PASS -- TEST 'atmaero_control_p8_intel' [10:21, 07:14](2943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:22, 07:29](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:11, 07:51](3019 MB) + +PASS -- COMPILE 'atmaq_intel' [15:12, 14:04] + +PASS -- COMPILE 'atmaq_debug_intel' [12:09, 10:26] +PASS -- TEST 'regional_atmaq_debug_intel' [22:56, 19:00](4476 MB) SYNOPSIS: -Starting Date/Time: 20240328 12:15:36 -Ending Date/Time: 20240328 13:55:56 -Total Time: 01h:41m:01s +Starting Date/Time: 20240401 08:38:19 +Ending Date/Time: 20240401 10:13:48 +Total Time: 01h:36m:31s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 99f060fe8c..0fddf8b493 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -055b13ffbe0e49abbcf8d4e503ee617a8e78e5be +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -25,370 +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/Jong.Kim/FV3_RT/rt_2144886 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_4129005 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [12:53, 12:52] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:26, 05:34](3194 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:09, 17:08] -PASS -- TEST 'cpld_control_gfsv17_intel' [18:03, 17:13](1761 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:00, 17:52](2025 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:08, 08:06](1125 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:04, 19:25](1658 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:41, 04:41] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:43, 22:49](1703 MB) - -PASS -- COMPILE 's2swa_intel' [12:57, 12:56] -PASS -- TEST 'cpld_control_p8_intel' [06:38, 05:47](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:45, 05:47](3226 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:23, 04:05](3260 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:45, 05:47](3251 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:53, 03:41](3281 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:29, 05:31](3556 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:44, 05:48](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:35, 04:46](3067 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:56, 05:51](3202 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:55, 10:18](3353 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:30, 06:15](3620 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:34, 10:04](4117 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:26, 06:06](4352 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:15, 05:25](3197 MB) - -PASS -- COMPILE 's2sw_intel' [12:17, 12:16] -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:34, 04:45](1727 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:19, 04:18](1786 MB) - -PASS -- COMPILE 's2swa_debug_intel' [04:34, 04:33] -PASS -- TEST 'cpld_debug_p8_intel' [09:16, 08:20](3262 MB) - -PASS -- COMPILE 's2sw_debug_intel' [04:13, 04:13] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:30, 05:44](1768 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:49, 11:48] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:47, 05:46](1789 MB) - -PASS -- COMPILE 's2s_intel' [11:23, 11:22] -PASS -- TEST 'cpld_control_c48_intel' [10:02, 09:27](2818 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:47, 16:46] -PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:36](3202 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:37, 15:36] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:15, 17:24](1745 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:04, 08:04](1181 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:43, 19:49](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:17, 04:17] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:36, 25:52](1671 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 11:10] -PASS -- TEST 'control_flake_intel' [03:43, 03:31](709 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [02:54, 02:33](660 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:49, 02:31](661 MB) -PASS -- TEST 'control_latlon_intel' [02:42, 02:30](661 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:05, 02:46](661 MB) -PASS -- TEST 'control_c48_intel' [06:51, 06:36](876 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 06:24](875 MB) -PASS -- TEST 'control_c192_intel' [09:35, 09:10](858 MB) -PASS -- TEST 'control_c384_intel' [10:09, 09:03](1301 MB) -PASS -- TEST 'control_c384gdas_intel' [10:18, 08:05](1376 MB) -PASS -- TEST 'control_stochy_intel' [01:52, 01:40](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:15, 00:59](500 MB) -PASS -- TEST 'control_lndp_intel' [01:47, 01:34](663 MB) -PASS -- TEST 'control_iovr4_intel' [02:39, 02:27](656 MB) -PASS -- TEST 'control_iovr5_intel' [02:45, 02:27](663 MB) -PASS -- TEST 'control_p8_intel' [03:43, 03:01](1603 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:41, 02:56](1636 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:38, 02:56](1608 MB) -PASS -- TEST 'control_restart_p8_intel' [02:12, 01:38](895 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:36, 02:59](1620 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:17, 01:37](937 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:34, 03:00](1624 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:16, 02:42](1718 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:48, 05:14](1624 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:40, 04:01](1693 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:39, 02:59](1639 MB) -PASS -- TEST 'merra2_thompson_intel' [04:07, 03:28](1648 MB) -PASS -- TEST 'regional_control_intel' [05:36, 05:10](847 MB) -PASS -- TEST 'regional_restart_intel' [03:16, 02:45](1019 MB) -PASS -- TEST 'regional_decomp_intel' [05:54, 05:27](853 MB) -PASS -- TEST 'regional_2threads_intel' [03:39, 03:13](847 MB) -PASS -- TEST 'regional_noquilt_intel' [05:34, 05:10](1358 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 05:11](853 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 05:06](852 MB) -PASS -- TEST 'regional_wofs_intel' [07:09, 06:40](1913 MB) - -PASS -- COMPILE 'rrfs_intel' [10:52, 10:51] -PASS -- TEST 'rap_control_intel' [08:12, 07:43](1104 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:58, 04:10](1281 MB) -PASS -- TEST 'rap_decomp_intel' [08:40, 08:12](1041 MB) -PASS -- TEST 'rap_2threads_intel' [07:50, 07:22](1181 MB) -PASS -- TEST 'rap_restart_intel' [04:54, 04:11](1118 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:22, 07:49](1112 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 09:28](1040 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:16, 05:48](1135 MB) -PASS -- TEST 'hrrr_control_intel' [04:38, 04:00](1045 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 04:11](1036 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 03:38](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:52, 02:28](1005 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:16, 07:43](1101 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:41, 09:25](1987 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:15, 08:58](2076 MB) - -PASS -- COMPILE 'csawmg_intel' [10:18, 10:17] -PASS -- TEST 'control_csawmg_intel' [06:33, 06:07](756 MB) -PASS -- TEST 'control_csawmgt_intel' [06:44, 06:12](758 MB) -PASS -- TEST 'control_ras_intel' [03:37, 03:20](742 MB) - -PASS -- COMPILE 'csawmg_gnu' [03:35, 03:35] -PASS -- TEST 'control_csawmg_gnu' [08:56, 08:27](548 MB) -PASS -- TEST 'control_csawmgt_gnu' [08:50, 08:23](542 MB) - -PASS -- COMPILE 'wam_intel' [09:54, 09:53] -PASS -- TEST 'control_wam_intel' [02:26, 02:08](660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:45, 10:44] -PASS -- TEST 'control_p8_faster_intel' [03:39, 02:47](1634 MB) -PASS -- TEST 'regional_control_faster_intel' [05:50, 05:16](853 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:45, 04:44] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:12, 02:56](815 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:01, 02:44](820 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:16, 03:05](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:53, 03:39](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:31, 04:06](861 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [04:51, 04:20](842 MB) -PASS -- TEST 'control_ras_debug_intel' [02:54, 02:45](828 MB) -PASS -- TEST 'control_diag_debug_intel' [03:10, 02:51](875 MB) -PASS -- TEST 'control_debug_p8_intel' [03:23, 02:54](1633 MB) -PASS -- TEST 'regional_debug_intel' [17:25, 16:58](843 MB) -PASS -- TEST 'rap_control_debug_intel' [05:03, 04:48](1208 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:00, 04:48](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:06, 08:56](1206 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:05, 04:55](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 04:59](1208 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:46, 05:21](1265 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 05:08](1203 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 05:08](1180 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:14, 04:57](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:07, 04:53](1205 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:03, 04:50](1204 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:11, 04:55](1204 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:07, 07:52](1204 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:02, 04:49](1201 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:04, 05:49](1213 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:10, 04:56](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:52, 08:27](1214 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:36, 02:36] -PASS -- TEST 'control_csawmg_debug_gnu' [02:39, 02:14](534 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [02:40, 02:14](530 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:16, 03:16] -PASS -- TEST 'control_wam_debug_intel' [05:11, 05:01](511 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:21, 10:20] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:36, 03:53](1166 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:49, 06:24](1052 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:43, 03:23](990 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:26, 06:05](1110 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 03:07](971 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:53, 03:34](929 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:30, 04:56](1007 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:08, 01:50](940 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:37, 12:37] -PASS -- TEST 'conus13km_control_intel' [02:42, 02:04](1203 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:25, 00:53](1120 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:52, 01:20](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:08, 10:07] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:42, 04:12](987 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:40, 03:39] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:56, 04:44](1090 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:56, 04:43](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [15:20, 14:49](1238 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:02, 14:27](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:38, 08:03](1156 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:06, 14:34](1298 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:45, 03:45] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 05:08](1128 MB) - -PASS -- COMPILE 'hafsw_intel' [11:30, 11:30] -PASS -- TEST 'hafs_regional_atm_intel' [05:56, 04:53](730 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:10, 05:55](1123 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:54, 06:52](834 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:28, 13:29](867 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:23, 15:19](880 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:09, 05:27](505 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:50, 06:47](538 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:06, 02:39](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:39, 07:04](473 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:11, 03:41](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:00, 03:26](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:39, 04:01](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:13](407 MB) -PASS -- TEST 'gnv1_nested_intel' [04:37, 04:07](803 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [03:57, 03:57] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:18, 12:37](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:57, 11:57] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 08:53](626 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:28, 08:44](744 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:01, 12:00] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:12, 06:25](701 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:24, 11:24] -PASS -- TEST 'hafs_regional_docn_intel' [07:10, 06:16](832 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:21, 06:24](811 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:37, 16:00](1214 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:09, 06:09] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:48, 02:40](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:45, 01:38](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:39, 02:33](1032 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:47, 02:39](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:40, 02:34](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:48, 02:42](1147 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:47, 02:42](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:38, 02:33](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:08, 06:08](1056 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 07:57](1041 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 03:11](1149 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 04:10](2482 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:05, 03:56](2436 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:20, 03:19] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:23, 06:16](1083 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:00, 06:00] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:56, 02:44](1154 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:27, 01:27] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:03, 00:46](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:45](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](323 MB) - -PASS -- COMPILE 'atml_intel' [11:48, 11:48] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:02, 04:20](1594 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:08, 04:21](1610 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:55, 02:19](907 MB) - -PASS -- COMPILE 'atmw_intel' [10:50, 10:50] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:26, 01:46](1677 MB) - -PASS -- COMPILE 'atmwm_intel' [11:01, 11:01] -PASS -- TEST 'control_atmwav_intel' [02:05, 01:44](671 MB) - -PASS -- COMPILE 'atmaero_intel' [10:35, 10:34] -PASS -- TEST 'atmaero_control_p8_intel' [04:49, 04:05](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:54, 05:06](3093 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:47, 05:11](3131 MB) - -PASS -- COMPILE 'atmaq_intel' [10:29, 10:29] - -PASS -- COMPILE 'atmaq_debug_intel' [03:38, 03:37] -PASS -- TEST 'regional_atmaq_debug_intel' [28:27, 26:45](4445 MB) - -PASS -- COMPILE 'atm_gnu' [03:39, 03:38] -PASS -- TEST 'control_c48_gnu' [11:00, 10:48](763 MB) -PASS -- TEST 'control_stochy_gnu' [03:37, 03:25](506 MB) -PASS -- TEST 'control_ras_gnu' [04:59, 04:48](517 MB) -PASS -- TEST 'control_p8_gnu' [05:34, 04:41](1267 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:23, 04:40](1269 MB) -PASS -- TEST 'control_flake_gnu' [11:36, 11:25](549 MB) - -PASS -- COMPILE 'rrfs_gnu' [03:42, 03:41] -PASS -- TEST 'rap_control_gnu' [14:03, 13:37](859 MB) -PASS -- TEST 'rap_decomp_gnu' [11:08, 10:44](860 MB) -PASS -- TEST 'rap_2threads_gnu' [10:32, 09:58](940 MB) -PASS -- TEST 'rap_restart_gnu' [06:13, 05:38](584 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:28, 10:59](857 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:21, 10:51](859 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:23, 07:53](592 MB) -PASS -- TEST 'hrrr_control_gnu' [06:02, 05:35](858 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:06, 05:41](844 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:37, 05:12](930 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:03, 05:39](861 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:09, 02:52](571 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:12, 02:49](664 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:21, 10:48](851 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:35, 03:35] -PASS -- TEST 'control_diag_debug_gnu' [02:10, 01:46](550 MB) -PASS -- TEST 'regional_debug_gnu' [11:57, 11:28](562 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:01, 02:45](875 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:48, 02:36](866 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:51, 02:40](873 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:37](872 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:53](951 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 04:05](870 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:51, 02:38](868 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:49, 02:35](865 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:50, 01:39](509 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:54, 02:45](498 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:09, 01:40](1254 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:56, 02:43](866 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:08, 02:54](874 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:31, 07:05](871 MB) - -PASS -- COMPILE 'wam_debug_gnu' [01:55, 01:54] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:44, 03:44] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:05, 09:35](710 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:30, 05:03](715 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:03, 11:39](762 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:06, 04:44](755 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:29, 05:06](713 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:31, 07:04](562 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:52, 02:34](547 MB) -PASS -- TEST 'conus13km_control_gnu' [04:00, 03:20](886 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:14, 05:43](884 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:24, 01:52](565 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:34, 05:34] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:19, 05:47](740 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:45, 03:45] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:56, 02:41](728 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:51, 02:38](722 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:31, 06:55](904 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:32, 06:58](591 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:20, 07:45](908 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:51, 07:15](970 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:52, 03:52] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:53, 02:39](745 MB) - -PASS -- COMPILE 's2swa_gnu' [14:41, 14:41] - -PASS -- COMPILE 's2s_gnu' [14:25, 14:25] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:01, 11:05](1356 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [02:43, 02:42] - -PASS -- COMPILE 's2sw_pdlib_gnu' [14:29, 14:29] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:38, 21:49](1328 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:28, 02:27] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:32, 12:46](1318 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:10] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:02](705 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:49, 12:49] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:27, 05:36](3164 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:24, 16:23] +PASS -- TEST 'cpld_control_gfsv17_intel' [17:45, 17:02](1739 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:36, 17:46](2013 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:01, 08:10](1105 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:57, 19:15](1649 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:51, 04:50] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 22:29](1707 MB) + +PASS -- COMPILE 's2swa_intel' [12:54, 12:52] +PASS -- TEST 'cpld_control_p8_intel' [06:41, 05:51](3216 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:01, 06:08](3191 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:26, 03:29](3250 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [06:41, 05:47](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:25, 03:26](3277 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:17, 05:30](3552 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:33, 05:48](3204 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:29, 04:43](3063 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:40, 05:48](3203 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [11:36, 10:06](3354 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:59, 06:06](3627 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:45, 09:38](4065 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:31, 06:04](4344 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:42, 05:53](3186 MB) + +PASS -- COMPILE 's2sw_intel' [12:22, 12:22] +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:32, 04:46](1728 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:04, 04:17](1786 MB) + +PASS -- COMPILE 's2swa_debug_intel' [04:35, 04:34] +PASS -- TEST 'cpld_debug_p8_intel' [09:13, 08:22](3221 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:17, 04:16] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:33, 05:46](1769 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:36, 11:35] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:07, 04:19](1773 MB) + +PASS -- COMPILE 's2s_intel' [11:33, 11:32] +PASS -- TEST 'cpld_control_c48_intel' [10:00, 09:30](2821 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:39, 16:38] +PASS -- TEST 'cpld_control_p8_faster_intel' [06:29, 05:39](3209 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:30, 15:29] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:58, 17:14](1742 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:56, 08:03](1172 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:24, 19:48](1676 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:15, 04:14] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:07](1711 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 11:11] +PASS -- TEST 'control_flake_intel' [03:33, 03:20](708 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:25](656 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:41, 02:29](663 MB) +PASS -- TEST 'control_latlon_intel' [02:37, 02:26](633 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:42, 02:27](651 MB) +PASS -- TEST 'control_c48_intel' [06:37, 06:25](882 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:35, 06:23](879 MB) +PASS -- TEST 'control_c192_intel' [09:28, 09:05](852 MB) +PASS -- TEST 'control_c384_intel' [10:01, 09:03](1294 MB) +PASS -- TEST 'control_c384gdas_intel' [10:25, 08:26](1405 MB) +PASS -- TEST 'control_stochy_intel' [01:49, 01:38](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:58](506 MB) +PASS -- TEST 'control_lndp_intel' [01:43, 01:33](657 MB) +PASS -- TEST 'control_iovr4_intel' [02:38, 02:28](661 MB) +PASS -- TEST 'control_iovr5_intel' [02:37, 02:26](654 MB) +PASS -- TEST 'control_p8_intel' [03:39, 03:00](1631 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:34, 02:54](1636 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:30, 02:52](1633 MB) +PASS -- TEST 'control_restart_p8_intel' [02:14, 01:40](866 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:27, 02:54](1611 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:08, 01:34](927 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:35, 03:04](1618 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:15, 02:44](1718 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:45, 05:15](1608 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:32, 03:55](1685 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:39, 02:57](1623 MB) +PASS -- TEST 'merra2_thompson_intel' [04:04, 03:28](1632 MB) +PASS -- TEST 'regional_control_intel' [05:35, 05:09](853 MB) +PASS -- TEST 'regional_restart_intel' [03:05, 02:42](1018 MB) +PASS -- TEST 'regional_decomp_intel' [05:55, 05:28](853 MB) +PASS -- TEST 'regional_2threads_intel' [03:38, 03:13](846 MB) +PASS -- TEST 'regional_noquilt_intel' [05:31, 05:06](1367 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:32, 05:08](842 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:38, 05:13](853 MB) +PASS -- TEST 'regional_wofs_intel' [07:09, 06:43](1903 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 10:23] +PASS -- TEST 'rap_control_intel' [08:05, 07:43](1112 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:54, 04:10](1306 MB) +PASS -- TEST 'rap_decomp_intel' [08:31, 08:09](1043 MB) +PASS -- TEST 'rap_2threads_intel' [07:40, 07:14](1184 MB) +PASS -- TEST 'rap_restart_intel' [04:27, 04:02](1108 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:02, 07:37](1106 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:11](1047 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:11, 05:47](1134 MB) +PASS -- TEST 'hrrr_control_intel' [04:14, 03:56](1047 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 04:14](1008 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:58, 03:37](1117 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:23, 02:08](1007 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:00, 07:34](1103 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:29, 09:16](1986 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:17, 09:05](2063 MB) + +PASS -- COMPILE 'csawmg_intel' [10:13, 10:12] +PASS -- TEST 'control_csawmg_intel' [06:25, 06:00](729 MB) +PASS -- TEST 'control_csawmgt_intel' [06:18, 05:54](755 MB) +PASS -- TEST 'control_ras_intel' [03:23, 03:15](748 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:35, 03:34] +PASS -- TEST 'control_csawmg_gnu' [08:39, 08:11](548 MB) +PASS -- TEST 'control_csawmgt_gnu' [08:38, 08:10](550 MB) + +PASS -- COMPILE 'wam_intel' [10:04, 10:04] +PASS -- TEST 'control_wam_intel' [02:12, 02:04](658 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:42, 10:41] +PASS -- TEST 'control_p8_faster_intel' [03:16, 02:39](1619 MB) +PASS -- TEST 'regional_control_faster_intel' [05:04, 04:41](852 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:51, 04:50] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:54, 02:41](820 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:56, 02:40](819 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:08, 02:58](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:02, 02:54](799 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:29, 04:06](871 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [04:27, 04:03](865 MB) +PASS -- TEST 'control_ras_debug_intel' [02:55, 02:47](830 MB) +PASS -- TEST 'control_diag_debug_intel' [03:02, 02:47](876 MB) +PASS -- TEST 'control_debug_p8_intel' [03:22, 02:54](1625 MB) +PASS -- TEST 'regional_debug_intel' [17:39, 17:10](843 MB) +PASS -- TEST 'rap_control_debug_intel' [05:10, 04:58](1179 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:00, 04:50](1204 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:58, 04:45](1211 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:06, 04:56](1192 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:03, 04:54](1218 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:25, 05:01](1295 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:07, 04:56](1206 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:10, 05:00](1211 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:04, 04:54](1211 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:05, 04:54](1214 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:05, 04:51](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:06, 04:54](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:14, 08:03](1205 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:04, 04:53](1197 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 06:08](1208 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:06, 04:53](1206 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:02, 08:39](1215 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:37, 02:35] +PASS -- TEST 'control_csawmg_debug_gnu' [02:43, 02:12](531 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [02:34, 02:12](532 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:16, 03:15] +PASS -- TEST 'control_wam_debug_intel' [05:07, 04:58](521 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 10:09] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 03:49](1166 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:43, 06:25](1056 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:40, 03:20](991 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:29, 06:05](1096 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:23, 03:05](967 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:49, 03:32](944 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:08, 04:49](1038 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:04, 01:50](934 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:22, 12:22] +PASS -- TEST 'conus13km_control_intel' [02:41, 02:08](1183 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:16, 00:51](1126 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:25](1092 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:05, 10:05] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:31, 04:08](992 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:28, 03:28] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:54, 04:42](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:51, 04:42](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [14:36, 14:02](1220 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:59, 14:30](933 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 08:02](1158 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:50, 14:23](1296 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:12, 03:12] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:03, 04:52](1127 MB) + +PASS -- COMPILE 'hafsw_intel' [11:41, 11:41] +PASS -- TEST 'hafs_regional_atm_intel' [05:44, 04:51](742 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:50, 05:34](1105 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:59, 06:59](830 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 13:20](864 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:02, 15:01](885 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:02, 05:22](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:32, 06:33](518 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:06, 02:37](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:32, 07:03](462 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:01, 03:35](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:01, 03:29](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:37, 04:00](592 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:11](403 MB) +PASS -- TEST 'gnv1_nested_intel' [04:25, 03:59](796 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:46, 03:46] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:18, 12:37](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:02, 12:02] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:17, 08:38](635 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:21, 08:37](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:55, 11:55] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:59, 06:16](736 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:05, 11:05] +PASS -- TEST 'hafs_regional_docn_intel' [07:08, 06:16](830 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:12, 06:20](816 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:45, 16:11](1211 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:23, 06:23] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:52, 02:46](1132 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:41, 01:35](1103 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:57, 02:51](1004 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:50, 02:44](1005 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:44, 02:38](1010 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:44, 02:39](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:43, 02:37](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:54, 02:49](992 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 06:11](1065 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:59, 06:07](1045 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:45, 02:41](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:58, 03:52](2440 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:57, 03:51](2497 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [02:59, 02:59] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:11, 06:05](1059 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:04, 06:04] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:41, 02:35](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:59, 00:59] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:57, 00:41](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:44](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:38, 00:28](326 MB) + +PASS -- COMPILE 'atml_intel' [11:36, 11:36] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [04:52, 04:11](1595 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [04:51, 04:11](1610 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:43, 02:12](905 MB) + +PASS -- COMPILE 'atmw_intel' [10:55, 10:55] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:18, 01:45](1654 MB) + +PASS -- COMPILE 'atmwm_intel' [10:32, 10:32] +PASS -- TEST 'control_atmwav_intel' [01:57, 01:39](682 MB) + +PASS -- COMPILE 'atmaero_intel' [10:24, 10:23] +PASS -- TEST 'atmaero_control_p8_intel' [04:40, 04:00](3036 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:36, 04:56](3101 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:30, 05:02](3110 MB) + +PASS -- COMPILE 'atmaq_intel' [10:10, 10:10] + +PASS -- COMPILE 'atmaq_debug_intel' [03:24, 03:24] +PASS -- TEST 'regional_atmaq_debug_intel' [24:54, 23:29](4434 MB) + +PASS -- COMPILE 'atm_gnu' [03:35, 03:35] +PASS -- TEST 'control_c48_gnu' [10:54, 10:43](765 MB) +PASS -- TEST 'control_stochy_gnu' [03:26, 03:16](509 MB) +PASS -- TEST 'control_ras_gnu' [04:49, 04:41](521 MB) +PASS -- TEST 'control_p8_gnu' [05:14, 04:33](1263 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:07, 04:29](1270 MB) +PASS -- TEST 'control_flake_gnu' [10:35, 10:26](554 MB) + +PASS -- COMPILE 'rrfs_gnu' [03:35, 03:35] +PASS -- TEST 'rap_control_gnu' [11:09, 10:49](854 MB) +PASS -- TEST 'rap_decomp_gnu' [11:09, 10:49](856 MB) +PASS -- TEST 'rap_2threads_gnu' [10:20, 09:56](952 MB) +PASS -- TEST 'rap_restart_gnu' [05:52, 05:29](584 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:10, 10:46](857 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:24, 11:05](863 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:16, 07:53](590 MB) +PASS -- TEST 'hrrr_control_gnu' [05:47, 05:29](858 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:47, 05:29](848 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:19, 04:58](931 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:55, 05:36](858 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:05, 02:50](572 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:05, 02:49](665 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:09, 10:43](856 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:32, 03:32] +PASS -- TEST 'control_diag_debug_gnu' [01:50, 01:34](554 MB) +PASS -- TEST 'regional_debug_gnu' [10:43, 10:17](568 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:44, 02:32](870 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:37, 02:29](872 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:43, 02:34](874 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:37](876 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:08, 02:48](954 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:14, 04:04](874 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:43, 02:33](872 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:44, 02:33](873 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:36](504 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:00, 01:51](499 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:05, 01:39](1264 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:44, 02:34](873 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:03, 02:53](876 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:38, 04:16](878 MB) + +PASS -- COMPILE 'wam_debug_gnu' [01:49, 01:49] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:33, 03:33] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:43, 09:25](714 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:10, 04:54](715 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:49, 08:28](764 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:47, 04:28](756 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:11, 04:55](709 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:16, 06:55](561 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:44, 02:30](547 MB) +PASS -- TEST 'conus13km_control_gnu' [03:41, 03:05](888 MB) +PASS -- TEST 'conus13km_2threads_gnu' [05:47, 05:21](894 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:14, 01:48](560 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:17, 05:16] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:07, 05:41](741 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:32, 03:32] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:41, 02:30](724 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:36, 02:27](721 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:20, 06:49](894 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:39, 07:10](583 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:08, 07:43](899 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 07:01](965 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:32, 03:32] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:45, 02:34](748 MB) + +PASS -- COMPILE 's2swa_gnu' [14:36, 14:36] + +PASS -- COMPILE 's2s_gnu' [14:27, 14:26] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:33, 06:46](1356 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [02:28, 02:28] + +PASS -- COMPILE 's2sw_pdlib_gnu' [14:22, 14:22] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:21, 26:38](1310 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:20, 02:20] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:24, 13:45](1333 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:11] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:11, 03:05](699 MB) SYNOPSIS: -Starting Date/Time: 20240328 17:37:37 -Ending Date/Time: 20240328 22:10:57 -Total Time: 04h:33m:53s +Starting Date/Time: 20240331 17:03:20 +Ending Date/Time: 20240331 19:10:50 +Total Time: 02h:07m:57s Compiles Completed: 55/55 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 5fff55f8d9..fa70ca9657 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -e2f840b74edbc6ea1ad9a0f293d9c023ef9b62e7 +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -25,19 +25,19 @@ Submodule hashes used in testing: 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) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -48,365 +48,366 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240315 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_243673 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2259286 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:07, 12:14] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:19, 07:27](1894 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:09] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:31, 13:44](1770 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:47, 14:32](2153 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:40, 06:38](1185 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:09, 15:33](1697 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:46] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:30, 20:28](1722 MB) - -PASS -- COMPILE 's2swa_intel' [13:07, 12:04] -PASS -- TEST 'cpld_control_p8_intel' [10:02, 07:32](2072 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:16, 07:29](2078 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:33, 04:14](1954 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:02, 07:47](1972 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:31, 04:20](1735 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:57, 08:55](2487 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:56, 07:42](2072 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:10, 06:31](1895 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:15, 07:46](2079 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:57, 15:17](2818 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:33, 05:45](2929 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:10, 08:55](3634 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:54, 05:51](3614 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:06, 04:55](2055 MB) - -PASS -- COMPILE 's2sw_intel' [13:06, 11:47] -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:02, 07:19](1761 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:12, 04:05](1822 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:06, 06:46] -PASS -- TEST 'cpld_debug_p8_intel' [09:21, 06:48](2050 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:06, 06:28] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:13, 04:40](1788 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:06, 10:52] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:11, 03:58](1821 MB) - -PASS -- COMPILE 's2s_intel' [12:06, 10:43] -PASS -- TEST 'cpld_control_c48_intel' [09:51, 07:13](2839 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:06, 14:19] -PASS -- TEST 'cpld_control_p8_faster_intel' [10:13, 07:20](2060 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:23] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:06, 13:45](1798 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:19, 06:40](1280 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:05, 15:18](1733 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:20] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:05, 21:29](1771 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:06, 08:02] -PASS -- TEST 'control_flake_intel' [04:19, 02:50](713 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:22, 02:02](663 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:12](668 MB) -PASS -- TEST 'control_latlon_intel' [04:19, 02:08](666 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:24, 02:05](674 MB) -PASS -- TEST 'control_c48_intel' [07:26, 05:44](855 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:45](856 MB) -PASS -- TEST 'control_c192_intel' [09:30, 07:52](959 MB) -PASS -- TEST 'control_c384_intel' [10:08, 07:57](1447 MB) -PASS -- TEST 'control_c384gdas_intel' [11:02, 07:11](1527 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:25](673 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:50](537 MB) -PASS -- TEST 'control_lndp_intel' [03:16, 01:20](664 MB) -PASS -- TEST 'control_iovr4_intel' [03:21, 02:03](665 MB) -PASS -- TEST 'control_iovr5_intel' [04:20, 02:06](659 MB) -PASS -- TEST 'control_p8_intel' [05:04, 02:32](1630 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:03, 02:32](1651 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:04, 02:25](1637 MB) -PASS -- TEST 'control_restart_p8_intel' [04:00, 01:24](918 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:49, 02:31](1623 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:01, 01:21](991 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:48, 02:36](1631 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:47, 02:23](1721 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 04:25](1645 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:01, 03:28](1719 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:04, 02:31](1664 MB) -PASS -- TEST 'merra2_thompson_intel' [05:08, 03:02](1662 MB) -PASS -- TEST 'regional_control_intel' [06:33, 04:29](955 MB) -PASS -- TEST 'regional_restart_intel' [04:32, 02:31](1104 MB) -PASS -- TEST 'regional_decomp_intel' [06:30, 04:46](947 MB) -PASS -- TEST 'regional_2threads_intel' [04:31, 02:54](915 MB) -PASS -- TEST 'regional_noquilt_intel' [06:33, 04:21](1488 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:31](958 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:26](957 MB) -PASS -- TEST 'regional_wofs_intel' [07:30, 05:34](2070 MB) - -PASS -- COMPILE 'rrfs_intel' [09:06, 07:13] -PASS -- TEST 'rap_control_intel' [08:54, 06:28](1200 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 03:26](1409 MB) -PASS -- TEST 'rap_decomp_intel' [08:42, 06:45](1126 MB) -PASS -- TEST 'rap_2threads_intel' [08:42, 06:10](1366 MB) -PASS -- TEST 'rap_restart_intel' [05:51, 03:27](1133 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:53, 06:30](1187 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:45, 06:49](1140 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:02, 04:56](1194 MB) -PASS -- TEST 'hrrr_control_intel' [05:55, 03:21](1073 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:26](1051 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:05](1121 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:53](1027 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:16](1210 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:37](2008 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 07:21](2161 MB) - -PASS -- COMPILE 'csawmg_intel' [08:06, 06:54] -PASS -- TEST 'control_csawmg_intel' [07:33, 05:18](832 MB) -PASS -- TEST 'control_csawmgt_intel' [07:34, 05:13](825 MB) -PASS -- TEST 'control_ras_intel' [04:17, 02:50](833 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:06, 03:52] -PASS -- TEST 'control_csawmg_gnu' [08:40, 06:31](809 MB) -PASS -- TEST 'control_csawmgt_gnu' [08:31, 06:23](810 MB) - -PASS -- COMPILE 'wam_intel' [08:06, 06:28] -PASS -- TEST 'control_wam_intel' [03:23, 01:52](791 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:43] -PASS -- TEST 'control_p8_faster_intel' [05:09, 02:16](1629 MB) -PASS -- TEST 'regional_control_faster_intel' [06:30, 04:10](956 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:39] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:12](817 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:11](824 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:27](842 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:16](833 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:30, 03:24](878 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:28, 03:21](872 MB) -PASS -- TEST 'control_ras_debug_intel' [04:16, 02:15](840 MB) -PASS -- TEST 'control_diag_debug_intel' [04:24, 02:20](881 MB) -PASS -- TEST 'control_debug_p8_intel' [04:39, 02:21](1657 MB) -PASS -- TEST 'regional_debug_intel' [15:33, 13:55](900 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:05, 12:48] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 07:32](1892 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 20:24] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:55, 13:17](1775 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:20, 13:57](2177 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:15, 06:23](1174 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:14, 15:07](1679 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:12] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 20:48](1735 MB) + +PASS -- COMPILE 's2swa_intel' [14:05, 12:56] +PASS -- TEST 'cpld_control_p8_intel' [09:51, 07:51](2090 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:03, 07:28](2071 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:13, 04:07](1966 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 07:38](1973 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:13, 04:19](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:47, 09:02](2497 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:47, 07:52](2063 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:53, 06:26](1887 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:03, 07:32](2091 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:37, 15:36](2816 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 05:42](2920 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:47, 08:34](3635 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:39, 05:15](3614 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:43, 04:59](2057 MB) + +PASS -- COMPILE 's2sw_intel' [13:05, 11:44] +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 07:10](1781 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:47, 04:00](1816 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:05, 05:44] +PASS -- TEST 'cpld_debug_p8_intel' [08:58, 06:55](2127 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:05, 05:22] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:47, 04:51](1789 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:16] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:43, 04:00](1814 MB) + +PASS -- COMPILE 's2s_intel' [10:05, 08:04] +PASS -- TEST 'cpld_control_c48_intel' [09:35, 07:16](2824 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:05, 11:39] +PASS -- TEST 'cpld_control_p8_faster_intel' [09:51, 07:21](2072 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:06, 17:16] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:33, 13:39](1799 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:55, 06:34](1274 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:54, 16:12](1737 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 03:17] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:48, 21:28](1775 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:53] +PASS -- TEST 'control_flake_intel' [04:15, 02:54](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:06](663 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:09](670 MB) +PASS -- TEST 'control_latlon_intel' [04:14, 02:06](670 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:09](662 MB) +PASS -- TEST 'control_c48_intel' [07:20, 05:45](848 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:20, 05:50](860 MB) +PASS -- TEST 'control_c192_intel' [09:27, 07:51](963 MB) +PASS -- TEST 'control_c384_intel' [09:58, 08:03](1438 MB) +PASS -- TEST 'control_c384gdas_intel' [10:39, 07:08](1519 MB) +PASS -- TEST 'control_stochy_intel' [03:14, 01:34](671 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:50](533 MB) +PASS -- TEST 'control_lndp_intel' [03:15, 01:22](663 MB) +PASS -- TEST 'control_iovr4_intel' [04:17, 02:06](660 MB) +PASS -- TEST 'control_iovr5_intel' [03:20, 02:04](664 MB) +PASS -- TEST 'control_p8_intel' [04:47, 02:30](1633 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:45, 02:32](1637 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:47, 02:26](1651 MB) +PASS -- TEST 'control_restart_p8_intel' [04:20, 01:26](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:44, 02:29](1634 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:25](988 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:41, 02:34](1632 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:40, 02:17](1730 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:08, 04:25](1629 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:50, 03:23](1703 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:47, 02:30](1645 MB) +PASS -- TEST 'merra2_thompson_intel' [04:53, 02:55](1652 MB) +PASS -- TEST 'regional_control_intel' [06:43, 04:29](959 MB) +PASS -- TEST 'regional_restart_intel' [04:26, 02:33](1099 MB) +PASS -- TEST 'regional_decomp_intel' [06:42, 04:41](947 MB) +PASS -- TEST 'regional_2threads_intel' [04:47, 02:55](915 MB) +PASS -- TEST 'regional_noquilt_intel' [06:37, 04:21](1486 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 04:24](959 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:33, 04:27](960 MB) +PASS -- TEST 'regional_wofs_intel' [07:29, 05:36](2074 MB) + +PASS -- COMPILE 'rrfs_intel' [09:05, 07:13] +PASS -- TEST 'rap_control_intel' [08:51, 06:47](1191 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 03:29](1409 MB) +PASS -- TEST 'rap_decomp_intel' [08:56, 06:56](1139 MB) +PASS -- TEST 'rap_2threads_intel' [08:34, 06:10](1359 MB) +PASS -- TEST 'rap_restart_intel' [06:34, 03:24](1145 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:52, 06:35](1194 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:51, 06:51](1163 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:56, 04:54](1192 MB) +PASS -- TEST 'hrrr_control_intel' [05:36, 03:22](1072 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:25](1038 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:07](1121 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:14, 01:54](1016 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:46, 06:23](1208 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:17, 07:41](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:59, 07:25](2173 MB) + +PASS -- COMPILE 'csawmg_intel' [08:05, 06:47] +PASS -- TEST 'control_csawmg_intel' [07:28, 05:20](831 MB) +PASS -- TEST 'control_csawmgt_intel' [07:21, 05:16](834 MB) +PASS -- TEST 'control_ras_intel' [04:16, 02:50](805 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:05, 03:47] +PASS -- TEST 'control_csawmg_gnu' [08:31, 06:25](810 MB) +PASS -- TEST 'control_csawmgt_gnu' [08:50, 06:24](814 MB) + +PASS -- COMPILE 'wam_intel' [08:05, 06:59] +PASS -- TEST 'control_wam_intel' [03:23, 01:50](779 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:05, 09:43] +PASS -- TEST 'control_p8_faster_intel' [04:52, 02:17](1638 MB) +PASS -- TEST 'regional_control_faster_intel' [06:26, 04:06](955 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:44] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:17](820 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:19, 02:11](829 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:34](836 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:14, 02:15](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:29, 03:23](874 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:36, 03:20](879 MB) +PASS -- TEST 'control_ras_debug_intel' [04:36, 02:15](832 MB) +PASS -- TEST 'control_diag_debug_intel' [04:30, 02:15](889 MB) +PASS -- TEST 'control_debug_p8_intel' [04:31, 02:20](1655 MB) +PASS -- TEST 'regional_debug_intel' [15:25, 14:02](895 MB) PASS -- TEST 'rap_control_debug_intel' [05:20, 04:04](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:18, 03:52](1216 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:59](1226 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:59](1226 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:59](1229 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:27, 04:08](1311 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:01](1213 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:04](1213 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:59](1210 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:02](1220 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:19, 04:02](1215 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:19, 03:54](1229 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 06:26](1227 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 03:56](1209 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 05:05](1224 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:19, 03:55](1227 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:55, 06:45](1226 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:48] -PASS -- TEST 'control_csawmg_debug_gnu' [03:33, 01:41](795 MB) -PASS -- TEST 'control_csawmgt_debug_gnu' [03:29, 01:37](790 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:06, 02:37] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:29] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 03:21](1270 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:57, 05:20](1136 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 02:50](1018 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 05:13](1239 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:45, 02:37](1031 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 02:58](1010 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:51, 04:01](1094 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:34](969 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:06, 09:23] -PASS -- TEST 'conus13km_control_intel' [03:44, 01:39](1292 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:32, 00:44](1205 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:32, 01:05](1153 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 07:02] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 03:39](1061 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:52] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:52](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:49](1100 MB) -PASS -- TEST 'conus13km_debug_intel' [13:41, 11:31](1340 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:34, 11:44](983 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:32, 06:36](1238 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:33, 11:32](1400 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:00] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 03:59](1150 MB) - -PASS -- COMPILE 'hafsw_intel' [12:07, 10:37] -PASS -- TEST 'hafs_regional_atm_intel' [08:03, 05:25](878 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 04:59](1281 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:20](958 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:06, 13:58](995 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:14, 15:00](1015 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:28](607 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:00](617 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 02:55](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:22, 07:56](545 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:51](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:45, 03:41](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:51](679 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:28](457 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:18] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:43, 11:14](630 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:38] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:51, 16:35](724 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:58, 15:56](814 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:40] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:05, 10:43](786 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:06, 10:15] -PASS -- TEST 'hafs_regional_docn_intel' [08:04, 05:28](955 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:06, 05:25](928 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:45, 16:23](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:05, 05:39] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:08](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:19](1068 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:12, 02:04](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:07](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:11, 02:06](1011 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:11, 02:09](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:11, 02:10](1144 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:12, 02:03](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:51, 04:59](1169 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:52, 04:55](1137 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:07](1146 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:01](2435 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:12, 03:03](2435 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 02:30] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:12, 05:10](1070 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:05, 05:34] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:10, 02:08](1148 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:48] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:56](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:53](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:33](560 MB) - -PASS -- COMPILE 'atml_intel' [09:06, 07:24] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:18, 06:06](1632 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:22, 06:20](1636 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:49, 03:07](943 MB) - -PASS -- COMPILE 'atmw_intel' [11:06, 10:01] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:55, 01:36](1684 MB) - -PASS -- COMPILE 'atmwm_intel' [12:05, 10:24] -PASS -- TEST 'control_atmwav_intel' [03:44, 01:31](703 MB) - -PASS -- COMPILE 'atmaero_intel' [09:06, 07:33] -PASS -- TEST 'atmaero_control_p8_intel' [05:59, 03:37](1779 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:59, 04:18](1806 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 04:30](1823 MB) - -PASS -- COMPILE 'atmaq_intel' [09:07, 07:51] - -PASS -- COMPILE 'atmaq_debug_intel' [06:05, 04:14] -PASS -- TEST 'regional_atmaq_debug_intel' [19:35, 16:32](4597 MB) - -PASS -- COMPILE 'atm_gnu' [07:07, 05:53] -PASS -- TEST 'control_c48_gnu' [11:31, 09:27](881 MB) -PASS -- TEST 'control_stochy_gnu' [04:17, 02:21](728 MB) -PASS -- TEST 'control_ras_gnu' [05:16, 03:44](735 MB) -PASS -- TEST 'control_p8_gnu' [06:02, 03:34](1514 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 03:30](1514 MB) -PASS -- TEST 'control_flake_gnu' [06:17, 04:23](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [07:06, 05:53] -PASS -- TEST 'rap_control_gnu' [09:58, 07:40](1092 MB) -PASS -- TEST 'rap_decomp_gnu' [09:42, 07:46](1088 MB) -PASS -- TEST 'rap_2threads_gnu' [09:40, 07:07](1122 MB) -PASS -- TEST 'rap_restart_gnu' [05:51, 03:53](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:04, 07:39](1083 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:42, 07:46](1086 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:54, 05:43](883 MB) -PASS -- TEST 'hrrr_control_gnu' [05:46, 03:58](1072 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:46, 04:00](1135 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:44, 03:42](1029 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:40, 04:00](1072 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:21, 02:04](882 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:21, 02:02](935 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:04, 07:35](1080 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:07, 07:05] -PASS -- TEST 'control_diag_debug_gnu' [03:25, 01:14](774 MB) -PASS -- TEST 'regional_debug_gnu' [08:35, 06:19](924 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:58](1098 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:56](1094 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 01:56](1091 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 01:57](1091 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:28, 02:04](1266 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 03:02](1094 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 02:00](1095 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:19, 01:56](1088 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:11](724 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:18](724 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:14](1506 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:56](1096 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:12](1100 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:58, 03:18](1102 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:27] -PASS -- TEST 'control_wam_debug_gnu' [03:23, 01:52](499 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:54] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:39, 07:18](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:01, 03:48](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:56, 06:42](970 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:44, 03:25](891 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:51, 03:54](951 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:52, 05:22](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:36, 01:59](857 MB) -PASS -- TEST 'conus13km_control_gnu' [04:47, 02:35](1266 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:29, 01:02](1173 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:33, 01:27](949 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:06, 11:48] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:42, 04:23](991 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:06, 09:58] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 01:55](979 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:57](966 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:36, 05:28](1282 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:34, 05:32](970 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:32, 03:17](1192 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:33, 05:23](1350 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [11:06, 09:57] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:58](1002 MB) - -PASS -- COMPILE 's2swa_gnu' [21:07, 19:11] - -PASS -- COMPILE 's2s_gnu' [19:07, 17:33] - -PASS -- COMPILE 's2swa_debug_gnu' [09:06, 07:48] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:07, 15:10] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:06, 03:51] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:07, 14:54] +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 03:55](1211 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 03:57](1229 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:14, 03:55](1224 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 03:54](1216 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:21, 04:09](1312 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:53, 04:03](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 04:01](1220 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:00](1219 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 03:58](1221 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:53](1212 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:59](1228 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 06:27](1225 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:14, 03:54](1211 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:05, 04:51](1232 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:17, 04:00](1214 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 06:50](1215 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:05, 04:05] +PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 01:45](791 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [03:27, 01:45](790 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:05, 02:41] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:05, 06:43] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:39, 03:15](1272 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:27](1144 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:48, 02:51](1016 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:27, 05:11](1285 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 02:40](1042 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:31, 03:00](995 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:50, 04:13](1097 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:14, 01:38](979 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:24, 08:37] +PASS -- TEST 'conus13km_control_intel' [03:33, 01:43](1313 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:26, 00:45](1211 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:03](1168 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:05, 06:51] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:41](1082 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:35] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 03:52](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:52](1098 MB) +PASS -- TEST 'conus13km_debug_intel' [13:28, 11:54](1344 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:27, 12:07](999 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:25, 06:36](1247 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:24, 11:34](1440 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:35] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:54](1152 MB) + +PASS -- COMPILE 'hafsw_intel' [11:18, 10:07] +PASS -- TEST 'hafs_regional_atm_intel' [07:58, 05:17](885 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:01](1267 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:07, 06:19](952 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:44, 14:03](985 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:04, 15:07](993 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:46, 05:25](608 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:11, 06:57](617 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:36, 02:47](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:50, 07:51](538 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:35, 03:55](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 03:38](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:44](677 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:25](451 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:05, 02:54] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:41, 11:12](626 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:17, 09:56] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:45, 16:49](735 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:05, 16:23](802 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:04] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:14, 10:13](788 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:18, 10:02] +PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:25](952 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:55, 05:30](928 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:29](1337 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:18, 07:08] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:08](1155 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:20](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:11, 02:03](1009 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:09, 02:09](1008 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:06](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:12](1144 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:09, 02:10](1134 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:09, 02:04](1011 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 04:55](1154 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:40, 04:51](1150 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:07](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 02:59](2441 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:03](2439 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:54] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:31, 05:09](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:23, 06:46] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:08](1144 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:44] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:54](335 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:50](558 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:30](563 MB) + +PASS -- COMPILE 'atml_intel' [09:18, 07:27] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:04, 05:41](1628 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:01, 05:43](1628 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:33, 02:56](944 MB) + +PASS -- COMPILE 'atmw_intel' [11:06, 09:34] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:31](1693 MB) + +PASS -- COMPILE 'atmwm_intel' [11:06, 09:23] +PASS -- TEST 'control_atmwav_intel' [03:37, 01:29](691 MB) + +PASS -- COMPILE 'atmaero_intel' [09:06, 07:04] +PASS -- TEST 'atmaero_control_p8_intel' [06:09, 03:37](1783 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:12, 04:14](1807 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:08, 04:27](1820 MB) + +PASS -- COMPILE 'atmaq_intel' [08:06, 06:48] + +PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:47] +PASS -- TEST 'regional_atmaq_debug_intel' [18:54, 16:21](4589 MB) + +PASS -- COMPILE 'atm_gnu' [05:05, 04:03] +PASS -- TEST 'control_c48_gnu' [11:36, 09:47](881 MB) +PASS -- TEST 'control_stochy_gnu' [04:29, 02:14](730 MB) +PASS -- TEST 'control_ras_gnu' [05:26, 03:38](734 MB) +PASS -- TEST 'control_p8_gnu' [05:47, 03:32](1514 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 03:27](1512 MB) +PASS -- TEST 'control_flake_gnu' [06:22, 04:18](805 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:05, 04:20] +PASS -- TEST 'rap_control_gnu' [09:36, 07:38](1088 MB) +PASS -- TEST 'rap_decomp_gnu' [09:36, 07:52](1095 MB) +PASS -- TEST 'rap_2threads_gnu' [09:09, 07:10](1146 MB) +PASS -- TEST 'rap_restart_gnu' [05:51, 03:54](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:09, 07:44](1092 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:47, 07:48](1083 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:48, 05:47](885 MB) +PASS -- TEST 'hrrr_control_gnu' [05:42, 03:59](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:41, 03:58](1136 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 03:35](1025 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 04:03](1072 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:05](880 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:00](936 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:52, 07:34](1080 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:05, 06:03] +PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:10](776 MB) +PASS -- TEST 'regional_debug_gnu' [08:26, 06:24](925 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:56](1099 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:12, 01:54](1090 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:11, 01:58](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:12, 01:57](1096 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:20, 02:04](1270 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:13, 03:04](1097 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:13, 01:59](1099 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:13, 01:57](1095 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:11, 01:11](725 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:11, 01:17](725 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:27, 01:19](1505 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:56](1103 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:13, 02:08](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:14](1113 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:36] +PASS -- TEST 'control_wam_debug_gnu' [03:17, 01:55](500 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:05, 04:39] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:44, 07:17](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:47](962 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:42, 06:55](973 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:31](883 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 03:47](953 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:50, 05:21](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:22, 01:57](857 MB) +PASS -- TEST 'conus13km_control_gnu' [04:34, 02:35](1264 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:28, 01:03](1173 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:27, 01:24](933 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:47, 11:46] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:26, 04:17](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:06, 09:59] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 01:57](979 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:58](968 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:26, 05:20](1280 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:26, 05:35](973 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:24, 03:16](1189 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:29, 05:24](1350 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:06, 12:18] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 01:55](1003 MB) + +PASS -- COMPILE 's2swa_gnu' [18:06, 16:56] + +PASS -- COMPILE 's2s_gnu' [18:06, 16:06] + +PASS -- COMPILE 's2swa_debug_gnu' [13:07, 11:51] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:07, 17:02] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:06, 11:53] + +PASS -- COMPILE 'datm_cdeps_gnu' [19:08, 17:15] SYNOPSIS: -Starting Date/Time: 20240328 07:25:07 -Ending Date/Time: 20240328 08:48:24 -Total Time: 01h:23m:59s +Starting Date/Time: 20240331 12:02:15 +Ending Date/Time: 20240331 13:24:55 +Total Time: 01h:23m:15s Compiles Completed: 55/55 Tests Completed: 239/239 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index c8a07b419a..c647aedf1f 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -055b13ffbe0e49abbcf8d4e503ee617a8e78e5be +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -25,19 +25,19 @@ Submodule hashes used in testing: 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) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -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/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_637067 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_1584801 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [48:28, 38:59] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:55, 06:48](1801 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:32, 48:37] -PASS -- TEST 'cpld_control_gfsv17_intel' [24:13, 20:35](1665 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:21, 22:11](1877 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:23, 10:20](990 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:43, 23:49](1634 MB) - -PASS -- COMPILE 's2swa_intel' [48:28, 38:59] -PASS -- TEST 'cpld_control_p8_intel' [10:32, 07:33](1829 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:57, 07:28](1829 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:44, 04:18](1710 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:32, 07:28](1840 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:40, 04:30](1731 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:19, 07:13](2263 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:19, 07:38](1824 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:41, 06:22](1776 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:51, 07:27](1831 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:47, 07:00](1791 MB) - -PASS -- COMPILE 's2sw_intel' [44:25, 35:42] -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 05:54](1663 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:46, 05:47](1706 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:12, 05:18] -PASS -- TEST 'cpld_debug_p8_intel' [15:04, 10:34](1853 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:10, 05:00] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:40, 07:14](1675 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [40:22, 32:19] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:46, 05:40](1717 MB) - -PASS -- COMPILE 's2s_intel' [35:20, 33:11] -PASS -- TEST 'cpld_control_c48_intel' [15:14, 12:38](2794 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:46, 33:17] -PASS -- TEST 'cpld_control_p8_faster_intel' [12:26, 08:02](1828 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [54:30, 52:38] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:36, 20:48](1688 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:53, 10:30](1031 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:22, 24:18](1659 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 05:02] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:58, 32:05](1681 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [36:22, 34:46] -PASS -- TEST 'control_flake_intel' [06:27, 04:26](645 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 03:20](597 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 03:50](599 MB) -PASS -- TEST 'control_latlon_intel' [05:28, 03:24](599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 03:26](596 MB) -PASS -- TEST 'control_c48_intel' [12:42, 10:09](838 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:44, 10:08](844 MB) -PASS -- TEST 'control_c192_intel' [15:00, 12:22](732 MB) -PASS -- TEST 'control_c384_intel' [18:56, 15:44](900 MB) -PASS -- TEST 'control_c384gdas_intel' [18:42, 13:47](1009 MB) -PASS -- TEST 'control_stochy_intel' [04:29, 02:18](600 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:17](434 MB) -PASS -- TEST 'control_lndp_intel' [04:30, 02:10](602 MB) -PASS -- TEST 'control_iovr4_intel' [05:32, 03:22](598 MB) -PASS -- TEST 'control_iovr5_intel' [05:32, 03:24](598 MB) -PASS -- TEST 'control_p8_intel' [06:39, 04:00](1574 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 03:58](1578 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:56, 03:53](1572 MB) -PASS -- TEST 'control_restart_p8_intel' [05:12, 02:14](809 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:53](1575 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:14, 02:07](837 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:45, 04:07](1560 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:45, 03:43](1669 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:21, 07:01](1578 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:04, 05:11](1629 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:55, 04:04](1580 MB) -PASS -- TEST 'merra2_thompson_intel' [08:18, 04:40](1587 MB) -PASS -- TEST 'regional_control_intel' [10:08, 07:09](759 MB) -PASS -- TEST 'regional_restart_intel' [05:38, 03:46](934 MB) -PASS -- TEST 'regional_decomp_intel' [10:08, 07:27](755 MB) -PASS -- TEST 'regional_2threads_intel' [07:09, 04:23](756 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:04, 07:05](762 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:37, 07:00](762 MB) - -PASS -- COMPILE 'rrfs_intel' [34:20, 32:50] -PASS -- TEST 'rap_control_intel' [12:09, 10:00](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:10, 05:31](1215 MB) -PASS -- TEST 'rap_decomp_intel' [12:54, 10:35](980 MB) -PASS -- TEST 'rap_2threads_intel' [12:04, 09:32](1087 MB) -PASS -- TEST 'rap_restart_intel' [08:19, 05:10](990 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:23, 09:58](988 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:22, 10:32](985 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:03, 07:33](999 MB) -PASS -- TEST 'hrrr_control_intel' [07:58, 05:06](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:19](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:26, 04:47](1058 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:47](917 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:29, 09:50](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:15](1945 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:32, 11:59](1935 MB) - -PASS -- COMPILE 'csawmg_intel' [33:18, 30:54] -PASS -- TEST 'control_csawmg_intel' [09:39, 08:04](689 MB) -PASS -- TEST 'control_csawmgt_intel' [09:39, 07:55](693 MB) -PASS -- TEST 'control_ras_intel' [06:27, 04:21](665 MB) - -PASS -- COMPILE 'wam_intel' [31:19, 29:42] -PASS -- TEST 'control_wam_intel' [04:21, 02:43](499 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [33:19, 31:26] -PASS -- TEST 'control_p8_faster_intel' [06:36, 03:31](1577 MB) -PASS -- TEST 'regional_control_faster_intel' [08:47, 06:37](762 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 05:33] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 03:22](758 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:33, 03:20](753 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:45](760 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:24, 03:20](766 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:17](812 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:46, 05:08](804 MB) -PASS -- TEST 'control_ras_debug_intel' [05:24, 03:26](767 MB) -PASS -- TEST 'control_diag_debug_intel' [05:32, 03:26](819 MB) -PASS -- TEST 'control_debug_p8_intel' [05:53, 03:34](1588 MB) -PASS -- TEST 'regional_debug_intel' [23:57, 21:37](778 MB) -PASS -- TEST 'rap_control_debug_intel' [08:27, 06:07](1153 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:26, 05:52](1150 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 05:58](1152 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:25, 06:00](1147 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:59](1154 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:38, 09:54](1231 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 06:06](1147 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 06:06](1152 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:02](1150 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 05:59](1150 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:27, 05:54](1146 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 05:59](1151 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:37, 09:48](1142 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 05:56](1146 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:29, 07:17](1150 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:27, 06:01](1149 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:29, 10:22](1157 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:07, 03:59] -PASS -- TEST 'control_wam_debug_intel' [08:20, 06:07](470 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:18, 29:42] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:51, 05:23](1082 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:49, 08:32](902 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:45, 04:42](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:49, 08:18](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:45, 04:17](904 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:45, 05:01](850 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:17, 06:11](896 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:45](845 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 42:50] -PASS -- TEST 'conus13km_control_intel' [05:06, 02:56](1100 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:25](1049 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:34](1025 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:20, 30:58] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 05:25](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:09, 04:15] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:36, 05:56](1028 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:54](1030 MB) -PASS -- TEST 'conus13km_debug_intel' [21:03, 18:35](1138 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:04, 18:38](848 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:34, 10:48](1086 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:56, 18:32](1225 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:07, 04:08] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:53, 06:23](1076 MB) - -PASS -- COMPILE 'hafsw_intel' [37:20, 35:30] -PASS -- TEST 'hafs_regional_atm_intel' [09:18, 07:01](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:30](1092 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:38, 09:21](772 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:25, 16:19](802 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:46, 18:04](824 MB) -PASS -- TEST 'gnv1_nested_intel' [08:15, 05:43](772 MB) - -PASS -- COMPILE 'hafs_all_intel' [33:22, 32:03] -PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:31](763 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 08:36](749 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:22] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:38](1066 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:11](1033 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 03:32](921 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:19, 03:33](924 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:18, 03:37](920 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:38](1058 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:39](1057 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:18, 03:28](922 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:12, 07:49](887 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 07:46](844 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:15, 03:37](1051 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 05:02](2398 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 05:02](2405 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:10] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 07:56](1012 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:09, 07:52] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:32](1080 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:39] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:34](229 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:16](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:55](250 MB) - -PASS -- COMPILE 'atml_intel' [39:21, 37:37] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:41, 08:57](1599 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:43, 08:45](1608 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:49, 04:09](870 MB) - -PASS -- COMPILE 'atmw_intel' [33:19, 32:15] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:41, 02:20](1620 MB) - -PASS -- COMPILE 'atmwm_intel' [33:19, 31:17] -PASS -- TEST 'control_atmwav_intel' [05:15, 02:11](608 MB) - -PASS -- COMPILE 'atmaero_intel' [32:18, 30:42] -PASS -- TEST 'atmaero_control_p8_intel' [08:32, 05:09](1692 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:30, 06:21](1727 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:15, 06:43](1733 MB) +PASS -- COMPILE 's2swa_32bit_intel' [39:26, 38:12] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:58, 07:22](1790 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:36, 49:40] +PASS -- TEST 'cpld_control_gfsv17_intel' [24:23, 21:05](1660 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:24, 22:09](1928 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:24, 10:21](999 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:56, 24:05](1633 MB) + +PASS -- COMPILE 's2swa_intel' [40:26, 38:36] +PASS -- TEST 'cpld_control_p8_intel' [11:52, 08:35](1827 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:26, 08:15](1822 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:38, 04:45](1708 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:58, 08:32](1857 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 04:49](1730 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:40, 07:53](2263 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:34, 08:43](1827 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:01, 07:05](1778 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:28, 08:17](1824 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:04, 07:59](1783 MB) + +PASS -- COMPILE 's2sw_intel' [38:25, 36:51] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:27, 05:58](1658 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:50, 05:58](1717 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:28] +PASS -- TEST 'cpld_debug_p8_intel' [14:04, 10:40](1840 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:44] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:14](1678 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:22, 32:09] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:26, 06:37](1712 MB) + +PASS -- COMPILE 's2s_intel' [33:23, 32:19] +PASS -- TEST 'cpld_control_c48_intel' [15:12, 12:45](2796 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:55, 33:11] +PASS -- TEST 'cpld_control_p8_faster_intel' [12:05, 08:17](1824 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [50:32, 49:12] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:39, 20:45](1681 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:46, 10:32](1034 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:45, 24:35](1664 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:28] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:25, 32:13](1692 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [36:23, 34:22] +PASS -- TEST 'control_flake_intel' [06:28, 04:29](645 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 03:16](597 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:35, 03:35](601 MB) +PASS -- TEST 'control_latlon_intel' [05:28, 03:19](600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 03:24](596 MB) +PASS -- TEST 'control_c48_intel' [11:43, 10:04](850 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:40, 10:08](838 MB) +PASS -- TEST 'control_c192_intel' [14:50, 12:38](726 MB) +PASS -- TEST 'control_c384_intel' [19:56, 16:29](894 MB) +PASS -- TEST 'control_c384gdas_intel' [18:41, 13:51](1018 MB) +PASS -- TEST 'control_stochy_intel' [04:28, 02:17](598 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:17](436 MB) +PASS -- TEST 'control_lndp_intel' [04:29, 02:11](600 MB) +PASS -- TEST 'control_iovr4_intel' [05:30, 03:20](599 MB) +PASS -- TEST 'control_iovr5_intel' [05:33, 03:21](603 MB) +PASS -- TEST 'control_p8_intel' [06:31, 04:01](1572 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:53, 04:07](1571 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:52, 03:54](1577 MB) +PASS -- TEST 'control_restart_p8_intel' [05:09, 02:06](816 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 03:55](1572 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:14, 02:04](841 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:37, 04:08](1570 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:39, 03:46](1662 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:18, 07:07](1576 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:00, 05:20](1641 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:48, 04:03](1578 MB) +PASS -- TEST 'merra2_thompson_intel' [08:11, 04:46](1586 MB) +PASS -- TEST 'regional_control_intel' [10:06, 07:12](759 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:51](933 MB) +PASS -- TEST 'regional_decomp_intel' [10:06, 07:33](764 MB) +PASS -- TEST 'regional_2threads_intel' [07:09, 04:27](760 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:04, 07:02](759 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:46, 07:05](761 MB) + +PASS -- COMPILE 'rrfs_intel' [34:25, 33:02] +PASS -- TEST 'rap_control_intel' [13:02, 10:08](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:12, 05:41](1220 MB) +PASS -- TEST 'rap_decomp_intel' [12:57, 10:41](984 MB) +PASS -- TEST 'rap_2threads_intel' [12:27, 09:39](1088 MB) +PASS -- TEST 'rap_restart_intel' [08:27, 05:19](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:25, 10:07](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:58, 10:41](980 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:19, 07:43](996 MB) +PASS -- TEST 'hrrr_control_intel' [07:53, 05:09](987 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:53, 05:25](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:20, 04:47](1057 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:49](916 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:29, 09:59](990 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:21](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:29, 11:58](1941 MB) + +PASS -- COMPILE 'csawmg_intel' [32:20, 31:11] +PASS -- TEST 'control_csawmg_intel' [10:55, 08:09](697 MB) +PASS -- TEST 'control_csawmgt_intel' [09:48, 07:58](691 MB) +PASS -- TEST 'control_ras_intel' [06:26, 04:25](666 MB) + +PASS -- COMPILE 'wam_intel' [31:20, 29:49] +PASS -- TEST 'control_wam_intel' [04:27, 02:47](502 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [33:18, 31:33] +PASS -- TEST 'control_p8_faster_intel' [06:38, 03:32](1579 MB) +PASS -- TEST 'regional_control_faster_intel' [08:44, 06:36](767 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:57] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:24, 03:21](763 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:20](761 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:45](765 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:22, 03:22](766 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:40, 05:24](810 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [07:39, 05:13](812 MB) +PASS -- TEST 'control_ras_debug_intel' [05:21, 03:26](778 MB) +PASS -- TEST 'control_diag_debug_intel' [05:33, 03:32](816 MB) +PASS -- TEST 'control_debug_p8_intel' [05:50, 03:35](1595 MB) +PASS -- TEST 'regional_debug_intel' [23:52, 21:43](785 MB) +PASS -- TEST 'rap_control_debug_intel' [08:26, 06:11](1155 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:27, 05:59](1151 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 06:02](1153 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 06:03](1155 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 06:04](1152 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:19](1239 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:27, 06:10](1153 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:12](1156 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:03](1156 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:00](1152 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:56](1157 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 06:03](1154 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:35, 09:51](1146 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 06:02](1154 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:21, 07:24](1158 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:01](1153 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:35, 10:29](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:07, 04:08] +PASS -- TEST 'control_wam_debug_intel' [08:31, 06:10](441 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:20, 30:01] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:28, 05:15](1082 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:04, 08:53](898 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:07, 04:24](872 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:04, 08:24](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:07, 04:04](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:07, 04:41](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:48, 06:50](897 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:45, 03:01](841 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:26, 42:16] +PASS -- TEST 'conus13km_control_intel' [06:03, 03:08](1108 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:34](1049 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:51, 01:39](1027 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:18, 30:19] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:00, 05:48](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:53] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 05:56](1030 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 05:48](1030 MB) +PASS -- TEST 'conus13km_debug_intel' [21:03, 18:24](1143 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 18:39](852 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:34](1085 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:30](1206 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:17] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:31, 06:05](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [36:23, 34:58] +PASS -- TEST 'hafs_regional_atm_intel' [09:20, 06:57](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:39](1084 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:44, 09:34](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:37, 16:26](802 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:53, 18:48](823 MB) +PASS -- TEST 'gnv1_nested_intel' [08:31, 06:07](774 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:21, 32:01] +PASS -- TEST 'hafs_regional_docn_intel' [11:39, 08:48](763 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:40, 08:48](745 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:10, 08:07] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:41, 03:50](1059 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:10](1048 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:41, 03:53](929 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:58](926 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:41, 03:53](924 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:42, 03:54](1064 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:42, 04:05](1061 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:20, 04:01](925 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:33, 08:11](887 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:32, 08:03](840 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:22, 03:54](1056 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:43, 05:34](2345 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:43, 05:23](2407 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:33] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:04](1010 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:03] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:43](1053 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:52] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:50](229 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 01:38](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:51](251 MB) + +PASS -- COMPILE 'atml_intel' [36:22, 34:28] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:51, 09:09](1609 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:49, 09:15](1602 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 04:40](870 MB) + +PASS -- COMPILE 'atmw_intel' [33:21, 31:33] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 02:24](1610 MB) + +PASS -- COMPILE 'atmwm_intel' [32:21, 30:41] +PASS -- TEST 'control_atmwav_intel' [05:12, 02:28](608 MB) + +PASS -- COMPILE 'atmaero_intel' [32:19, 30:39] +PASS -- TEST 'atmaero_control_p8_intel' [08:28, 05:21](1699 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:21, 06:29](1720 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:45](1735 MB) SYNOPSIS: -Starting Date/Time: 20240328 16:20:50 -Ending Date/Time: 20240328 20:03:36 -Total Time: 03h:43m:20s +Starting Date/Time: 20240331 17:05:36 +Ending Date/Time: 20240331 20:36:53 +Total Time: 03h:31m:58s Compiles Completed: 33/33 Tests Completed: 161/161 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 247559746c..7ee8c1f320 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -3747664d1511e058657743b4b84f7e51566ac419 +be233c68ae3c7010234ed89394531449f51ee522 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -25,19 +25,19 @@ Submodule hashes used in testing: 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) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -48,277 +48,277 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4406 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_188248 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:06, 13:50] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:33, 05:10](3181 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:51] -PASS -- TEST 'cpld_control_gfsv17_intel' [27:12, 16:33](1738 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:03, 17:23](2020 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:08](1113 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:02, 18:35](1655 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:39] -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:00, 22:57](1694 MB) - -PASS -- COMPILE 's2swa_intel' [15:09, 14:04] -PASS -- TEST 'cpld_control_p8_intel' [14:18, 05:38](3213 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:43, 05:31](3210 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:46, 03:20](3255 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:19, 05:36](3235 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:45, 03:25](3273 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:30, 06:05](3548 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:13, 05:37](3205 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:12, 04:41](3057 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:42, 05:35](3209 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:58, 10:15](3341 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:14, 06:33](3623 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:45, 11:57](4134 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:30, 07:22](4375 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:25, 05:21](3173 MB) - -PASS -- COMPILE 's2sw_intel' [16:07, 14:14] -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:24, 04:27](1734 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:46, 04:22](1777 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:15] -PASS -- TEST 'cpld_debug_p8_intel' [13:34, 08:41](3246 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:08] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:16, 05:52](1748 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:06, 12:27] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:19](1778 MB) - -PASS -- COMPILE 's2s_intel' [15:06, 13:37] -PASS -- TEST 'cpld_control_c48_intel' [17:08, 07:59](2827 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:46] -PASS -- TEST 'cpld_control_p8_faster_intel' [15:38, 05:14](3210 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:09, 17:25] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:14, 16:31](1773 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:32, 08:07](1170 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:18, 18:46](1675 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:05] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 24:16](1714 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:07, 11:57] -PASS -- TEST 'control_flake_intel' [11:21, 03:29](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:24, 02:27](646 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:29, 02:33](659 MB) -PASS -- TEST 'control_latlon_intel' [09:20, 02:28](653 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:28, 02:37](650 MB) -PASS -- TEST 'control_c48_intel' [11:26, 05:55](859 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:25, 05:55](876 MB) -PASS -- TEST 'control_c192_intel' [16:34, 09:11](852 MB) -PASS -- TEST 'control_c384_intel' [18:45, 10:06](1244 MB) -PASS -- TEST 'control_c384gdas_intel' [18:52, 09:04](1357 MB) -PASS -- TEST 'control_stochy_intel' [10:20, 01:43](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:22, 01:02](505 MB) -PASS -- TEST 'control_lndp_intel' [08:19, 01:36](657 MB) -PASS -- TEST 'control_iovr4_intel' [09:23, 02:30](654 MB) -PASS -- TEST 'control_iovr5_intel' [08:21, 02:31](649 MB) -PASS -- TEST 'control_p8_intel' [06:11, 03:03](1625 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:23, 03:04](1630 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 02:58](1626 MB) -PASS -- TEST 'control_restart_p8_intel' [04:16, 01:39](895 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:13, 02:51](1617 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:02, 01:37](931 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:12, 03:00](1620 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:11, 03:09](1709 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:46, 05:21](1618 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 03:59](1690 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:30, 02:58](1639 MB) -PASS -- TEST 'merra2_thompson_intel' [07:55, 03:26](1649 MB) -PASS -- TEST 'regional_control_intel' [08:38, 05:15](857 MB) -PASS -- TEST 'regional_restart_intel' [04:35, 02:44](1021 MB) -PASS -- TEST 'regional_decomp_intel' [08:39, 05:27](855 MB) -PASS -- TEST 'regional_2threads_intel' [05:40, 03:39](845 MB) -PASS -- TEST 'regional_noquilt_intel' [07:42, 05:07](1369 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:48, 05:10](859 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:09](858 MB) -PASS -- TEST 'regional_wofs_intel' [08:39, 06:38](1927 MB) - -PASS -- COMPILE 'rrfs_intel' [13:10, 11:47] -PASS -- TEST 'rap_control_intel' [10:31, 07:44](1112 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:41](1304 MB) -PASS -- TEST 'rap_decomp_intel' [10:58, 08:11](1026 MB) -PASS -- TEST 'rap_2threads_intel' [09:53, 07:56](1172 MB) -PASS -- TEST 'rap_restart_intel' [06:29, 04:02](1102 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:23, 07:41](1105 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:38, 08:07](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:38, 05:47](1131 MB) -PASS -- TEST 'hrrr_control_intel' [06:22, 03:59](1034 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:50, 04:08](1023 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:51, 03:23](1113 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:16](994 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:33, 07:35](1100 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:13](1998 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:55](2077 MB) - -PASS -- COMPILE 'csawmg_intel' [12:08, 10:29] -PASS -- TEST 'control_csawmg_intel' [08:45, 06:12](751 MB) -PASS -- TEST 'control_csawmgt_intel' [07:40, 05:55](747 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:20](741 MB) - -PASS -- COMPILE 'wam_intel' [12:07, 10:48] -PASS -- TEST 'control_wam_intel' [04:16, 02:12](664 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 11:27] -PASS -- TEST 'control_p8_faster_intel' [05:28, 02:47](1617 MB) -PASS -- TEST 'regional_control_faster_intel' [06:40, 04:39](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 05:00] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:47](820 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:38](811 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:11](822 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:51](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:14](863 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:35, 04:09](861 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:52](826 MB) -PASS -- TEST 'control_diag_debug_intel' [04:33, 03:03](871 MB) -PASS -- TEST 'control_debug_p8_intel' [04:42, 02:51](1639 MB) -PASS -- TEST 'regional_debug_intel' [19:39, 17:41](841 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 05:02](1203 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:56](1200 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 05:05](1203 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 05:05](1204 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:04](1198 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:19](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:58](1199 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:58](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:19](1194 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:51](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:03](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:59](1203 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:02](1211 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:49](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:45](1209 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:03](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:34](1202 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:06, 03:56] -PASS -- TEST 'control_wam_debug_intel' [07:17, 05:14](506 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:07, 13:45] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:58, 04:36](1166 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:26, 06:30](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:02, 03:26](984 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:58, 06:38](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:22, 03:04](962 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:48, 03:34](934 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:33, 04:50](1034 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:21, 01:52](933 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:07, 14:54] -PASS -- TEST 'conus13km_control_intel' [04:00, 02:04](1206 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:46, 01:03](1119 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:39, 01:18](1107 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:07, 11:33] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:12](1001 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:06, 03:12] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:51](1086 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:52](1081 MB) -PASS -- TEST 'conus13km_debug_intel' [17:51, 14:49](1226 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 14:50](925 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:35, 08:08](1154 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:47, 14:22](1295 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:06, 03:04] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:25, 05:36](1126 MB) - -PASS -- COMPILE 'hafsw_intel' [16:07, 12:40] -PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:32](741 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:25, 05:49](1121 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:27, 06:59](825 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [20:20, 12:50](857 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:28, 14:27](881 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:59, 06:06](503 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:26, 07:20](524 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [11:49, 03:09](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:27, 07:57](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:45, 04:02](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:48, 03:51](535 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:52, 05:15](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:24, 01:28](405 MB) -PASS -- TEST 'gnv1_nested_intel' [14:53, 04:34](747 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:06, 04:10] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [30:51, 13:01](576 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:06, 13:26] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:55, 09:40](668 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:02, 09:37](711 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:07, 13:12] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:58, 07:00](730 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:07, 12:02] -PASS -- TEST 'hafs_regional_docn_intel' [16:15, 06:17](834 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:11, 06:20](814 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:00, 15:53](1210 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:07, 06:38] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:16, 02:36](1126 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:41](1093 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:15, 02:31](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:16, 02:36](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:14, 02:37](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:39](1126 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:14, 02:39](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:13, 02:35](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 05:54](1052 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:17, 05:51](1045 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:12, 02:44](1136 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:30](2488 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:32](2434 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:01] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:16, 06:14](1064 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:57] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:43](1134 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:14] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:46](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:53](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:31](326 MB) - -PASS -- COMPILE 'atml_intel' [14:09, 12:35] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:13](1608 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:18](1602 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:48, 03:08](899 MB) - -PASS -- COMPILE 'atmw_intel' [16:08, 14:43] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 01:44](1662 MB) - -PASS -- COMPILE 'atmwm_intel' [15:07, 13:19] -PASS -- TEST 'control_atmwav_intel' [04:12, 01:39](677 MB) - -PASS -- COMPILE 'atmaero_intel' [13:06, 11:30] -PASS -- TEST 'atmaero_control_p8_intel' [06:23, 03:57](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:16, 04:46](3096 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:05](3107 MB) - -PASS -- COMPILE 'atmaq_intel' [12:07, 10:35] - -PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:31] -PASS -- TEST 'regional_atmaq_debug_intel' [23:44, 20:19](4580 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:07, 13:39] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:21, 05:17](3188 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 19:08] +PASS -- TEST 'cpld_control_gfsv17_intel' [21:56, 16:30](1736 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:02, 18:16](2019 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:52, 08:19](1114 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:57, 18:26](1644 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:24] +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:56, 23:12](1683 MB) + +PASS -- COMPILE 's2swa_intel' [17:07, 15:36] +PASS -- TEST 'cpld_control_p8_intel' [11:32, 05:43](3210 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:42, 05:44](3206 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:47, 03:20](3257 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:32, 05:44](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:47, 03:31](3199 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:30, 06:11](3559 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:32, 05:43](3211 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 04:48](3066 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:43, 05:43](3217 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:44, 09:58](3267 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:25, 06:07](3627 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:09, 11:03](4173 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:31, 06:51](4372 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 05:23](3166 MB) + +PASS -- COMPILE 's2sw_intel' [14:07, 13:03] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:59, 04:35](1679 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:25, 04:25](1780 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:30] +PASS -- TEST 'cpld_debug_p8_intel' [11:33, 08:30](3246 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:06] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:10, 06:00](1753 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:12, 13:02] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:24, 04:20](1777 MB) + +PASS -- COMPILE 's2s_intel' [15:07, 13:13] +PASS -- TEST 'cpld_control_c48_intel' [10:50, 08:09](2826 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:07, 19:20] +PASS -- TEST 'cpld_control_p8_faster_intel' [10:36, 05:15](3213 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:56] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 16:39](1768 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:21, 08:14](1175 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 19:07](1680 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:07] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 24:42](1721 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:06, 12:41] +PASS -- TEST 'control_flake_intel' [05:20, 03:31](703 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:32](653 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:38](658 MB) +PASS -- TEST 'control_latlon_intel' [04:19, 02:31](658 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:33](654 MB) +PASS -- TEST 'control_c48_intel' [07:25, 06:03](869 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:56](875 MB) +PASS -- TEST 'control_c192_intel' [11:39, 09:08](836 MB) +PASS -- TEST 'control_c384_intel' [13:37, 10:04](1245 MB) +PASS -- TEST 'control_c384gdas_intel' [15:07, 09:08](1359 MB) +PASS -- TEST 'control_stochy_intel' [03:18, 01:47](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:17, 01:00](503 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:40](653 MB) +PASS -- TEST 'control_iovr4_intel' [06:24, 02:31](650 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:29](645 MB) +PASS -- TEST 'control_p8_intel' [05:07, 03:01](1637 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 02:59](1629 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 02:51](1637 MB) +PASS -- TEST 'control_restart_p8_intel' [04:02, 01:39](894 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:04, 02:53](1620 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:44](929 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:00, 03:09](1616 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:14, 03:09](1722 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:44, 05:14](1638 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:26, 03:59](1687 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:28, 03:00](1633 MB) +PASS -- TEST 'merra2_thompson_intel' [06:43, 03:32](1646 MB) +PASS -- TEST 'regional_control_intel' [07:41, 05:14](820 MB) +PASS -- TEST 'regional_restart_intel' [06:40, 02:43](1023 MB) +PASS -- TEST 'regional_decomp_intel' [07:32, 05:31](854 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 03:43](846 MB) +PASS -- TEST 'regional_noquilt_intel' [07:39, 05:13](1364 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:02](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 05:08](859 MB) +PASS -- TEST 'regional_wofs_intel' [08:40, 06:35](1919 MB) + +PASS -- COMPILE 'rrfs_intel' [14:06, 12:21] +PASS -- TEST 'rap_control_intel' [10:22, 07:41](1109 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:48](1296 MB) +PASS -- TEST 'rap_decomp_intel' [10:51, 08:07](1025 MB) +PASS -- TEST 'rap_2threads_intel' [10:10, 07:55](1187 MB) +PASS -- TEST 'rap_restart_intel' [07:21, 04:04](1101 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:26, 07:43](1099 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:25, 08:09](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:16, 05:50](1128 MB) +PASS -- TEST 'hrrr_control_intel' [06:55, 04:02](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 04:07](1019 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:03, 03:43](1064 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:23, 02:12](1004 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:23, 07:35](1099 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:26, 09:15](1996 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:23, 08:58](2075 MB) + +PASS -- COMPILE 'csawmg_intel' [14:06, 12:35] +PASS -- TEST 'control_csawmg_intel' [09:38, 06:00](753 MB) +PASS -- TEST 'control_csawmgt_intel' [09:44, 05:56](750 MB) +PASS -- TEST 'control_ras_intel' [06:17, 03:18](749 MB) + +PASS -- COMPILE 'wam_intel' [12:06, 10:51] +PASS -- TEST 'control_wam_intel' [05:16, 02:06](655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:06, 11:15] +PASS -- TEST 'control_p8_faster_intel' [06:28, 02:36](1633 MB) +PASS -- TEST 'regional_control_faster_intel' [08:41, 04:44](803 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:30] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 02:43](813 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:43](810 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:03](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:17, 02:46](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:15](865 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:05](865 MB) +PASS -- TEST 'control_ras_debug_intel' [04:19, 02:49](819 MB) +PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](871 MB) +PASS -- TEST 'control_debug_p8_intel' [04:40, 03:02](1639 MB) +PASS -- TEST 'regional_debug_intel' [19:37, 17:13](845 MB) +PASS -- TEST 'rap_control_debug_intel' [06:18, 05:00](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:54](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:57](1193 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:54](1200 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:15, 04:59](1200 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:27, 05:12](1282 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:03](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:19, 05:04](1142 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:53](1203 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:47](1198 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:54](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:20, 09:32](1197 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 04:53](1199 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 05:58](1200 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:53](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:24](1207 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:05, 03:25] +PASS -- TEST 'control_wam_debug_intel' [06:17, 04:58](519 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 11:00] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:59, 04:27](1165 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:15, 06:25](1049 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:17, 03:24](978 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:11, 06:40](1085 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:00](912 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:21, 03:34](929 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:12, 04:48](1035 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](923 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:06, 12:44] +PASS -- TEST 'conus13km_control_intel' [04:55, 02:10](1199 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:02](1098 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:18](1108 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:06, 11:00] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:17](996 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:21] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:50](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:43](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [16:52, 14:29](1230 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:14](916 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:25](1152 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 14:05](1297 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:08] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:22, 05:06](1126 MB) + +PASS -- COMPILE 'hafsw_intel' [15:07, 13:07] +PASS -- TEST 'hafs_regional_atm_intel' [08:04, 05:35](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:24, 05:51](1060 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:23, 06:52](833 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:09, 12:44](861 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:16, 14:27](843 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:52, 06:06](503 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:18, 07:30](519 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:41](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 08:08](453 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:41, 04:04](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:49, 04:19](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:51, 05:17](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:23, 01:25](398 MB) +PASS -- TEST 'gnv1_nested_intel' [08:48, 04:32](807 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:06, 03:41] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:47, 13:25](569 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:07, 14:03] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:54, 09:24](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:58, 09:38](706 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:06, 13:32] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 06:54](726 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:06, 12:36] +PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:15](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:20](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:52, 16:01](1210 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:05, 07:01] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:12, 02:41](1130 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:38](1080 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:30](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:35](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:11, 02:39](1008 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:11, 02:42](1132 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:38](1139 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:34](1011 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 05:56](1060 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:04, 06:00](1036 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:39](1125 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:36](2443 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:36](2495 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:05, 04:35] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:14](1059 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:51] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:37](1117 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:58] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:47](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](320 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:31](328 MB) + +PASS -- COMPILE 'atml_intel' [14:08, 12:58] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:20](1603 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:15](1605 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:20](897 MB) + +PASS -- COMPILE 'atmw_intel' [14:07, 11:00] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:14, 01:50](1667 MB) + +PASS -- COMPILE 'atmwm_intel' [16:09, 11:42] +PASS -- TEST 'control_atmwav_intel' [04:02, 01:41](678 MB) + +PASS -- COMPILE 'atmaero_intel' [15:06, 10:47] +PASS -- TEST 'atmaero_control_p8_intel' [06:14, 03:55](3028 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:14, 04:47](3045 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:04](3108 MB) + +PASS -- COMPILE 'atmaq_intel' [14:08, 10:39] + +PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:28] +PASS -- TEST 'regional_atmaq_debug_intel' [23:38, 20:47](4411 MB) SYNOPSIS: -Starting Date/Time: 20240328 09:57:41 -Ending Date/Time: 20240328 11:36:48 -Total Time: 01h:39m:52s +Starting Date/Time: 20240331 12:01:52 +Ending Date/Time: 20240331 13:32:26 +Total Time: 01h:31m:04s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 3fd64072f3..4f4bce119a 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -66d797dfd3f55ff071d70c9992a76d42a2c99f50 +8be49df39e49439d1c10ad54ab3800070692d809 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) @@ -25,19 +25,19 @@ Submodule hashes used in testing: 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) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop) + 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) @@ -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_182077 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39097 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [25:07, 24:37] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:22, 04:29](2970 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:38, 11:48] -PASS -- TEST 'cpld_control_gfsv17_intel' [48:50, 02:41](1592 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:49, 01:49](1710 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [28:26, 01:22](847 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:51, 03:08](1573 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [23:03, 21:54] -PASS -- TEST 'cpld_debug_gfsv17_intel' [38:27, 02:19](1603 MB) - -PASS -- COMPILE 's2swa_intel' [11:35, 11:06] -PASS -- TEST 'cpld_control_p8_intel' [49:52, 01:14](3005 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:52, 01:31](3004 MB) -PASS -- TEST 'cpld_restart_p8_intel' [41:29, 02:00](3063 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [49:52, 01:17](3028 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [41:29, 01:55](3078 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [49:52, 01:02](3316 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [49:52, 01:20](2999 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [49:53, 01:14](2928 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [49:52, 01:31](3001 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [50:01, 08:57](3955 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:16, 04:08](4248 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [49:52, 01:50](2970 MB) - -PASS -- COMPILE 's2sw_intel' [15:44, 14:55] -PASS -- TEST 'cpld_control_noaero_p8_intel' [45:43, 00:45](1588 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [45:43, 01:02](1638 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [26:09, 25:02] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [35:20, 03:20](1639 MB) - -PASS -- COMPILE 's2s_intel' [22:01, 21:30] -PASS -- TEST 'cpld_control_c48_intel' [39:27, 00:58](2649 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:50, 16:07] -PASS -- TEST 'cpld_control_p8_faster_intel' [44:38, 01:29](3001 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:38, 11:24] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [48:50, 01:57](1601 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:24, 01:40](901 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:08, 00:54](1576 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [32:23, 32:00] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:54, 01:15](1619 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:53, 15:06] -PASS -- TEST 'control_flake_intel' [34:00, 00:34](572 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [34:00, 00:49](522 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:00, 00:42](529 MB) -PASS -- TEST 'control_latlon_intel' [34:00, 00:40](522 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:00, 00:49](523 MB) -PASS -- TEST 'control_c48_intel' [33:59, 01:58](715 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [33:59, 02:07](714 MB) -PASS -- TEST 'control_c192_intel' [34:00, 01:38](637 MB) -PASS -- TEST 'control_c384_intel' [34:04, 01:58](954 MB) -PASS -- TEST 'control_c384gdas_intel' [34:04, 03:06](1090 MB) -PASS -- TEST 'control_stochy_intel' [34:00, 00:28](532 MB) -PASS -- TEST 'control_stochy_restart_intel' [31:12, 01:04](333 MB) -PASS -- TEST 'control_lndp_intel' [34:00, 01:37](528 MB) -PASS -- TEST 'control_iovr4_intel' [34:00, 00:54](522 MB) -PASS -- TEST 'control_iovr5_intel' [34:00, 00:47](523 MB) -PASS -- TEST 'control_p8_intel' [34:00, 01:59](1508 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [34:00, 02:40](1503 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [34:00, 02:43](1510 MB) -PASS -- TEST 'control_restart_p8_intel' [27:53, 01:06](692 MB) -PASS -- TEST 'control_noqr_p8_intel' [34:00, 01:51](1498 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [27:53, 01:01](698 MB) -PASS -- TEST 'control_decomp_p8_intel' [34:00, 01:49](1499 MB) -PASS -- TEST 'control_2threads_p8_intel' [34:00, 02:06](1588 MB) -PASS -- TEST 'control_p8_lndp_intel' [34:00, 02:22](1511 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [34:00, 03:36](1563 MB) -PASS -- TEST 'control_p8_mynn_intel' [30:58, 02:16](1514 MB) -PASS -- TEST 'merra2_thompson_intel' [30:05, 02:20](1513 MB) -PASS -- TEST 'regional_control_intel' [30:03, 00:35](610 MB) -PASS -- TEST 'regional_restart_intel' [21:51, 00:29](776 MB) -PASS -- TEST 'regional_decomp_intel' [30:03, 00:22](606 MB) -PASS -- TEST 'regional_2threads_intel' [29:59, 01:16](667 MB) -PASS -- TEST 'regional_noquilt_intel' [29:56, 01:01](1146 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [29:55, 00:54](609 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [29:51, 01:01](610 MB) -PASS -- TEST 'regional_wofs_intel' [27:49, 00:56](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [23:14, 20:40] -PASS -- TEST 'rap_control_intel' [25:31, 01:08](920 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:24, 01:19](1093 MB) -PASS -- TEST 'rap_decomp_intel' [25:16, 01:33](918 MB) -PASS -- TEST 'rap_2threads_intel' [25:13, 01:35](1007 MB) -PASS -- TEST 'rap_restart_intel' [16:44, 01:13](789 MB) -PASS -- TEST 'rap_sfcdiff_intel' [24:40, 02:07](912 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:59, 01:08](914 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [15:01, 01:47](785 MB) -PASS -- TEST 'hrrr_control_intel' [22:49, 01:42](912 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [22:36, 01:12](910 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [21:53, 01:21](991 MB) -PASS -- TEST 'hrrr_control_restart_intel' [16:42, 01:08](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [21:52, 01:25](912 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [21:52, 01:09](1875 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:44, 01:20](1865 MB) - -PASS -- COMPILE 'csawmg_intel' [15:52, 14:11] -PASS -- TEST 'control_csawmg_intel' [27:03, 00:43](599 MB) -PASS -- TEST 'control_csawmgt_intel' [26:51, 00:47](599 MB) -PASS -- TEST 'control_ras_intel' [26:21, 00:57](561 MB) - -PASS -- COMPILE 'wam_intel' [15:52, 15:03] -PASS -- TEST 'control_wam_intel' [25:54, 00:55](271 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:59, 13:50] -PASS -- TEST 'control_p8_faster_intel' [25:38, 02:23](1507 MB) -PASS -- TEST 'regional_control_faster_intel' [21:36, 00:31](609 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:41, 11:57] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:32, 01:21](687 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:31, 01:30](691 MB) -PASS -- TEST 'control_stochy_debug_intel' [21:00, 00:54](691 MB) -PASS -- TEST 'control_lndp_debug_intel' [20:33, 01:13](694 MB) -PASS -- TEST 'control_csawmg_debug_intel' [20:17, 00:45](736 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [18:59, 00:46](730 MB) -PASS -- TEST 'control_ras_debug_intel' [18:42, 01:13](704 MB) -PASS -- TEST 'control_diag_debug_intel' [18:03, 00:26](742 MB) -PASS -- TEST 'control_debug_p8_intel' [17:53, 01:04](1519 MB) -PASS -- TEST 'regional_debug_intel' [17:42, 01:02](629 MB) -PASS -- TEST 'rap_control_debug_intel' [17:41, 01:00](1077 MB) -PASS -- TEST 'hrrr_control_debug_intel' [17:11, 01:05](1070 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [16:49, 01:05](1069 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:47, 01:00](1074 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:44, 01:01](1073 MB) -PASS -- TEST 'rap_diag_debug_intel' [16:41, 00:55](1158 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:19, 00:55](1073 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:01, 01:01](1072 MB) -PASS -- TEST 'rap_lndp_debug_intel' [16:01, 00:56](1078 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:59, 01:18](1076 MB) -PASS -- TEST 'rap_noah_debug_intel' [15:57, 01:17](1076 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [15:43, 01:06](1073 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:18, 01:13](1074 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [14:14, 01:01](1067 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [14:07, 01:10](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [13:44, 01:03](1076 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:15, 01:35](1081 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:41, 10:07] -PASS -- TEST 'control_wam_debug_intel' [13:13, 00:58](297 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:54, 16:59] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:11, 01:26](956 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:01, 01:21](791 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:05, 02:14](785 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:56, 01:42](851 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:53, 02:19](843 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:28, 01:29](786 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:33, 01:28](686 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:24, 00:21](669 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [29:19, 28:43] -PASS -- TEST 'conus13km_control_intel' [06:01, 01:04](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:58, 00:37](1009 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:57, 00:27](881 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:50, 13:58] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:08, 01:29](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:44, 11:33] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:32, 01:18](953 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:13, 01:22](954 MB) -PASS -- TEST 'conus13km_debug_intel' [10:13, 00:58](1039 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [10:09, 00:50](710 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:00, 00:41](1037 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [09:41, 00:56](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:30, 05:37] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:28, 01:08](978 MB) - -PASS -- COMPILE 'hafsw_intel' [23:11, 20:50] -PASS -- TEST 'hafs_regional_atm_intel' [05:57, 02:00](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:57, 00:25](968 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:55, 01:54](662 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [05:55, 01:48](693 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:56, 01:33](707 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:55, 01:10](389 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:56, 02:18](404 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:56, 01:32](528 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:59, 02:17](369 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:21, 01:27](423 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:45, 00:53](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:41, 00:43](487 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:22, 00:23](317 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:39, 09:22] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [09:23, 01:02](504 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:58, 16:40] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:13, 00:57](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:13, 00:53](713 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:02, 17:05] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:45, 01:03](715 MB) - -PASS -- COMPILE 'hafs_all_intel' [24:12, 23:14] -PASS -- TEST 'hafs_regional_docn_intel' [01:24, 01:29](663 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:24, 01:35](646 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:22, 00:41](881 MB) - -PASS -- COMPILE 'atml_intel' [29:22, 28:03] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [53:58, 01:37](1549 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [53:58, 01:09](1548 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [46:19, 00:32](740 MB) - -PASS -- COMPILE 'atmaero_intel' [28:20, 27:05] -PASS -- TEST 'atmaero_control_p8_intel' [51:53, 01:36](2853 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [51:53, 00:58](2912 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [51:53, 01:36](2926 MB) - -PASS -- COMPILE 'atmaq_intel' [17:55, 17:27] - -PASS -- COMPILE 'atmaq_debug_intel' [13:42, 12:31] -PASS -- TEST 'regional_atmaq_debug_intel' [03:56, 01:50](4433 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:35, 10:54] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:13, 01:16](2975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [32:18, 32:03] +PASS -- TEST 'cpld_control_gfsv17_intel' [47:42, 02:10](1594 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:27, 01:24](1719 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [28:18, 01:48](849 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:08, 02:01](1566 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:30, 08:51] +PASS -- TEST 'cpld_debug_gfsv17_intel' [13:18, 01:47](1602 MB) + +PASS -- COMPILE 's2swa_intel' [30:14, 29:26] +PASS -- TEST 'cpld_control_p8_intel' [51:59, 01:10](3002 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [51:59, 01:15](3004 MB) +PASS -- TEST 'cpld_restart_p8_intel' [42:16, 01:42](3063 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [51:45, 01:58](3029 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [41:15, 01:15](3082 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [51:31, 01:17](3316 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [50:34, 01:19](3000 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [46:58, 01:45](2928 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:46, 02:04](3002 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [46:55, 04:07](3952 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:06, 03:32](4252 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [46:46, 01:27](2968 MB) + +PASS -- COMPILE 's2sw_intel' [11:35, 10:40] +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:12, 00:50](1586 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:12, 01:01](1635 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [43:44, 42:49] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [38:34, 01:05](1631 MB) + +PASS -- COMPILE 's2s_intel' [10:33, 09:43] +PASS -- TEST 'cpld_control_c48_intel' [12:14, 00:45](2658 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:11, 28:56] +PASS -- TEST 'cpld_control_p8_faster_intel' [53:16, 01:18](3001 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:56, 20:40] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:10, 01:53](1600 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:16, 01:10](904 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:41, 01:10](1570 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:31, 08:24] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:17, 01:27](1627 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:32, 09:35] +PASS -- TEST 'control_flake_intel' [02:44, 00:46](572 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [02:44, 00:40](521 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 00:55](531 MB) +PASS -- TEST 'control_latlon_intel' [02:44, 00:19](524 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:44, 00:43](527 MB) +PASS -- TEST 'control_c48_intel' [02:43, 00:30](714 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [02:43, 00:37](713 MB) +PASS -- TEST 'control_c192_intel' [02:44, 00:51](637 MB) +PASS -- TEST 'control_c384_intel' [02:48, 01:30](956 MB) +PASS -- TEST 'control_c384gdas_intel' [02:48, 01:41](1094 MB) +PASS -- TEST 'control_stochy_intel' [02:44, 00:36](527 MB) +PASS -- TEST 'control_stochy_restart_intel' [56:08, 01:10](328 MB) +PASS -- TEST 'control_lndp_intel' [02:44, 00:42](530 MB) +PASS -- TEST 'control_iovr4_intel' [02:44, 00:24](521 MB) +PASS -- TEST 'control_iovr5_intel' [02:44, 00:21](526 MB) +PASS -- TEST 'control_p8_intel' [02:44, 00:52](1511 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [02:44, 01:30](1503 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [02:44, 01:28](1511 MB) +PASS -- TEST 'control_restart_p8_intel' [53:16, 01:52](688 MB) +PASS -- TEST 'control_noqr_p8_intel' [02:44, 00:58](1490 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [53:16, 01:50](699 MB) +PASS -- TEST 'control_decomp_p8_intel' [02:44, 00:42](1500 MB) +PASS -- TEST 'control_2threads_p8_intel' [02:44, 01:25](1593 MB) +PASS -- TEST 'control_p8_lndp_intel' [02:44, 00:45](1501 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [02:44, 01:38](1558 MB) +PASS -- TEST 'control_p8_mynn_intel' [02:44, 02:00](1514 MB) +PASS -- TEST 'merra2_thompson_intel' [02:44, 01:45](1516 MB) +PASS -- TEST 'regional_control_intel' [02:43, 00:14](610 MB) +PASS -- TEST 'regional_restart_intel' [53:43, 01:05](779 MB) +PASS -- TEST 'regional_decomp_intel' [02:43, 00:58](607 MB) +PASS -- TEST 'regional_2threads_intel' [02:44, 00:41](658 MB) +PASS -- TEST 'regional_noquilt_intel' [02:43, 00:27](1145 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [56:08, 00:47](607 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [55:02, 01:02](610 MB) +PASS -- TEST 'regional_wofs_intel' [55:02, 00:33](1577 MB) + +PASS -- COMPILE 'rrfs_intel' [17:49, 16:37] +PASS -- TEST 'rap_control_intel' [55:03, 01:34](917 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [55:02, 01:25](1096 MB) +PASS -- TEST 'rap_decomp_intel' [54:55, 01:17](918 MB) +PASS -- TEST 'rap_2threads_intel' [53:44, 01:06](1012 MB) +PASS -- TEST 'rap_restart_intel' [43:32, 01:45](787 MB) +PASS -- TEST 'rap_sfcdiff_intel' [53:44, 01:43](915 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [53:16, 01:21](913 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [42:06, 01:57](783 MB) +PASS -- TEST 'hrrr_control_intel' [53:00, 01:00](911 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [53:00, 01:52](906 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [52:58, 01:12](994 MB) +PASS -- TEST 'hrrr_control_restart_intel' [45:45, 01:00](742 MB) +PASS -- TEST 'rrfs_v1beta_intel' [52:55, 01:46](905 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [52:49, 00:27](1876 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:42, 00:56](1863 MB) + +PASS -- COMPILE 'csawmg_intel' [09:30, 09:00] +PASS -- TEST 'control_csawmg_intel' [46:06, 00:31](598 MB) +PASS -- TEST 'control_csawmgt_intel' [45:55, 00:42](601 MB) +PASS -- TEST 'control_ras_intel' [45:45, 00:48](563 MB) + +PASS -- COMPILE 'wam_intel' [28:13, 27:01] +PASS -- TEST 'control_wam_intel' [42:36, 00:36](272 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:48, 16:38] +PASS -- TEST 'control_p8_faster_intel' [45:16, 00:59](1501 MB) +PASS -- TEST 'regional_control_faster_intel' [45:05, 00:55](609 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:50, 13:14] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:49, 00:44](684 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:45, 00:52](692 MB) +PASS -- TEST 'control_stochy_debug_intel' [43:54, 01:10](690 MB) +PASS -- TEST 'control_lndp_debug_intel' [43:32, 00:44](694 MB) +PASS -- TEST 'control_csawmg_debug_intel' [43:32, 01:13](734 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [42:17, 00:52](731 MB) +PASS -- TEST 'control_ras_debug_intel' [42:16, 01:06](701 MB) +PASS -- TEST 'control_diag_debug_intel' [42:15, 01:05](748 MB) +PASS -- TEST 'control_debug_p8_intel' [42:02, 01:03](1525 MB) +PASS -- TEST 'regional_debug_intel' [41:21, 00:25](631 MB) +PASS -- TEST 'rap_control_debug_intel' [41:17, 01:22](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [41:15, 00:21](1067 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [41:03, 00:27](1071 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [40:53, 00:31](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:52, 01:19](1078 MB) +PASS -- TEST 'rap_diag_debug_intel' [40:15, 01:23](1157 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [40:06, 00:26](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [38:20, 00:46](1079 MB) +PASS -- TEST 'rap_lndp_debug_intel' [38:14, 01:03](1075 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [38:12, 01:05](1076 MB) +PASS -- TEST 'rap_noah_debug_intel' [38:12, 01:09](1074 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [38:03, 01:04](1077 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:01, 00:56](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [38:00, 01:05](1070 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [37:11, 01:00](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [36:44, 01:01](1077 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [36:39, 01:18](1077 MB) + +PASS -- COMPILE 'wam_debug_intel' [16:46, 12:09] +PASS -- TEST 'control_wam_debug_intel' [36:15, 00:54](298 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:43, 11:42] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [36:07, 01:19](955 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [35:42, 01:11](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [35:21, 02:30](788 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [34:40, 02:10](854 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [34:40, 02:10](840 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [34:24, 01:54](786 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:19, 01:45](687 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [27:36, 01:07](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:54, 16:12] +PASS -- TEST 'conus13km_control_intel' [34:14, 00:32](1001 MB) +PASS -- TEST 'conus13km_2threads_intel' [29:21, 00:32](1009 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [27:10, 00:30](879 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:36, 08:17] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:35, 00:45](811 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:31, 06:31] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:32, 00:29](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:28, 00:30](955 MB) +PASS -- TEST 'conus13km_debug_intel' [33:16, 00:58](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [32:27, 01:00](714 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [31:58, 00:28](1039 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:43, 00:28](1103 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [20:00, 17:27] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [31:29, 01:15](977 MB) + +PASS -- COMPILE 'hafsw_intel' [13:43, 11:34] +PASS -- TEST 'hafs_regional_atm_intel' [31:29, 01:32](620 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [31:28, 00:43](971 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [31:26, 02:08](659 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:26, 01:26](701 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:11, 01:53](704 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:58, 00:53](390 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [29:42, 02:07](407 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [29:38, 00:51](283 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:04, 02:33](370 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:47, 01:14](411 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:03, 01:19](412 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:59, 01:16](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [25:56, 00:57](323 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:31, 08:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:52, 01:22](500 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:52, 17:55] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:02, 00:46](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:29, 00:57](709 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:03, 22:01] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:52, 01:18](715 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:33, 09:09] +PASS -- TEST 'hafs_regional_docn_intel' [23:39, 01:35](665 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:24, 01:35](642 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:58, 00:40](882 MB) + +PASS -- COMPILE 'atml_intel' [22:03, 19:36] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:26, 02:09](1550 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [20:12, 01:26](1547 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:38, 01:12](740 MB) + +PASS -- COMPILE 'atmaero_intel' [13:42, 11:37] +PASS -- TEST 'atmaero_control_p8_intel' [22:49, 01:12](2849 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [22:05, 00:59](2909 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:51, 01:02](2922 MB) + +PASS -- COMPILE 'atmaq_intel' [12:39, 11:22] + +PASS -- COMPILE 'atmaq_debug_intel' [06:25, 05:38] +PASS -- TEST 'regional_atmaq_debug_intel' [19:52, 01:36](4448 MB) SYNOPSIS: -Starting Date/Time: 20240328 15:58:14 -Ending Date/Time: 20240328 17:22:49 -Total Time: 01h:25m:11s +Starting Date/Time: 20240401 13:36:53 +Ending Date/Time: 20240401 15:08:45 +Total Time: 01h:32m:35s Compiles Completed: 31/31 Tests Completed: 157/157