diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml index 11f4172c18..49449097a3 100644 --- a/.github/workflows/aux.yml +++ b/.github/workflows/aux.yml @@ -1,9 +1,12 @@ -name: Helpers +name: Repo Check on: - workflow_run: - workflows: ["Pull Request Tests"] - types: - - requested + #workflow_run: + # workflows: ["Pull Request Tests"] + # types: + # - requested + pull_request: + branches: + - develop env: app: Accept:application/vnd.github.v3+json base_url: $GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/runs @@ -30,8 +33,11 @@ jobs: steps: - name: Check up-to-dateness and post comment run: | - head_sha=${{ github.event.workflow_run.head_sha }} - git clone -q ${{ github.event.workflow_run.head_repository.html_url }} . + trap 'echo "exit-code=$?" >> "$GITHUB_OUTPUT"' EXIT + head_sha=${{ github.event.pull_request.head.sha }} + head_brc=${{ github.event.pull_request.head.ref }} + head_url=${{ github.event.pull_request.head.repo.html_url }} + git clone -q -b $head_brc $head_url . git checkout -q $head_sha git submodule -q update --init --recursive cd ${{ github.workspace }}/tests/ci @@ -39,15 +45,16 @@ jobs: pr_number=$(curl -sS -H $app $url/pulls \ | jq -r '.[] | select(.head.sha == "'"$head_sha"'") | .number') echo "pr_number is $pr_number" - pr_uid=${{ github.event.workflow_run.head_repository.owner.login }} + pr_uid=${{ github.event.pull_request.head.repo.owner.login }} echo "pr_uid is $pr_uid" - comment="$(./repo_check.sh $pr_uid 2>/dev/null)" - echo "comment is $comment" - if [[ -n $comment ]]; then - curl -sS -X POST -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}' - echo -n "failure" >~/repocheck_file - else - echo -n "success" >~/repocheck_file - fi + ./repo_check.sh + #comment="$(./repo_check.sh 2>/dev/null)" + #echo "comment is $comment" + #if [[ -n $comment ]]; then + # curl -sS -X POST -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ + # $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}' + # echo -n "failure" >~/repocheck_file + #else + # echo -n "success" >~/repocheck_file + #fi diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 620e48fe75..7d4e5defc1 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 620e48fe75d92aa607af7e21f2d8691baddd2851 +Subproject commit 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 624920ddbd..4e19850cb0 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 624920ddbd819c76ec37591c24e872308201810e +Subproject commit 4e19850cb083bc474b7cde5dc2f8506ec74cc442 diff --git a/FV3 b/FV3 index c94ffe32b4..2fe636a0d4 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c94ffe32b48e203cd7d56b5ce2106d9b09b10605 +Subproject commit 2fe636a0d431ffd5928c22f6b3cdb189f1208e1f diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 10521a921d..ab7bd14d20 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 10521a921d2f442de19a0cda240d912fd918c40c +Subproject commit ab7bd14d209592d55490e75dbfaa61cb4a62df97 diff --git a/NOAHMP-interface/CMakeLists.txt b/NOAHMP-interface/CMakeLists.txt index e27a1e37ec..fa533818fb 100644 --- a/NOAHMP-interface/CMakeLists.txt +++ b/NOAHMP-interface/CMakeLists.txt @@ -8,9 +8,10 @@ list(APPEND _noahmp_cap_files noahmp/drivers/nuopc/lnd_comp_kind.F90 noahmp/drivers/nuopc/lnd_comp_domain.F90 noahmp/drivers/nuopc/lnd_comp_import_export.F90 noahmp/drivers/nuopc/lnd_comp_nuopc.F90 - noahmp/drivers/nuopc/lnd_comp_driver.F90) + noahmp/drivers/nuopc/lnd_comp_driver.F90 + noahmp/drivers/nuopc/lnd_comp_cplscalars.F90) -# CCPP interface +# CCPP interface list(APPEND _noahmp_ccpp_files noahmp/drivers/ccpp/noahmpdrv.F90 noahmp/drivers/ccpp/sfc_diff.f noahmp/drivers/ccpp/machine.F @@ -25,7 +26,7 @@ list(APPEND _noahmp_files noahmp/src/module_sf_noahmplsm.F90 noahmp/src/module_sf_noahmp_glacier.F90) #------------------------------------------------------------------------------ -# Set CCPP flags for C/C++/Fortran preprocessor +# Set CCPP flags for C/C++/Fortran preprocessor add_definitions(-DCCPP) #------------------------------------------------------------------------------ diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index 0cd3e23ae5..6a51f0295b 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 +Subproject commit 6a51f0295bc1a877475b527157a33aa86eb532fe diff --git a/WW3 b/WW3 index 4ffc47e10e..d9b3172f41 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 +Subproject commit d9b3172f4197c65d471662c6952a668152d71230 diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake index 5f59acfcc9..b09e047cf4 100644 --- a/cmake/GNU.cmake +++ b/cmake/GNU.cmake @@ -5,10 +5,6 @@ endif() set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ggdb -fbacktrace -cpp -fcray-pointer -ffree-line-length-none -fno-range-check") -if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") -endif() - if(NOT 32BIT) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fdefault-real-8 -fdefault-double-8") endif() diff --git a/driver/UFS.F90 b/driver/UFS.F90 index acb1bcb742..26501a124b 100644 --- a/driver/UFS.F90 +++ b/driver/UFS.F90 @@ -79,6 +79,9 @@ PROGRAM UFS TYPE(ESMF_Config) :: CF_MAIN !<-- The Configure object ! CHARACTER(ESMF_MAXSTR) :: MESSAGE_CHECK +! + CHARACTER(len=MPI_MAX_LIBRARY_VERSION_STRING) :: library_version + INTEGER :: resultlen ! INTEGER :: RC, RC_USER !<-- The running error signal ! @@ -122,7 +125,12 @@ PROGRAM UFS !*** Print subversion version and other status information. !----------------------------------------------------------------------- ! - if (mype==0) call w3tagb('ufs ',0000,0000,0000,'np23 ') + if (mype == 0) then + call w3tagb('ufs-weather-model',0,0,0,'np23') + call MPI_Get_library_version(library_version, resultlen, rc) + write(*,'(A,A)') 'MPI Library = ', library_version(1:resultlen) + write(*,'(A,I0,A,I0)')'MPI Version = ', mpi_version,'.',mpi_subversion + endif ! !----------------------------------------------------------------------- !*** Set up the default log. diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index a3913978fd..a67f41b678 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -2,9 +2,7 @@ help([[ loads UFS Model prerequisites for Hera/GNU ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") --- for openmpi, need -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/jcsda/jedipara/spack-stack/modulefiles") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env-rocky8/install/modulefiles/Core") stack_gnu_ver=os.getenv("stack_gnu_ver") or "9.2.0" load(pathJoin("stack-gcc", stack_gnu_ver)) diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index bad1fb0792..67a610c306 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env-rocky8/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_noaacloud.intel.lua b/modulefiles/ufs_noaacloud.intel.lua index b2f1d6b759..64ef71a38c 100644 --- a/modulefiles/ufs_noaacloud.intel.lua +++ b/modulefiles/ufs_noaacloud.intel.lua @@ -3,7 +3,7 @@ loads UFS Model prerequisites for NOAA Parallelworks/Intel ]]) -prepend_path("MODULEPATH", "/contrib/EPIC/spack-stack/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.3.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/stochastic_physics b/stochastic_physics index a556180202..7dc4d9ba48 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit a5561802021d89a9a1e2b52cb69393efcdc6f71c +Subproject commit 7dc4d9ba48dea57f88f4f10091c8c2042105954e diff --git a/tests/atparse.bash b/tests/atparse.bash index a1d9496982..5e0e8985d8 100755 --- a/tests/atparse.bash +++ b/tests/atparse.bash @@ -1,42 +1,106 @@ #! /usr/bin/env bash function atparse { - local __set_x - [ -o xtrace ] && __set_x='set -x' || __set_x='set +x' - set +x + # Usage: + # source atparse.bash # defines the "atparse" function; only do this once + # atparse [ var1=value1 [ var2=value2 [...] ] ] < input_file > output_file + # This function filters text from stdin to stdout. It scans for text sequences like: + # @[varname] + # And replaces them with the value of the corresponding ${varname} variable. + # You can provide variables that are not set in bash by providing them on the command line. + # If set -u is enabled, it will exit the process when a variable is empty or undefined via set -u. + # Use __ in names to avoid clashing with variables in {var} blocks. - local __text __before __after __during + local __text # current line of text being parsed, or the current command-line argument being parsed + local __before # all text before the next @[...] option + local __after # all text after the next @[...] option + local __during # the contents of the @[...] option, including the @[ and ] + local __set_x=":" # will be "set -x" if the calling script had that option enabled + local __set_u=":" # will be "set -u" if the calling script had that option enabled + local __set_e=":" # will be "set -e" if the calling script had that option enabled + local __abort_on_undefined=NO # YES = script should abort if a variable is undefined, NO otherwise + + # Ensure "set -x -e -u" are all inactive, but remember if they + # were active so we can reset them later. + if [[ -o xtrace ]] ; then + __set_x="set -x" + fi + if [[ -o errexit ]] ; then + __set_e="set -e" + fi + if [[ -o nounset ]] ; then + __set_u="set -u" + __abort_on_undefined=YES + fi + set +eux + + # Allow setting variables on the atparse command line rather than the environment. + # They will be local variables in this function. for __text in "$@" ; do if [[ $__text =~ ^([a-zA-Z][a-zA-Z0-9_]*)=(.*)$ ]] ; then eval "local ${BASH_REMATCH[1]}" eval "${BASH_REMATCH[1]}="'"${BASH_REMATCH[2]}"' else - echo "ERROR: Ignoring invalid argument $__text\n" 1>&2 + echo "ERROR: Ignoring invalid argument $__text" 1>&2 fi done - while IFS= read -r __text ; do + + # Loop over all lines of text. + while [[ 1 == 1 ]] ; do + # Read the next line of text. This will "fail" if no more text + # is left OR if the last line lacks an end-of-line character. + read -d '' -r __text + + # Stop when "read" reports it is done ($? -ne 0) AND the text is + # non-empty (! -n "$__text"). This ensures we read the final line + # even if it lacks an end-of-line character. + if [[ $? -ne 0 ]] ; then + if [[ -n "$__text" ]] ; then + # Text remained, but it had no end-of-line. + : + else + break + fi + fi + # Search for strings like @[varname] or @['string'] or @[@] while [[ "$__text" =~ ^([^@]*)(@\[[a-zA-Z_][a-zA-Z_0-9]*\]|@\[\'[^\']*\'\]|@\[@\]|@)(.*) ]] ; do __before="${BASH_REMATCH[1]}" __during="${BASH_REMATCH[2]}" __after="${BASH_REMATCH[3]}" -# printf 'PARSE[%s|%s|%s]\n' "$__before" "$__during" "$__after" printf %s "$__before" + # @['string'] inserts string if [[ "$__during" =~ ^@\[\'(.*)\'\]$ ]] ; then printf %s "${BASH_REMATCH[1]}" + # @[@] inserts @ elif [[ "$__during" == '@[@]' ]] ; then printf @ + # @[varname] inserts $varname elif [[ "$__during" =~ ^@\[([a-zA-Z_][a-zA-Z_0-9]*)\] ]] ; then + # Flag unknown variables at this step only. + if [[ ${__abort_on_undefined} == YES ]] ; then + set -u + fi eval 'printf %s "$'"${BASH_REMATCH[1]}"'"' + if [[ ${__abort_on_undefined} == YES ]] ; then + set +u + fi + # Unrecognized sequences are inserted verbatim. else printf '%s' "$__during" fi + # Continue until we run out of text in this line. if [[ "$__after" == "$__text" ]] ; then break fi __text="$__after" done + # Print the corrected text printf '%s\n' "$__text" done + + # Restore the calling script's shell options. eval "$__set_x" + eval "$__set_u" + eval "$__set_e" } function test_atparse { @@ -45,14 +109,18 @@ function test_atparse { testvar='[testvar]' var1='[var1]' var2='[var2]' - cat<<\EOF | atparse var3='**' + var4='[var4]' + ( cat<<\EOF ; echo -n "line with no end-of-line character [var4] = @[var4]" ) | atparse var3='**' Nothing special here. = @['Nothing special here.'] [testvar] = @[testvar] [var1] [var2] = @[var1] @[var2] ** = @[var3] +[var4] == @[var4] @ = @[@] = @['@'] +@[undefined_variable_that_should_exit_script_if_set_minus_u_is_used] -n eval "export PE$c=\${PE$c:-0}" = @[' eval "export PE$c=\${PE$c:-0}"'] EOF + echo " ... this text should be on the same line as the line with no end-of-line character" echo "After block, \$var3 = \"$var3\" should be empty" } diff --git a/tests/bl_date.conf b/tests/bl_date.conf index cb675814bb..046381c5ba 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240301 +export BL_DATE=20240401 diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined index 38c9efc589..47fb97ec73 100644 --- a/tests/ci/Jenkinsfile.combined +++ b/tests/ci/Jenkinsfile.combined @@ -258,6 +258,8 @@ pipeline { agent none environment { ACCNR = 'epic' + AWS_PROD_ACCOUNT_ID = credentials('AWS_PROD_ACCOUNT_ID') + AWS_PROD_SNS_TOPIC = credentials('AWS_PROD_SNS_TOPIC') GITHUB_TOKEN = credentials('GithubJenkinsNew') GIT_URL = 'https://github.com/ufs-community/ufs-weather-model.git' } @@ -285,7 +287,7 @@ pipeline { node('built-in') { echo 'This will run only if successful.' sh ''' - aws sns publish --topic-arn "arn:aws:sns:us-east-1:211527314271:Jenkins-CICD-Notifications" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":sunny: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *succeeded*"}}' + aws sns publish --topic-arn "arn:aws:sns:us-east-1:${AWS_PROD_ACCOUNT_ID}:${AWS_PROD_SNS_TOPIC}" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":sunny: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *succeeded*"}}' ''' } } @@ -293,7 +295,7 @@ pipeline { node('built-in') { echo 'This will run only if the run was marked as unstable.' sh ''' - aws sns publish --topic-arn "arn:aws:sns:us-east-1:211527314271:Jenkins-CICD-Notifications" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":warning: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *failed!*"}}' + aws sns publish --topic-arn "arn:aws:sns:us-east-1:${AWS_PROD_ACCOUNT_ID}:${AWS_PROD_SNS_TOPIC}" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":warning: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *failed!*"}}' ''' } } diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index b8d0487e61..7f5deb31c8 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -1,95 +1,113 @@ #!/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 +#set -eu + +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 -submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake" -comment='' -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' - -# Submodules to check -fv3[repo]='https://github.com/NOAA-EMC/fv3atm' -fv3[branch]='develop' -fv3[dir]='FV3' - -mom6[repo]='https://github.com/NOAA-EMC/MOM6' -mom6[branch]='dev/emc' -mom6[dir]='MOM6-interface/MOM6' - -cice[repo]='https://github.com/NOAA-EMC/CICE' -cice[branch]='emc/develop' -cice[dir]='CICE-interface/CICE' - -ww3[repo]='https://github.com/NOAA-EMC/WW3' -ww3[branch]='dev/ufs-weather-model' -ww3[dir]='WW3' - -stoch[repo]='https://github.com/noaa-psd/stochastic_physics' -stoch[branch]='master' -stoch[dir]='stochastic_physics' - -gocart[repo]='https://github.com/GEOS-ESM/GOCART' -gocart[branch]='develop' -gocart[dir]='GOCART' - -cmeps[repo]='https://github.com/NOAA-EMC/CMEPS' -cmeps[branch]='emc/develop' -cmeps[dir]='CMEPS-interface/CMEPS' - -cdeps[repo]='https://github.com/NOAA-EMC/CDEPS' -cdeps[branch]='develop' -cdeps[dir]='CDEPS-interface/CDEPS' - -hycom[repo]='https://github.com/NOAA-EMC/HYCOM-src' -hycom[branch]='emc/develop' -hycom[dir]='HYCOM-interface/HYCOM' - -cmake[repo]='https://github.com/NOAA-EMC/CMakeModules' -cmake[branch]='develop' -cmake[dir]='CMakeModules' - -# Get sha-1's of the top of develop of ufs-weather-model -app="Accept: application/vnd.github.v3+json" -url="https://api.github.com/repos/ufs-community/ufs-weather-model/branches/develop" -base[sha]=$(curl -sS -H "$app" $url | jq -r '.commit.sha') +flag_sync=true + +declare -A urls branches pathes +submodules="base fv3 mom6 cice ww3 stoch cmeps cdeps hycom ccpp_physics aqm noahmp cubed_sphere" + +urls[base]='https://github.com/ufs-community/ufs-weather-model' +branches[base]='develop' +pathes[base]='' + +urls[fv3]='https://github.com/NOAA-EMC/fv3atm' +branches[fv3]='develop' +pathes[fv3]='FV3' + +urls[mom6]='https://github.com/NOAA-EMC/MOM6' +branches[mom6]='dev/emc' +pathes[mom6]='MOM6-interface/MOM6' + +urls[cice]='https://github.com/NOAA-EMC/CICE' +branches[cice]='emc/develop' +pathes[cice]='CICE-interface/CICE' + +urls[ww3]='https://github.com/NOAA-EMC/WW3' +branches[ww3]='dev/ufs-weather-model' +pathes[ww3]='WW3' + +urls[stoch]='https://github.com/noaa-psl/stochastic_physics' +branches[stoch]='master' +pathes[stoch]='stochastic_physics' + +urls[gocart]='https://github.com/GEOS-ESM/GOCART' +branches[gocart]='develop' +pathes[gocart]='GOCART' + +urls[cmeps]='https://github.com/NOAA-EMC/CMEPS' +branches[cmeps]='emc/develop' +pathes[cmeps]='CMEPS-interface/CMEPS' + +urls[cdeps]='https://github.com/NOAA-EMC/CDEPS' +branches[cdeps]='develop' +pathes[cdeps]='CDEPS-interface/CDEPS' + +urls[hycom]='https://github.com/NOAA-EMC/HYCOM-src' +branches[hycom]='emc/develop' +pathes[hycom]='HYCOM-interface/HYCOM' + +urls[cmake]='https://github.com/NOAA-EMC/CMakeModules' +branches[cmake]='develop' +pathes[cmake]='CMakeModules' + +urls[ccpp_physics]='https://github.com/ufs-community/ccpp-physics' +branches[ccpp_physics]='ufs/dev' +pathes[ccpp_physics]='FV3/ccpp/physics' + +urls[ccpp_framework]='https://github.com/NCAR/ccpp-framework' +branches[ccpp_framework]='main' +pathes[ccpp_framework]='FV3/ccpp/framework' + +urls[aqm]='https://github.com/NOAA-EMC/AQM' +branches[aqm]='develop' +pathes[aqm]='AQM' + +urls[noahmp]='https://github.com/NOAA-EMC/noahmp' +branches[noahmp]='develop' +pathes[noahmp]='NOAHMP-interface/noahmp' + +#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 url=https://api.github.com/repos/ufs-community/ufs-weather-model/contents/'${'$submodule'[dir]}' - eval $submodule'[sha]=$(curl -sS -H "$app" $url | jq -r '.sha')' + 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 -# 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" +if [[ ! $flag_sync ]]; then + echo "** ${GITHUB_WORKSPACE} **NOT** up to date" + exit 1 fi -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 -done +echo "** ${GITHUB_WORKSPACE} up to date **" -result $ownerID exit 0 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 01b67e2731..9bd6d6355e 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -314,7 +314,7 @@ export DumpFields="false" export_fv3 () { # ufs.configure defaults -export UFS_CONFIGURE=ufs.configure.atm.IN +export UFS_CONFIGURE=ufs.configure.atm_esmf.IN export MODEL_CONFIGURE=model_configure.IN export atm_model=fv3 @@ -825,7 +825,6 @@ export_ww3 # Set CMEPS component defauls export_cmeps -export ATMTILESIZE=`expr $NPX - 1` # FV3 defaults export FRAC_GRID=.true. diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 6f5435a587..c46f7ef816 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Mar 8 03:19:22 UTC 2024 +Thu Apr 4 13:45:26 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/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 = 281.726798 - 0: The maximum resident set size (KB) = 1310164 + 0: The total amount of wall time = 273.384410 + 0: The maximum resident set size (KB) = 1252756 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_135562/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/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 = 899.537419 - 0: The maximum resident set size (KB) = 1292576 + 0: The total amount of wall time = 948.187410 + 0: The maximum resident set size (KB) = 1232512 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_135562/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 247.982005 - 0: The maximum resident set size (KB) = 1281952 + 0: The total amount of wall time = 246.989736 + 0: The maximum resident set size (KB) = 1235588 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_135562/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/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 = 251.637706 - 0: The maximum resident set size (KB) = 1282692 + 0: The total amount of wall time = 243.345326 + 0: The maximum resident set size (KB) = 1230288 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_135562/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/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 = 247.894872 - 0: The maximum resident set size (KB) = 1282620 + 0: The total amount of wall time = 243.496287 + 0: The maximum resident set size (KB) = 1237700 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_135562/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.036431 - 0: The maximum resident set size (KB) = 1286556 + 0: The total amount of wall time = 238.877192 + 0: The maximum resident set size (KB) = 1230820 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_135562/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 249.898262 - 0: The maximum resident set size (KB) = 1279316 + 0: The total amount of wall time = 239.056770 + 0: The maximum resident set size (KB) = 1231348 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Mar 8 08:01:31 UTC 2024 -Elapsed time: 04h:42m:10s. Have a nice day! +Thu Apr 4 14:57:18 UTC 2024 +Elapsed time: 01h:11m:52s. 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 0f58831c0e..d8d583491a 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 8 13:50:47 UTC 2024 +Thu Apr 4 18:07:00 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_116220/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1261607/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 = 1247.398743 - 0: The maximum resident set size (KB) = 1418360 + 0: The total amount of wall time = 1344.317893 + 0: The maximum resident set size (KB) = 1342820 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_116220/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1261607/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 = 380.961022 - 0: The maximum resident set size (KB) = 1408744 + 0: The total amount of wall time = 391.350241 + 0: The maximum resident set size (KB) = 1343528 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_116220/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1261607/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 = 381.454424 - 0: The maximum resident set size (KB) = 1407480 + 0: The total amount of wall time = 389.898125 + 0: The maximum resident set size (KB) = 1341344 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Mar 8 16:18:50 UTC 2024 -Elapsed time: 02h:28m:03s. Have a nice day! +Thu Apr 4 19:08:57 UTC 2024 +Elapsed time: 01h:01m:57s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 3d9ec97a47..0c421a16ed 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Mar 8 12:38:35 UTC 2024 +Thu Apr 4 16:05:04 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_140241/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_768169/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 = 518.666889 - 0: The maximum resident set size (KB) = 591560 + 0: The total amount of wall time = 2149.189352 + 0: The maximum resident set size (KB) = 541572 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_140241/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_768169/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 = 510.630263 - 0: The maximum resident set size (KB) = 589856 + 0: The total amount of wall time = 2148.974341 + 0: The maximum resident set size (KB) = 544628 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_140241/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_768169/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 = 526.308695 - 0: The maximum resident set size (KB) = 591688 + 0: The total amount of wall time = 2179.538342 + 0: The maximum resident set size (KB) = 543816 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Mar 8 13:43:33 UTC 2024 -Elapsed time: 01h:04m:59s. Have a nice day! +Thu Apr 4 18:04:34 UTC 2024 +Elapsed time: 01h:59m:31s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 1949d65587..a9d6adc776 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,21 +1,44 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -681a70733ad51929905514527b6d5a497cd17776 +616a1599842de8f07db974c54438bb9b9fa996b9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (remotes/origin/HEAD) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 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) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -24,267 +47,267 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_93964 +BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_90813 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:30, 10:13] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:37, 01:21](2973 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:44, 17:13] -PASS -- TEST 'cpld_control_gfsv17_intel' [45:51, 01:24](1593 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:19, 01:23](1720 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:07, 01:23](847 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:53, 01:41](1570 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:20, 04:30] -PASS -- TEST 'cpld_debug_gfsv17_intel' [58:48, 02:08](1607 MB) - -PASS -- COMPILE 's2swa_intel' [10:30, 10:12] -PASS -- TEST 'cpld_control_p8_intel' [53:37, 00:52](3004 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:37, 01:41](2999 MB) -PASS -- TEST 'cpld_restart_p8_intel' [38:53, 01:18](3060 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [53:37, 01:46](3027 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [37:44, 00:53](3077 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [53:37, 01:15](3315 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [53:37, 01:43](2997 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [53:38, 01:36](2927 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [53:37, 01:37](3003 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [53:37, 01:06](2967 MB) - -PASS -- COMPILE 's2sw_intel' [10:30, 09:53] -PASS -- TEST 'cpld_control_noaero_p8_intel' [53:37, 00:53](1588 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [53:37, 01:01](1637 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:28, 09:11] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [54:39, 01:00](1635 MB) - -PASS -- COMPILE 's2s_intel' [12:34, 11:41] -PASS -- TEST 'cpld_control_c48_intel' [51:32, 01:12](2650 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:40, 15:01] -PASS -- TEST 'cpld_control_p8_faster_intel' [48:25, 01:38](3002 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:40, 15:29] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:13, 00:46](1609 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:14, 01:20](912 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:31, 01:24](1589 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:17, 03:37] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [59:51, 01:07](1617 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:29, 09:13] -PASS -- TEST 'control_flake_intel' [50:21, 00:15](576 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [50:21, 01:04](526 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:21, 01:09](531 MB) -PASS -- TEST 'control_latlon_intel' [50:21, 00:38](526 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:21, 00:40](530 MB) -PASS -- TEST 'control_c48_intel' [50:20, 01:02](722 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [50:20, 01:14](721 MB) -PASS -- TEST 'control_c192_intel' [50:21, 01:13](642 MB) -PASS -- TEST 'control_c384_intel' [50:25, 00:57](956 MB) -PASS -- TEST 'control_c384gdas_intel' [50:25, 01:43](1099 MB) -PASS -- TEST 'control_stochy_intel' [50:21, 01:07](537 MB) -PASS -- TEST 'control_stochy_restart_intel' [31:14, 00:48](337 MB) -PASS -- TEST 'control_lndp_intel' [50:21, 01:10](532 MB) -PASS -- TEST 'control_iovr4_intel' [50:21, 00:35](529 MB) -PASS -- TEST 'control_iovr5_intel' [50:21, 00:40](528 MB) -PASS -- TEST 'control_p8_intel' [50:21, 01:26](1507 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [47:00, 01:04](1501 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [44:51, 01:03](1513 MB) -PASS -- TEST 'control_restart_p8_intel' [29:23, 01:04](696 MB) -PASS -- TEST 'control_noqr_p8_intel' [42:24, 00:58](1495 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [28:06, 00:50](703 MB) -PASS -- TEST 'control_decomp_p8_intel' [39:45, 01:10](1501 MB) -PASS -- TEST 'control_2threads_p8_intel' [39:42, 01:33](1590 MB) -PASS -- TEST 'control_p8_lndp_intel' [38:29, 01:06](1512 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [36:46, 01:48](1559 MB) -PASS -- TEST 'control_p8_mynn_intel' [34:15, 00:55](1512 MB) -PASS -- TEST 'merra2_thompson_intel' [34:12, 01:17](1514 MB) -PASS -- TEST 'regional_control_intel' [33:32, 00:26](609 MB) -PASS -- TEST 'regional_restart_intel' [27:43, 00:46](783 MB) -PASS -- TEST 'regional_decomp_intel' [33:19, 00:56](611 MB) -PASS -- TEST 'regional_2threads_intel' [32:56, 01:01](673 MB) -PASS -- TEST 'regional_noquilt_intel' [32:47, 00:57](1148 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [32:27, 00:47](610 MB) -PASS -- TEST 'regional_wofs_intel' [32:14, 00:35](1582 MB) - -PASS -- COMPILE 'ifi_intel' [08:27, 07:59] -PASS -- TEST 'regional_ifi_control_intel' [31:13, 00:48](614 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [31:12, 01:08](609 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [31:10, 00:33](668 MB) - -PASS -- COMPILE 'rrfs_intel' [09:29, 08:30] -PASS -- TEST 'rap_control_intel' [31:10, 01:07](912 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [31:09, 00:39](1091 MB) -PASS -- TEST 'rap_decomp_intel' [30:24, 00:44](916 MB) -PASS -- TEST 'rap_2threads_intel' [28:10, 01:11](1005 MB) -PASS -- TEST 'rap_restart_intel' [18:36, 01:26](788 MB) -PASS -- TEST 'rap_sfcdiff_intel' [28:04, 01:08](913 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:24, 00:48](912 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [16:30, 01:50](784 MB) -PASS -- TEST 'hrrr_control_intel' [27:24, 01:30](908 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [26:09, 01:07](907 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [25:25, 01:58](992 MB) -PASS -- TEST 'hrrr_control_restart_intel' [18:54, 01:13](745 MB) -PASS -- TEST 'rrfs_v1beta_intel' [24:47, 01:36](910 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [24:29, 00:31](1873 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:22, 00:56](1858 MB) - -PASS -- COMPILE 'csawmg_intel' [09:29, 08:23] -PASS -- TEST 'control_csawmg_intel' [24:03, 01:16](603 MB) -PASS -- TEST 'control_csawmgt_intel' [24:00, 00:57](599 MB) - -PASS -- COMPILE 'wam_intel' [08:27, 08:06] -PASS -- TEST 'control_wam_intel' [23:50, 00:18](273 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:29, 08:39] -PASS -- TEST 'control_p8_faster_intel' [23:34, 01:46](1513 MB) -PASS -- TEST 'regional_control_faster_intel' [23:30, 00:12](610 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:23, 03:51] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:07, 00:59](685 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:01, 01:11](688 MB) -PASS -- TEST 'control_stochy_debug_intel' [21:58, 01:04](694 MB) -PASS -- TEST 'control_lndp_debug_intel' [21:58, 00:35](693 MB) -PASS -- TEST 'control_csawmg_debug_intel' [21:17, 00:25](727 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [19:29, 00:41](731 MB) -PASS -- TEST 'control_ras_debug_intel' [18:54, 00:15](701 MB) -PASS -- TEST 'control_diag_debug_intel' [18:19, 00:25](746 MB) -PASS -- TEST 'control_debug_p8_intel' [17:13, 01:07](1517 MB) -PASS -- TEST 'regional_debug_intel' [17:02, 00:44](628 MB) -PASS -- TEST 'rap_control_debug_intel' [16:15, 01:14](1071 MB) -PASS -- TEST 'hrrr_control_debug_intel' [14:24, 00:16](1067 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [14:20, 00:50](1068 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [14:16, 00:38](1069 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:06, 00:36](1075 MB) -PASS -- TEST 'rap_diag_debug_intel' [13:45, 00:47](1157 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:27, 00:48](1075 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:21, 00:36](1071 MB) -PASS -- TEST 'rap_lndp_debug_intel' [13:21, 00:38](1075 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:03, 00:57](1075 MB) -PASS -- TEST 'rap_noah_debug_intel' [12:46, 00:31](1067 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:36, 01:07](1074 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:29, 00:24](1071 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:39, 00:13](1063 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 00:58](1073 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:14, 00:27](1074 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:06, 01:36](1079 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:21, 02:47] -PASS -- TEST 'control_wam_debug_intel' [08:04, 00:19](300 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:38, 08:12] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:52, 01:04](963 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 02:03](795 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:37, 01:30](794 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:45, 02:02](856 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:43, 02:08](839 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 01:44](792 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [55:09, 00:50](692 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [57:54, 00:45](671 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:53, 10:22] -PASS -- TEST 'conus13km_control_intel' [06:01, 00:45](1007 MB) -PASS -- TEST 'conus13km_2threads_intel' [58:02, 00:27](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [58:01, 01:13](882 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:48, 08:19] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:53, 00:41](816 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [50:59, 03:00] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [55:23, 01:13](949 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [55:23, 00:15](954 MB) -PASS -- TEST 'conus13km_debug_intel' [55:23, 00:32](1039 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [55:23, 00:36](706 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [55:24, 00:44](1036 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [55:23, 00:35](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [49:59, 02:54] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [55:10, 01:09](974 MB) - -PASS -- COMPILE 'hafsw_intel' [57:15, 09:28] -PASS -- TEST 'hafs_regional_atm_intel' [47:56, 01:55](620 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [47:56, 00:55](968 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [47:54, 01:32](663 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [47:54, 02:00](704 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [47:55, 01:43](708 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [47:54, 00:43](391 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [47:55, 01:46](409 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [47:55, 01:36](290 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:58, 01:55](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [47:54, 01:16](415 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [47:54, 01:28](419 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [47:56, 01:03](493 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [47:55, 00:43](316 MB) -PASS -- TEST 'gnv1_nested_intel' [47:55, 01:13](680 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [51:02, 03:23] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [54:10, 01:03](507 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [58:16, 09:44] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [46:46, 01:19](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [46:46, 01:31](712 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [57:16, 09:22] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [46:54, 01:42](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [57:16, 09:03] -PASS -- TEST 'hafs_regional_docn_intel' [46:52, 01:58](668 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [46:52, 01:46](652 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [46:50, 00:31](882 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [50:00, 08:36] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [46:40, 01:09](750 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [41:11, 01:07](727 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [46:24, 00:10](630 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [45:19, 00:56](632 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [42:26, 00:29](628 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [41:48, 00:40](747 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [40:09, 01:01](748 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [39:56, 00:47](630 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [39:08, 00:42](592 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:02, 00:51](576 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [39:01, 01:08](752 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [38:49, 00:43](2012 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [36:59, 00:48](1950 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [43:46, 08:16] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [46:51, 00:15](751 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [34:23, 00:57] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:10, 00:25](226 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:10, 00:43](368 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [47:35, 00:52](369 MB) - -PASS -- COMPILE 'atml_intel' [10:30, 09:42] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [36:47, 01:16](1552 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [36:25, 01:13](1550 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:28, 00:25](746 MB) - -PASS -- COMPILE 'atmw_intel' [09:30, 08:48] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [35:47, 00:53](1542 MB) - -PASS -- COMPILE 'atmwm_intel' [09:31, 08:32] -PASS -- TEST 'control_atmwav_intel' [35:23, 01:22](544 MB) - -PASS -- COMPILE 'atmaero_intel' [09:31, 08:34] -PASS -- TEST 'atmaero_control_p8_intel' [34:59, 01:18](2850 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [34:32, 01:12](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [34:29, 01:45](2922 MB) - -PASS -- COMPILE 'atmaq_intel' [09:29, 08:23] - -PASS -- COMPILE 'atmaq_debug_intel' [13:37, 03:06] -PASS -- TEST 'regional_atmaq_debug_intel' [33:15, 00:48](4430 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:33, 10:12] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [38:08, 01:24](3046 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:43, 15:39] +PASS -- TEST 'cpld_control_gfsv17_intel' [31:46, 01:47](1652 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [02:21, 01:58](1777 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [02:13, 01:11](907 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:34, 01:23](1624 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:20, 03:48] +PASS -- TEST 'cpld_debug_gfsv17_intel' [44:22, 01:13](1673 MB) + +PASS -- COMPILE 's2swa_intel' [10:33, 10:10] +PASS -- TEST 'cpld_control_p8_intel' [38:08, 01:39](3069 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:08, 01:19](3071 MB) +PASS -- TEST 'cpld_restart_p8_intel' [29:25, 01:45](3126 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [38:08, 01:00](3092 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [17:12, 01:32](3147 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [38:08, 00:53](3384 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [38:08, 01:01](3068 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [38:09, 01:36](2992 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [38:08, 01:43](3071 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [38:08, 00:52](3033 MB) + +PASS -- COMPILE 's2sw_intel' [10:33, 10:12] +PASS -- TEST 'cpld_control_noaero_p8_intel' [38:08, 00:54](1653 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:08, 01:02](1694 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:30, 09:14] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [39:10, 01:00](1698 MB) + +PASS -- COMPILE 's2s_intel' [10:33, 09:26] +PASS -- TEST 'cpld_control_c48_intel' [38:07, 00:45](2676 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:42, 14:12] +PASS -- TEST 'cpld_control_p8_faster_intel' [33:00, 01:34](3067 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:43, 15:12] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:32, 01:07](1673 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [02:40, 00:50](971 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [02:30, 01:24](1647 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:19, 03:40] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [44:23, 00:58](1683 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:30, 09:09] +PASS -- TEST 'control_flake_intel' [34:52, 00:23](639 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [34:52, 00:43](585 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:52, 00:45](593 MB) +PASS -- TEST 'control_latlon_intel' [34:52, 00:40](590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:52, 00:51](590 MB) +PASS -- TEST 'control_c48_intel' [34:51, 01:08](738 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [34:51, 00:42](739 MB) +PASS -- TEST 'control_c192_intel' [34:52, 00:35](706 MB) +PASS -- TEST 'control_c384_intel' [34:56, 01:05](1012 MB) +PASS -- TEST 'control_c384gdas_intel' [34:56, 01:52](1157 MB) +PASS -- TEST 'control_stochy_intel' [34:52, 00:37](595 MB) +PASS -- TEST 'control_stochy_restart_intel' [17:52, 01:04](395 MB) +PASS -- TEST 'control_lndp_intel' [34:52, 00:29](591 MB) +PASS -- TEST 'control_iovr4_intel' [30:23, 00:17](591 MB) +PASS -- TEST 'control_iovr5_intel' [30:08, 00:30](589 MB) +PASS -- TEST 'control_p8_intel' [29:46, 01:34](1562 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [29:08, 01:53](1563 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [29:07, 01:44](1571 MB) +PASS -- TEST 'control_restart_p8_intel' [14:06, 01:01](752 MB) +PASS -- TEST 'control_noqr_p8_intel' [24:02, 01:11](1552 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [13:51, 00:55](759 MB) +PASS -- TEST 'control_decomp_p8_intel' [24:02, 01:01](1560 MB) +PASS -- TEST 'control_2threads_p8_intel' [23:13, 01:32](1658 MB) +PASS -- TEST 'control_p8_lndp_intel' [21:21, 01:01](1564 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [21:03, 01:40](1619 MB) +PASS -- TEST 'control_p8_mynn_intel' [20:33, 01:46](1576 MB) +PASS -- TEST 'merra2_thompson_intel' [19:58, 02:01](1574 MB) +PASS -- TEST 'regional_control_intel' [19:02, 00:09](634 MB) +PASS -- TEST 'regional_restart_intel' [13:15, 00:54](803 MB) +PASS -- TEST 'regional_decomp_intel' [18:53, 00:12](629 MB) +PASS -- TEST 'regional_2threads_intel' [18:52, 00:35](725 MB) +PASS -- TEST 'regional_noquilt_intel' [18:49, 00:28](1168 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [18:44, 00:33](629 MB) +PASS -- TEST 'regional_wofs_intel' [17:58, 00:50](1604 MB) + +PASS -- COMPILE 'ifi_intel' [08:27, 07:57] +PASS -- TEST 'regional_ifi_control_intel' [35:53, 00:58](629 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [35:53, 00:15](628 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [35:54, 00:19](726 MB) + +PASS -- COMPILE 'rrfs_intel' [09:30, 08:35] +PASS -- TEST 'rap_control_intel' [17:51, 01:51](974 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:33, 00:56](1150 MB) +PASS -- TEST 'rap_decomp_intel' [17:12, 00:55](973 MB) +PASS -- TEST 'rap_2threads_intel' [16:36, 01:17](1059 MB) +PASS -- TEST 'rap_restart_intel' [05:17, 01:07](846 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:23, 01:16](969 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:51, 00:41](971 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:56, 01:39](844 MB) +PASS -- TEST 'hrrr_control_intel' [13:52, 01:18](966 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [13:25, 00:50](967 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:25, 01:00](1044 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:32, 00:53](798 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:39, 01:50](968 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:07, 01:05](1934 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:46, 01:00](1919 MB) + +PASS -- COMPILE 'csawmg_intel' [09:31, 08:26] +PASS -- TEST 'control_csawmg_intel' [11:32, 00:15](661 MB) +PASS -- TEST 'control_csawmgt_intel' [11:18, 00:23](655 MB) + +PASS -- COMPILE 'wam_intel' [08:29, 08:09] +PASS -- TEST 'control_wam_intel' [11:02, 01:09](333 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:46] +PASS -- TEST 'control_p8_faster_intel' [10:28, 01:42](1565 MB) +PASS -- TEST 'regional_control_faster_intel' [10:23, 00:39](629 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:20, 04:00] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:08, 00:36](755 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:29, 01:13](759 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:18, 00:26](760 MB) +PASS -- TEST 'control_lndp_debug_intel' [09:17, 01:06](763 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:45, 00:34](803 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [08:45, 01:10](804 MB) +PASS -- TEST 'control_ras_debug_intel' [07:39, 00:24](771 MB) +PASS -- TEST 'control_diag_debug_intel' [06:30, 01:15](817 MB) +PASS -- TEST 'control_debug_p8_intel' [05:34, 00:50](1590 MB) +PASS -- TEST 'regional_debug_intel' [05:05, 00:34](673 MB) +PASS -- TEST 'rap_control_debug_intel' [04:31, 00:31](1147 MB) +PASS -- TEST 'hrrr_control_debug_intel' [03:47, 00:36](1137 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [03:34, 00:24](1139 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [03:04, 00:48](1147 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [02:48, 01:01](1142 MB) +PASS -- TEST 'rap_diag_debug_intel' [02:48, 00:41](1233 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [02:41, 00:28](1143 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [01:45, 00:19](1146 MB) +PASS -- TEST 'rap_lndp_debug_intel' [01:26, 01:09](1148 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [01:08, 00:14](1147 MB) +PASS -- TEST 'rap_noah_debug_intel' [01:04, 01:02](1139 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [01:02, 00:35](1139 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [59:57, 00:25](1146 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [59:56, 00:36](1136 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [59:53, 01:06](1144 MB) +PASS -- TEST 'rap_flake_debug_intel' [59:52, 00:52](1145 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [59:00, 01:26](1149 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:17, 02:47] +PASS -- TEST 'control_wam_debug_intel' [57:59, 00:19](376 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:30, 08:05] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [57:16, 01:19](1018 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [57:04, 01:14](854 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [56:37, 01:29](849 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [56:32, 01:27](913 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [56:33, 01:07](904 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [56:24, 01:46](853 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [45:43, 01:36](750 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:56, 01:08](735 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:41, 10:15] +PASS -- TEST 'conus13km_control_intel' [56:18, 00:41](1061 MB) +PASS -- TEST 'conus13km_2threads_intel' [49:25, 00:44](1042 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [49:24, 00:18](939 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [54:08, 08:17] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:40, 00:37](875 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [47:54, 03:01] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:04, 01:12](1020 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:04, 00:18](1021 MB) +PASS -- TEST 'conus13km_debug_intel' [45:04, 00:45](1110 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [45:04, 00:50](788 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [45:05, 00:45](1085 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [45:04, 00:28](1180 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [47:52, 02:52] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:45, 01:08](1046 MB) + +PASS -- COMPILE 'hafsw_intel' [54:03, 09:18] +PASS -- TEST 'hafs_regional_atm_intel' [37:58, 02:10](677 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:58, 00:39](1025 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:56, 01:29](721 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [37:56, 02:11](765 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:57, 02:02](776 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [37:56, 01:03](442 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [37:57, 01:34](467 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [37:57, 01:02](339 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:00, 02:38](402 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:56, 01:00](474 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:56, 01:23](474 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [37:58, 00:56](542 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [37:57, 00:39](369 MB) +PASS -- TEST 'gnv1_nested_intel' [37:57, 01:14](734 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [45:50, 03:19] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:52, 00:38](576 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [51:02, 09:21] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [38:39, 00:46](581 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [38:39, 00:46](756 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [51:03, 09:23] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:36, 01:08](756 MB) + +PASS -- COMPILE 'hafs_all_intel' [51:03, 08:55] +PASS -- TEST 'hafs_regional_docn_intel' [37:34, 01:47](715 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:34, 01:21](698 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:32, 00:17](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [46:48, 08:40] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [37:15, 00:41](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [21:27, 00:12](738 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [37:09, 00:27](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [35:15, 00:19](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [35:02, 01:02](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [33:58, 01:03](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [33:23, 00:35](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [28:48, 00:59](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [28:46, 00:54](650 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:21, 00:58](630 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [27:45, 00:50](759 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [26:20, 00:54](2020 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [24:35, 01:03](2020 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [40:39, 08:32] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [38:37, 00:40](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 00:52] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [43:53, 00:47](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [43:53, 01:12](412 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:10, 00:56](411 MB) + +PASS -- COMPILE 'atml_intel' [10:32, 09:19] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:53, 01:30](1606 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [21:27, 01:36](1603 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:56, 00:28](808 MB) + +PASS -- COMPILE 'atmw_intel' [09:29, 08:47] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:57, 01:19](1609 MB) + +PASS -- COMPILE 'atmwm_intel' [14:41, 08:47] +PASS -- TEST 'control_atmwav_intel' [20:54, 01:31](603 MB) + +PASS -- COMPILE 'atmaero_intel' [10:34, 08:36] +PASS -- TEST 'atmaero_control_p8_intel' [20:50, 01:01](2917 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [20:34, 00:54](2977 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:24, 01:43](2991 MB) + +PASS -- COMPILE 'atmaq_intel' [36:25, 08:22] + +PASS -- COMPILE 'atmaq_debug_intel' [31:15, 03:03] +PASS -- TEST 'regional_atmaq_debug_intel' [07:21, 00:56](4493 MB) SYNOPSIS: -Starting Date/Time: 20240220 12:55:39 -Ending Date/Time: 20240220 15:02:33 -Total Time: 02h:07m:09s +Starting Date/Time: 20240404 18:11:06 +Ending Date/Time: 20240404 20:17:56 +Total Time: 02h:07m:10s Compiles Completed: 37/37 Tests Completed: 176/176 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 8defe17942..1b36672e72 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,44 +1,44 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -33c6f8a535e2fd522fb661a120aaaa35c5a397c1 +7cc39e3287638afc5817eeb7c57e1279250a7dcc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) - 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47) - cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -47,273 +47,366 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240301 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_99771 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_10684 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:37, 21:40] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:11, 05:07](3077 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:35, 22:28] -PASS -- TEST 'cpld_control_gfsv17_intel' [18:19, 13:53](1687 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:57, 15:28](1827 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:34, 07:38](954 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:11, 15:51](1653 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:34, 10:59] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:49, 21:58](1699 MB) - -PASS -- COMPILE 's2swa_intel' [22:42, 21:28] -PASS -- TEST 'cpld_control_p8_intel' [11:06, 05:51](3092 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:16, 05:46](3091 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:52, 03:27](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:04, 05:51](3122 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:07, 03:29](3174 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:44, 05:44](3087 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:44, 04:51](3384 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:13, 05:48](3099 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:09, 09:04](3634 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [18:49, 06:23](3613 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [37:16, 10:21](4342 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [35:06, 07:49](4645 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:35, 05:27](3065 MB) - -PASS -- COMPILE 's2sw_intel' [21:44, 20:31] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:41, 04:22](1686 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 04:28](1723 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:30, 11:06] -PASS -- TEST 'cpld_debug_p8_intel' [10:59, 07:47](3152 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:35, 10:35] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 05:21](1698 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:38, 15:37] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:12, 04:27](1722 MB) - -PASS -- COMPILE 's2s_intel' [16:38, 15:54] -PASS -- TEST 'cpld_control_c48_intel' [08:50, 06:43](2662 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:41, 24:38] -PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 05:45](3100 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:31, 21:25] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:05, 14:10](1694 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:35, 07:43](1405 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:32, 16:08](1664 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:34, 10:53] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 22:53](1716 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:31, 13:36] -PASS -- TEST 'control_flake_intel' [05:13, 03:35](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:07, 02:10](619 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:20](621 MB) -PASS -- TEST 'control_latlon_intel' [04:03, 02:11](620 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:11](618 MB) -PASS -- TEST 'control_c48_intel' [07:01, 05:18](735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:03, 05:15](738 MB) -PASS -- TEST 'control_c192_intel' [10:27, 07:56](736 MB) -PASS -- TEST 'control_c384_intel' [17:47, 08:42](1058 MB) -PASS -- TEST 'control_c384gdas_intel' [20:57, 07:48](1198 MB) -PASS -- TEST 'control_stochy_intel' [03:00, 01:30](623 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:08, 00:55](438 MB) -PASS -- TEST 'control_lndp_intel' [03:01, 01:26](626 MB) -PASS -- TEST 'control_iovr4_intel' [04:14, 02:10](618 MB) -PASS -- TEST 'control_iovr5_intel' [04:06, 02:10](623 MB) -PASS -- TEST 'control_p8_intel' [06:08, 02:36](1592 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:15, 02:44](1597 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:09, 02:37](1599 MB) -PASS -- TEST 'control_restart_p8_intel' [04:03, 01:30](797 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:26, 02:34](1592 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:10, 01:30](804 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:14, 02:40](1594 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:07, 04:29](1601 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:09, 03:26](1648 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:27, 02:46](1607 MB) -PASS -- TEST 'merra2_thompson_intel' [06:30, 03:11](1607 MB) -PASS -- TEST 'regional_control_intel' [06:34, 04:36](631 MB) -PASS -- TEST 'regional_restart_intel' [04:58, 02:37](800 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 04:47](632 MB) -PASS -- TEST 'regional_noquilt_intel' [06:53, 04:29](1161 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 04:35](625 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:36](632 MB) -PASS -- TEST 'regional_wofs_intel' [07:19, 05:40](1600 MB) - -PASS -- COMPILE 'rrfs_intel' [13:33, 12:20] -PASS -- TEST 'rap_control_intel' [09:04, 06:12](1005 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:41, 03:53](1189 MB) -PASS -- TEST 'rap_decomp_intel' [09:16, 06:29](1004 MB) -PASS -- TEST 'rap_restart_intel' [05:55, 03:15](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:09, 06:11](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:04, 06:27](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:48, 04:44](881 MB) -PASS -- TEST 'hrrr_control_intel' [06:00, 03:20](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:18, 03:26](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:57, 02:55](1092 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:27, 01:51](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:03](997 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:21, 07:30](1955 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:18, 07:16](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [12:39, 11:26] -PASS -- TEST 'control_csawmg_intel' [07:56, 05:13](692 MB) -PASS -- TEST 'control_csawmgt_intel' [07:50, 05:16](693 MB) -PASS -- TEST 'control_ras_intel' [04:25, 02:57](655 MB) - -PASS -- COMPILE 'wam_intel' [11:28, 10:39] -PASS -- TEST 'control_wam_intel' [04:11, 01:58](382 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:40, 13:37] -PASS -- TEST 'control_p8_faster_intel' [05:20, 02:31](1593 MB) -PASS -- TEST 'regional_control_faster_intel' [06:38, 04:24](629 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:29, 09:55] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:41](790 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:12, 02:34](791 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:02](798 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:38](797 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:42, 03:57](837 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:50, 04:01](837 MB) -PASS -- TEST 'control_ras_debug_intel' [03:56, 02:38](805 MB) -PASS -- TEST 'control_diag_debug_intel' [04:58, 02:46](851 MB) -PASS -- TEST 'control_debug_p8_intel' [04:49, 02:51](1624 MB) -PASS -- TEST 'regional_debug_intel' [18:34, 16:25](665 MB) -PASS -- TEST 'rap_control_debug_intel' [06:09, 04:44](1179 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:17, 04:34](1175 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 04:41](1178 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:00, 04:45](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:09, 04:45](1179 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:01, 04:54](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:07, 04:50](1179 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:02, 04:56](1177 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:15, 04:50](1181 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:14, 04:44](1178 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:04, 04:35](1177 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:27, 04:42](1178 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:02, 07:30](1179 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:06, 04:42](1170 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:08, 05:36](1182 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:15, 04:44](1178 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:58, 07:58](1181 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:32, 06:24] -PASS -- TEST 'control_wam_debug_intel' [06:52, 04:41](425 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:27, 10:38] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:17, 03:51](1053 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:32, 05:14](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:17, 02:50](880 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:59, 03:00](1255 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:42, 03:55](793 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:09, 01:37](773 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:28, 12:52] -PASS -- TEST 'conus13km_control_intel' [06:53, 02:04](1081 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:11, 01:14](1082 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:13, 01:13](972 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:40, 10:50] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 03:42](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:37, 06:55] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:00, 04:39](1056 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:05, 04:32](1056 MB) -PASS -- TEST 'conus13km_debug_intel' [17:26, 13:33](1134 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:14, 13:43](817 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:32, 13:46](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:36, 06:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:09, 04:40](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [18:48, 17:20] -PASS -- TEST 'hafs_regional_atm_intel' [07:51, 04:49](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:14, 05:32](1063 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:34, 06:42](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:44, 11:10](791 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:40, 12:24](813 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 04:45](473 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:42, 05:58](487 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:57, 02:36](504 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:35, 06:40](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 03:38](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:44, 03:19](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:10, 04:08](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:16, 01:25](425 MB) -PASS -- TEST 'gnv1_nested_intel' [06:17, 03:35](785 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:28, 08:32] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:24, 12:13](618 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:42, 20:54] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:32, 07:18](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:55, 07:30](686 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:47, 18:28] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 05:33](673 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:32, 15:51] -PASS -- TEST 'hafs_regional_docn_intel' [08:40, 05:48](749 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:39, 05:48](735 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:42, 16:21](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:39, 08:53] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:36](748 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:39, 01:36](738 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:02, 02:31](1354 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:08, 02:29](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:04, 02:26](1255 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:34](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:07, 02:37](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:11, 02:28](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:59, 05:57](686 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:39, 06:00](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:00, 02:34](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:06](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 04:10](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:38, 06:25] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:14](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:33, 08:46] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:29, 02:36](760 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:29, 02:59] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:58, 01:28](846 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:19, 01:30](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:56, 00:52](451 MB) - -PASS -- COMPILE 'atml_intel' [14:46, 13:58] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:23, 07:54](1625 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:18, 07:22](1627 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:36, 03:54](852 MB) - -PASS -- COMPILE 'atmw_intel' [14:36, 13:36] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:13, 01:44](1626 MB) - -PASS -- COMPILE 'atmwm_intel' [14:44, 13:37] -PASS -- TEST 'control_atmwav_intel' [03:32, 01:34](635 MB) - -PASS -- COMPILE 'atmaero_intel' [13:44, 12:38] -PASS -- TEST 'atmaero_control_p8_intel' [06:56, 03:48](2945 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:38, 04:25](3001 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:12, 04:36](3011 MB) - -PASS -- COMPILE 'atmaq_intel' [13:40, 12:01] - -PASS -- COMPILE 'atmaq_debug_intel' [08:38, 07:41] -PASS -- TEST 'regional_atmaq_debug_intel' [29:33, 22:42](4530 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:32, 19:36] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 04:54](3079 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:29, 20:57] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:22, 13:48](1690 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:44, 15:07](1825 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:32, 07:09](962 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:24, 15:44](1656 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:32, 09:34] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 21:20](1701 MB) + +PASS -- COMPILE 's2swa_intel' [20:30, 19:20] +PASS -- TEST 'cpld_control_p8_intel' [09:09, 05:40](3094 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:13, 05:40](3091 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:54, 03:19](3149 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:09, 05:38](3123 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:54, 03:22](3179 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:55, 05:34](3093 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:35, 04:37](3388 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:11, 05:37](3102 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:19, 08:46](3635 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:36, 05:48](3614 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:38, 09:46](4343 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:57, 06:53](4650 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:44, 05:18](3067 MB) + +PASS -- COMPILE 's2sw_intel' [19:30, 18:58] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:43, 04:15](1681 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:59, 04:17](1726 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:24, 09:28] +PASS -- TEST 'cpld_debug_p8_intel' [10:09, 07:40](3155 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:30, 08:56] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:36, 05:16](1706 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:30, 14:26] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 04:14](1725 MB) + +PASS -- COMPILE 's2s_intel' [15:30, 14:29] +PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:40](2670 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:33, 23:00] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:22, 05:30](3101 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:29, 19:44] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:02, 14:03](1706 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:19](1016 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:45, 16:00](1668 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:19, 08:52] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:20, 22:53](1715 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:28, 13:02] +PASS -- TEST 'control_flake_intel' [04:55, 03:22](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:54, 02:04](619 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:03, 02:07](623 MB) +PASS -- TEST 'control_latlon_intel' [03:40, 02:06](621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 02:07](621 MB) +PASS -- TEST 'control_c48_intel' [06:43, 05:15](734 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 05:12](736 MB) +PASS -- TEST 'control_c192_intel' [09:22, 07:51](740 MB) +PASS -- TEST 'control_c384_intel' [14:29, 08:15](1068 MB) +PASS -- TEST 'control_c384gdas_intel' [15:55, 07:15](1201 MB) +PASS -- TEST 'control_stochy_intel' [02:48, 01:27](629 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:38, 00:53](439 MB) +PASS -- TEST 'control_lndp_intel' [02:39, 01:21](626 MB) +PASS -- TEST 'control_iovr4_intel' [04:00, 02:05](625 MB) +PASS -- TEST 'control_iovr5_intel' [03:45, 02:07](621 MB) +PASS -- TEST 'control_p8_intel' [04:33, 02:29](1600 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:33, 02:28](1596 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:36, 02:28](1602 MB) +PASS -- TEST 'control_restart_p8_intel' [03:27, 01:26](800 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:37, 02:29](1592 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:21](805 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:34, 02:35](1593 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:28, 04:22](1608 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:37, 03:16](1662 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:36, 02:33](1605 MB) +PASS -- TEST 'merra2_thompson_intel' [05:52, 02:57](1608 MB) +PASS -- TEST 'regional_control_intel' [06:15, 04:30](628 MB) +PASS -- TEST 'regional_restart_intel' [04:18, 02:30](799 MB) +PASS -- TEST 'regional_decomp_intel' [06:18, 04:44](632 MB) +PASS -- TEST 'regional_noquilt_intel' [06:16, 04:23](1160 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:19, 04:29](627 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:15, 04:30](634 MB) +PASS -- TEST 'regional_wofs_intel' [07:08, 05:35](1608 MB) + +PASS -- COMPILE 'rrfs_intel' [12:29, 11:14] +PASS -- TEST 'rap_control_intel' [08:26, 06:04](1006 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 03:40](1196 MB) +PASS -- TEST 'rap_decomp_intel' [08:19, 06:21](1005 MB) +PASS -- TEST 'rap_restart_intel' [05:14, 03:11](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:28, 06:05](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:18, 06:21](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:31, 04:36](880 MB) +PASS -- TEST 'hrrr_control_intel' [05:18, 03:12](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:17, 03:17](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 02:49](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:58, 01:50](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:23, 06:00](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:45, 07:21](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:41, 07:05](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [11:28, 10:20] +PASS -- TEST 'control_csawmg_intel' [08:02, 05:49](696 MB) +PASS -- TEST 'control_csawmgt_intel' [08:17, 05:47](693 MB) +PASS -- TEST 'control_ras_intel' [04:42, 02:50](656 MB) + +PASS -- COMPILE 'wam_intel' [10:26, 09:38] +PASS -- TEST 'control_wam_intel' [03:39, 01:53](379 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:30, 12:41] +PASS -- TEST 'control_p8_faster_intel' [04:51, 02:24](1594 MB) +PASS -- TEST 'regional_control_faster_intel' [06:16, 04:14](628 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 08:33] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:32](794 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:32](792 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:40, 02:50](796 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:42, 02:36](799 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:13, 03:58](841 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:13, 03:57](838 MB) +PASS -- TEST 'control_ras_debug_intel' [03:37, 02:38](811 MB) +PASS -- TEST 'control_diag_debug_intel' [04:28, 02:37](855 MB) +PASS -- TEST 'control_debug_p8_intel' [04:17, 02:36](1622 MB) +PASS -- TEST 'regional_debug_intel' [18:08, 15:59](663 MB) +PASS -- TEST 'rap_control_debug_intel' [05:44, 04:39](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:40, 04:35](1180 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 04:40](1182 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:47, 04:39](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:45, 04:39](1185 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:22, 04:51](1263 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:42, 04:55](1179 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:40, 04:47](1186 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:45, 04:43](1185 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:45, 04:40](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:43, 04:36](1177 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:43, 04:45](1184 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:40, 07:45](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:37](1177 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:48, 05:45](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:42, 04:37](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:14, 07:55](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 05:31] +PASS -- TEST 'control_wam_debug_intel' [05:35, 04:37](421 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:42] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:13, 03:30](1062 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:10, 05:06](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:07, 02:46](883 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:13, 02:52](885 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:06, 03:52](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 01:31](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:27, 11:33] +PASS -- TEST 'conus13km_control_intel' [05:37, 01:53](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:40, 00:57](1082 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:00, 01:10](972 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:26, 09:43] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:05, 03:36](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:23, 05:36] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:46, 04:29](1061 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:24](1058 MB) +PASS -- TEST 'conus13km_debug_intel' [16:06, 13:17](1131 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:05, 13:27](818 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:01, 13:10](1203 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:32] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:46, 04:41](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [16:29, 15:50] +PASS -- TEST 'hafs_regional_atm_intel' [06:50, 04:32](714 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:12, 05:09](1072 MB) +FAIL TO COMPARE -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [12:52, 10:56](797 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:58, 12:01](817 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:26, 04:41](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:34, 05:42](493 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:12, 02:18](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:57, 06:14](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:14](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:17, 03:05](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:28, 03:46](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:36, 01:17](427 MB) +PASS -- TEST 'gnv1_nested_intel' [05:21, 03:25](789 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:29, 07:04] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:33, 12:00](615 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:29, 19:31] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:42, 07:08](638 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:10](689 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:30, 16:47] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:57, 05:19](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:24, 14:10] +FAIL TO COMPARE -- TEST 'hafs_regional_docn_intel' [, ]( MB) +FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:28, 16:11](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:27, 07:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:36, 02:30](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:40, 01:32](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:37, 02:22](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:37, 02:23](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:28, 02:25](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:43, 02:29](749 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:34, 02:30](762 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:22](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:03, 05:41](690 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:45, 05:39](678 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:29](749 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:37, 03:59](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:32, 03:55](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:26, 05:04] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:38, 05:04](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 07:36] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:30](748 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:17] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:44, 01:11](313 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:38, 01:09](453 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:42, 00:46](452 MB) + +PASS -- COMPILE 'atml_intel' [13:25, 12:45] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:41, 06:19](1642 MB) +FAIL TO COMPARE -- TEST 'control_p8_atmlnd_intel' [, ]( MB) +MISSING -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB) + +PASS -- COMPILE 'atmw_intel' [13:26, 12:38] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:21, 01:33](1634 MB) + +PASS -- COMPILE 'atmwm_intel' [13:25, 12:30] +PASS -- TEST 'control_atmwav_intel' [03:01, 01:30](639 MB) + +PASS -- COMPILE 'atmaero_intel' [12:25, 11:10] +PASS -- TEST 'atmaero_control_p8_intel' [05:56, 03:38](2947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:44, 04:15](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:17, 04:32](3011 MB) + +PASS -- COMPILE 'atmaq_intel' [11:25, 10:36] + +PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:17] +PASS -- TEST 'regional_atmaq_debug_intel' [24:39, 21:55](4534 MB) SYNOPSIS: -Starting Date/Time: 20240308 07:21:30 -Ending Date/Time: 20240308 09:01:22 -Total Time: 01h:41m:04s +Starting Date/Time: 20240404 09:03:16 +Ending Date/Time: 20240404 10:29:28 +Total Time: 01h:26m:46s Compiles Completed: 39/39 -Tests Completed: 175/175 +Tests Completed: 170/175 +Failed Tests: +* TEST hafs_regional_atm_ocn_intel: FAIL TO COMPARE +-- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_hafs_regional_atm_ocn_intel.log +* TEST hafs_regional_docn_intel: FAIL TO COMPARE +-- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_hafs_regional_docn_intel.log +* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE +-- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_hafs_regional_docn_oisst_intel.log +* TEST control_p8_atmlnd_intel: FAIL TO COMPARE +-- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_control_p8_atmlnd_intel.log +* TEST control_restart_p8_atmlnd_intel: MISSING +-- LOG: N/A + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +7cc39e3287638afc5817eeb7c57e1279250a7dcc + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 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) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_21338 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'hafsw_intel' [16:32, 16:07] +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:32](780 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:31, 14:32] +PASS -- TEST 'hafs_regional_docn_intel' [07:24, 05:41](752 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:24, 05:41](739 MB) + +PASS -- COMPILE 'atml_intel' [14:29, 13:18] +PASS -- TEST 'control_p8_atmlnd_intel' [10:00, 07:09](1641 MB) + +SYNOPSIS: +Starting Date/Time: 20240404 11:35:33 +Ending Date/Time: 20240404 12:02:07 +Total Time: 00h:26m:47s +Compiles Completed: 3/3 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 66d1ffb3f8..7d0d7663cb 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,44 +1,44 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -61e86c66145af77f68ab88bd931b7706228a4879 +7cc39e3287638afc5817eeb7c57e1279250a7dcc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) - 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47) - cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -47,278 +47,278 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240301 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/FV3_RT/rt_166703 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_4074 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:15, 17:32] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:57, 07:29](3071 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 21:10] -PASS -- TEST 'cpld_control_gfsv17_intel' [23:35, 13:41](1701 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:07, 14:10](1814 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:31, 06:52](952 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:45, 15:24](1673 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:12, 11:04] -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:44, 24:14](1700 MB) - -PASS -- COMPILE 's2swa_intel' [23:13, 21:17] -PASS -- TEST 'cpld_control_p8_intel' [14:11, 08:15](3101 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:36, 08:45](3100 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:53, 06:10](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:08, 08:16](3124 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:53, 06:08](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:05, 06:45](3416 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:43, 08:28](3099 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:55, 07:21](3022 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:24, 08:38](3100 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:54, 10:34](3270 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [19:10, 07:50](3600 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:51, 13:13](4037 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:02, 09:09](4347 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:55, 08:06](3068 MB) - -PASS -- COMPILE 's2sw_intel' [22:13, 20:28] -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:16, 05:24](1684 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:28, 05:15](1729 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:12, 11:52] -PASS -- TEST 'cpld_debug_p8_intel' [15:44, 10:05](3131 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:12, 11:26] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:52, 05:59](1699 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:55] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:30, 05:25](1730 MB) - -PASS -- COMPILE 's2s_intel' [16:10, 14:34] -PASS -- TEST 'cpld_control_c48_intel' [10:12, 06:53](2662 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:13, 21:23] -PASS -- TEST 'cpld_control_p8_faster_intel' [13:07, 08:03](3100 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 21:38] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:17, 15:58](1701 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:17, 07:12](999 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:04, 17:30](1681 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:20, 12:36] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:49, 26:43](1707 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:21, 15:11] -PASS -- TEST 'control_flake_intel' [07:41, 04:04](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 02:34](619 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 02:38](627 MB) -PASS -- TEST 'control_latlon_intel' [05:32, 02:38](622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:41, 02:37](623 MB) -PASS -- TEST 'control_c48_intel' [10:23, 05:37](722 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:29, 05:38](727 MB) -PASS -- TEST 'control_c192_intel' [13:38, 09:11](740 MB) -PASS -- TEST 'control_c384_intel' [20:49, 16:34](1042 MB) -PASS -- TEST 'control_c384gdas_intel' [22:25, 14:19](1184 MB) -PASS -- TEST 'control_stochy_intel' [04:42, 01:56](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:56, 01:23](430 MB) -PASS -- TEST 'control_lndp_intel' [04:42, 01:51](627 MB) -PASS -- TEST 'control_iovr4_intel' [05:19, 02:39](623 MB) -PASS -- TEST 'control_iovr5_intel' [07:04, 02:56](623 MB) -PASS -- TEST 'control_p8_intel' [11:15, 04:22](1607 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:44, 03:41](1609 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:20, 03:53](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [09:11, 01:42](789 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:01, 03:48](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:38, 01:48](793 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:09, 03:22](1595 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:08, 03:12](1687 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:35, 05:24](1606 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:08, 04:57](1657 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:00, 04:25](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [10:51, 04:21](1615 MB) -PASS -- TEST 'regional_control_intel' [09:06, 05:03](615 MB) -PASS -- TEST 'regional_restart_intel' [06:43, 02:34](788 MB) -PASS -- TEST 'regional_decomp_intel' [09:03, 05:10](615 MB) -PASS -- TEST 'regional_2threads_intel' [07:09, 03:30](759 MB) -PASS -- TEST 'regional_noquilt_intel' [09:52, 04:34](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:01, 04:38](615 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:41, 04:51](615 MB) -PASS -- TEST 'regional_wofs_intel' [10:29, 05:59](1590 MB) - -PASS -- COMPILE 'rrfs_intel' [15:12, 13:29] -PASS -- TEST 'rap_control_intel' [13:45, 06:50](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:20, 04:09](1187 MB) -PASS -- TEST 'rap_decomp_intel' [12:22, 07:06](1008 MB) -PASS -- TEST 'rap_2threads_intel' [12:12, 06:13](1094 MB) -PASS -- TEST 'rap_restart_intel' [08:44, 03:40](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:13, 07:00](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:12, 07:12](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 04:56](879 MB) -PASS -- TEST 'hrrr_control_intel' [10:30, 04:13](1004 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:40, 03:41](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:17, 03:11](1082 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:41, 02:01](837 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:03, 06:44](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:37, 08:07](1967 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:43, 07:47](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [15:12, 13:22] -PASS -- TEST 'control_csawmg_intel' [11:08, 06:14](695 MB) -PASS -- TEST 'control_csawmgt_intel' [11:12, 05:50](693 MB) -PASS -- TEST 'control_ras_intel' [07:58, 03:43](657 MB) - -PASS -- COMPILE 'wam_intel' [14:17, 12:05] -PASS -- TEST 'control_wam_intel' [06:02, 02:07](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [29:25, 27:35] -PASS -- TEST 'control_p8_faster_intel' [09:49, 03:18](1607 MB) -PASS -- TEST 'regional_control_faster_intel' [08:03, 04:51](614 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [31:29, 29:12] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:14, 02:56](778 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 02:49](782 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:34, 03:17](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:14, 03:19](789 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:35, 04:32](825 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:43, 04:52](826 MB) -PASS -- TEST 'control_ras_debug_intel' [06:22, 03:35](795 MB) -PASS -- TEST 'control_diag_debug_intel' [06:41, 03:31](843 MB) -PASS -- TEST 'control_debug_p8_intel' [07:51, 03:17](1619 MB) -PASS -- TEST 'regional_debug_intel' [20:49, 16:46](634 MB) -PASS -- TEST 'rap_control_debug_intel' [09:02, 05:10](1167 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:02](1165 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:34, 05:07](1169 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:25, 05:04](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:35, 05:22](1167 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:00, 05:18](1252 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:37, 05:08](1167 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:49, 05:26](1170 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:37, 05:13](1169 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:35, 05:12](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:06, 05:08](1167 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:35, 05:03](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:18, 08:16](1167 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:24, 05:07](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:36, 05:54](1169 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:24, 05:02](1167 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:28, 08:34](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:12, 08:17] -PASS -- TEST 'control_wam_debug_intel' [07:32, 04:53](393 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:14, 11:52] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:40, 03:48](1049 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:00, 05:54](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:55, 03:25](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:07, 05:25](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:14, 02:55](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:04, 03:26](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:09, 04:11](782 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:47, 01:58](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:20, 15:31] -PASS -- TEST 'conus13km_control_intel' [06:36, 02:12](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:43, 01:09](1075 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:34](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:17, 13:26] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:48, 04:46](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:11, 09:45] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:13, 04:59](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:55](1047 MB) -PASS -- TEST 'conus13km_debug_intel' [18:01, 14:13](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:02, 13:55](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:43, 08:14](1108 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:55, 13:53](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 09:06] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:16, 04:57](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [18:20, 16:44] -PASS -- TEST 'hafs_regional_atm_intel' [09:21, 05:19](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 04:38](1058 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:46, 07:47](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:21, 11:48](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:00, 12:50](797 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:23, 05:21](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:09, 06:55](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:12, 02:56](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:51, 08:08](431 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:12, 03:55](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:25, 03:30](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:04, 04:52](566 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:21, 01:57](401 MB) -PASS -- TEST 'gnv1_nested_intel' [09:55, 04:06](762 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:23, 11:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:55, 12:54](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:24, 18:47] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:19, 07:51](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:19, 07:43](786 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:27, 16:54] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:35, 06:08](784 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:16, 14:26] -PASS -- TEST 'hafs_regional_docn_intel' [09:54, 06:14](749 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:47, 06:22](731 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:13, 20:05](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:12, 11:31] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:33, 02:40](758 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:43, 01:34](747 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:33, 02:29](635 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:42, 02:33](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:34, 02:27](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:00, 02:37](758 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:03, 02:35](756 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:52, 02:25](637 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:20, 06:11](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:20, 06:03](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:34, 02:33](758 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:54, 04:34](2013 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:47, 04:36](2012 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:20, 07:15] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:42, 05:29](739 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:22, 11:42] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:43, 02:33](745 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 03:36] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:23, 01:55](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:03, 01:46](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:18, 01:18](456 MB) - -PASS -- COMPILE 'atml_intel' [17:26, 15:20] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:49, 07:32](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:16, 07:37](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [14:31, 04:19](835 MB) - -PASS -- COMPILE 'atmw_intel' [17:25, 15:16] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:29, 02:22](1649 MB) - -PASS -- COMPILE 'atmwm_intel' [29:17, 27:20] -PASS -- TEST 'control_atmwav_intel' [04:53, 01:57](640 MB) - -PASS -- COMPILE 'atmaero_intel' [15:22, 13:54] -PASS -- TEST 'atmaero_control_p8_intel' [10:23, 06:21](2947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:25, 07:07](3012 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:57, 07:32](3020 MB) - -PASS -- COMPILE 'atmaq_intel' [16:15, 14:28] - -PASS -- COMPILE 'atmaq_debug_intel' [11:17, 09:57] -PASS -- TEST 'regional_atmaq_debug_intel' [25:40, 18:08](4479 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:14, 22:04] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:21, 08:19](3072 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [31:13, 29:20] +PASS -- TEST 'cpld_control_gfsv17_intel' [20:07, 14:39](1698 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 14:54](1814 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:03, 07:34](949 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:47, 15:55](1665 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:13, 16:32] +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:22, 24:28](1697 MB) + +PASS -- COMPILE 's2swa_intel' [25:12, 23:44] +PASS -- TEST 'cpld_control_p8_intel' [12:57, 08:49](3101 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:37, 08:58](3100 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:38, 05:43](3159 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:25, 09:07](3126 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:55, 07:02](3178 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:46, 07:35](3415 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:46, 08:43](3098 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:46, 07:49](3023 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:37, 09:11](3101 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:47, 11:00](3272 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:38, 08:41](3605 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:52, 13:52](4043 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:10, 09:24](4346 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:57, 08:23](3068 MB) + +PASS -- COMPILE 's2sw_intel' [23:14, 22:07] +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:32, 05:45](1684 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:31, 05:55](1731 MB) + +PASS -- COMPILE 's2swa_debug_intel' [21:10, 19:36] +PASS -- TEST 'cpld_debug_p8_intel' [18:26, 10:54](3130 MB) + +PASS -- COMPILE 's2sw_debug_intel' [22:10, 20:45] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:33, 06:29](1696 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [23:14, 21:43] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:32, 06:00](1732 MB) + +PASS -- COMPILE 's2s_intel' [23:14, 21:38] +PASS -- TEST 'cpld_control_c48_intel' [12:03, 07:15](2663 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:13, 25:40] +PASS -- TEST 'cpld_control_p8_faster_intel' [13:37, 08:45](3100 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [27:22, 26:16] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:03, 15:50](1703 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:14, 07:51](1000 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:01, 17:55](1679 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:13, 16:17] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:08, 26:54](1711 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:13, 16:06] +PASS -- TEST 'control_flake_intel' [06:44, 04:05](675 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:51, 02:48](619 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:04](627 MB) +PASS -- TEST 'control_latlon_intel' [04:37, 02:58](623 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:50, 02:49](623 MB) +PASS -- TEST 'control_c48_intel' [08:17, 05:37](721 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:17, 05:41](727 MB) +PASS -- TEST 'control_c192_intel' [12:49, 09:33](738 MB) +PASS -- TEST 'control_c384_intel' [19:13, 16:47](1041 MB) +PASS -- TEST 'control_c384gdas_intel' [19:44, 14:29](1184 MB) +PASS -- TEST 'control_stochy_intel' [03:36, 01:54](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:37, 01:32](429 MB) +PASS -- TEST 'control_lndp_intel' [03:36, 01:58](628 MB) +PASS -- TEST 'control_iovr4_intel' [04:44, 02:51](623 MB) +PASS -- TEST 'control_iovr5_intel' [04:38, 02:50](623 MB) +PASS -- TEST 'control_p8_intel' [07:23, 04:10](1605 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:02, 04:16](1607 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:55, 03:42](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [04:24, 01:51](790 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:38](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:34, 01:48](793 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:44, 03:46](1596 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:33, 03:35](1685 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:40, 05:37](1606 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:07, 04:29](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:08, 03:53](1614 MB) +PASS -- TEST 'merra2_thompson_intel' [07:35, 04:10](1615 MB) +PASS -- TEST 'regional_control_intel' [06:56, 04:59](615 MB) +PASS -- TEST 'regional_restart_intel' [04:38, 02:39](789 MB) +PASS -- TEST 'regional_decomp_intel' [06:53, 04:59](615 MB) +PASS -- TEST 'regional_2threads_intel' [07:08, 04:11](758 MB) +PASS -- TEST 'regional_noquilt_intel' [08:17, 05:11](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:19, 05:21](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:04, 05:10](615 MB) +PASS -- TEST 'regional_wofs_intel' [09:27, 07:01](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [16:09, 14:08] +PASS -- TEST 'rap_control_intel' [11:19, 07:11](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:35, 04:02](1183 MB) +PASS -- TEST 'rap_decomp_intel' [11:19, 07:22](1009 MB) +PASS -- TEST 'rap_2threads_intel' [10:35, 06:13](1093 MB) +PASS -- TEST 'rap_restart_intel' [07:53, 04:32](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:20, 07:46](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:20, 07:48](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:46, 05:33](880 MB) +PASS -- TEST 'hrrr_control_intel' [07:49, 04:22](1004 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:49, 04:28](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 03:29](1082 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:09, 02:28](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:35, 06:50](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:17, 08:26](1968 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:18, 07:59](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [18:09, 16:48] +PASS -- TEST 'control_csawmg_intel' [09:44, 06:58](696 MB) +PASS -- TEST 'control_csawmgt_intel' [09:44, 06:45](691 MB) +PASS -- TEST 'control_ras_intel' [05:50, 03:33](657 MB) + +PASS -- COMPILE 'wam_intel' [16:09, 14:44] +PASS -- TEST 'control_wam_intel' [04:49, 02:08](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:14, 18:11] +PASS -- TEST 'control_p8_faster_intel' [06:42, 03:20](1608 MB) +PASS -- TEST 'regional_control_faster_intel' [07:05, 04:53](614 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:13, 13:36] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 02:51](778 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:38, 03:04](782 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:11, 03:29](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:29, 03:03](790 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:28](825 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:37, 04:19](826 MB) +PASS -- TEST 'control_ras_debug_intel' [05:13, 02:53](796 MB) +PASS -- TEST 'control_diag_debug_intel' [05:13, 02:58](846 MB) +PASS -- TEST 'control_debug_p8_intel' [05:41, 03:31](1621 MB) +PASS -- TEST 'regional_debug_intel' [18:57, 16:30](635 MB) +PASS -- TEST 'rap_control_debug_intel' [07:26, 05:29](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:44, 05:05](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:37, 05:17](1168 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 05:16](1168 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:41, 05:03](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:42, 05:39](1252 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:21](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:51](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:29, 05:41](1169 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 05:25](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:16](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:18](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:56, 08:26](1167 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:44, 05:18](1164 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:05, 06:19](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:45, 05:12](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:45, 08:35](1172 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:10, 10:20] +PASS -- TEST 'control_wam_debug_intel' [07:43, 05:33](397 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:10, 15:08] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:15, 03:50](1048 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:22, 05:54](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:01, 03:43](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 05:21](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:04, 02:48](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 03:28](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:52, 04:11](783 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:32, 02:07](765 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:09, 17:54] +PASS -- TEST 'conus13km_control_intel' [05:07, 02:36](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:17, 01:18](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:13, 01:24](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:09, 15:25] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:15, 04:33](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:50] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:39, 05:09](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:48, 04:56](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [16:52, 13:56](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:55, 14:12](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:46, 08:12](1109 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:57](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:12, 11:23] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 04:57](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [25:15, 23:19] +PASS -- TEST 'hafs_regional_atm_intel' [08:27, 05:46](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:44, 05:02](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:43, 07:40](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:45, 11:41](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:41, 12:44](799 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:16, 05:41](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:40, 06:51](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:35, 03:20](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:14, 08:25](444 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:06, 04:13](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:12, 04:30](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:24, 04:53](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:08, 02:00](401 MB) +PASS -- TEST 'gnv1_nested_intel' [08:32, 04:35](769 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:09, 14:46] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:31, 13:13](586 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:22, 22:13] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:40, 07:52](618 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:48, 07:54](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:17, 20:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:02, 06:15](786 MB) + +PASS -- COMPILE 'hafs_all_intel' [22:16, 20:35] +PASS -- TEST 'hafs_regional_docn_intel' [09:45, 06:15](749 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:41, 06:15](732 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:32, 20:06](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:45] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:33, 02:35](758 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:01, 01:37](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:30, 02:39](635 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:32, 02:31](635 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:32, 02:32](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:37](758 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:31, 02:34](758 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:02, 02:28](635 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:02, 06:05](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:59, 06:12](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:45, 02:42](759 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:30, 04:46](2015 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 04:39](2013 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:13, 08:21] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:28](740 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 13:01] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:35](758 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:08, 03:46] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:05, 03:51](319 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:53, 02:13](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:53, 01:07](456 MB) + +PASS -- COMPILE 'atml_intel' [19:10, 17:29] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:51, 08:22](1641 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:51, 08:33](1641 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 04:12](837 MB) + +PASS -- COMPILE 'atmw_intel' [18:14, 16:43] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:19, 02:29](1648 MB) + +PASS -- COMPILE 'atmwm_intel' [17:13, 15:39] +PASS -- TEST 'control_atmwav_intel' [06:03, 02:49](640 MB) + +PASS -- COMPILE 'atmaero_intel' [16:17, 14:25] +PASS -- TEST 'atmaero_control_p8_intel' [12:24, 06:41](2941 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:10, 06:56](3011 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:16, 07:32](3017 MB) + +PASS -- COMPILE 'atmaq_intel' [15:10, 13:50] + +PASS -- COMPILE 'atmaq_debug_intel' [12:12, 10:51] +PASS -- TEST 'regional_atmaq_debug_intel' [22:43, 18:32](4482 MB) SYNOPSIS: -Starting Date/Time: 20240308 07:21:09 -Ending Date/Time: 20240308 09:13:54 -Total Time: 01h:54m:16s +Starting Date/Time: 20240404 09:47:15 +Ending Date/Time: 20240404 11:36:12 +Total Time: 01h:49m:47s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 96bdf4f51e..e10204126e 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,21 +1,21 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -8ec162797729fa6ae3c67f4b02f4a92719b2816a +7cc39e3287638afc5817eeb7c57e1279250a7dcc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -24,369 +24,374 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_79929 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_2065634 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems +* (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [11:47, 11:47] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:01, 05:12](3170 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:30, 15:30] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:48, 16:06](1679 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:48, 16:46](2000 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:29, 07:36](1091 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:50, 18:09](1591 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:02, 04:01] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:04, 22:18](1608 MB) - -PASS -- COMPILE 's2swa_intel' [11:52, 11:52] -PASS -- TEST 'cpld_control_p8_intel' [06:30, 05:43](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:39, 05:48](3132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:19, 03:20](3181 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:29, 05:43](3176 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:22, 03:19](3274 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:07, 05:23](3536 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:20, 05:38](3186 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 04:46](2988 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:28, 05:38](3168 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:06, 09:37](3275 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:05, 05:57](3586 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:37, 09:45](4051 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:59, 06:24](4301 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:07, 05:21](3101 MB) - -PASS -- COMPILE 's2sw_intel' [11:20, 11:20] -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:14, 04:32](1708 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:15, 04:26](1750 MB) - -PASS -- COMPILE 's2swa_debug_intel' [04:02, 04:00] -PASS -- TEST 'cpld_debug_p8_intel' [08:56, 08:07](3165 MB) - -PASS -- COMPILE 's2sw_debug_intel' [03:43, 03:42] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:24, 05:40](1700 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:12, 10:12] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:12, 04:23](1751 MB) - -PASS -- COMPILE 's2s_intel' [10:20, 10:20] -PASS -- TEST 'cpld_control_c48_intel' [09:50, 09:20](2810 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:49, 15:49] -PASS -- TEST 'cpld_control_p8_faster_intel' [06:15, 05:25](3181 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:50, 14:50] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:05, 16:21](1711 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:34, 07:39](1173 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:22, 18:38](1654 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [03:43, 03:42] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:56, 24:14](1694 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:41, 10:41] -PASS -- TEST 'control_flake_intel' [03:27, 03:15](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [02:37, 02:25](646 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 02:30](653 MB) -PASS -- TEST 'control_latlon_intel' [02:35, 02:24](650 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:41, 02:25](640 MB) -PASS -- TEST 'control_c48_intel' [06:32, 06:20](870 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 06:16](870 MB) -PASS -- TEST 'control_c192_intel' [09:20, 08:59](845 MB) -PASS -- TEST 'control_c384_intel' [09:56, 09:01](1262 MB) -PASS -- TEST 'control_c384gdas_intel' [09:46, 07:48](1390 MB) -PASS -- TEST 'control_stochy_intel' [01:48, 01:38](650 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:12, 00:57](472 MB) -PASS -- TEST 'control_lndp_intel' [01:43, 01:32](650 MB) -PASS -- TEST 'control_iovr4_intel' [02:37, 02:26](649 MB) -PASS -- TEST 'control_iovr5_intel' [02:39, 02:27](617 MB) -PASS -- TEST 'control_p8_intel' [03:36, 02:59](1578 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:35, 02:54](1630 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:32, 02:54](1602 MB) -PASS -- TEST 'control_restart_p8_intel' [02:10, 01:38](882 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:32, 02:55](1598 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:12, 01:38](921 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:36, 03:03](1558 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:19, 02:45](1679 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:43, 05:12](1577 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:29, 03:49](1644 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:40, 03:01](1573 MB) -PASS -- TEST 'merra2_thompson_intel' [04:01, 03:23](1640 MB) -PASS -- TEST 'regional_control_intel' [05:35, 05:08](818 MB) -PASS -- TEST 'regional_restart_intel' [03:07, 02:44](986 MB) -PASS -- TEST 'regional_decomp_intel' [05:48, 05:21](844 MB) -PASS -- TEST 'regional_2threads_intel' [03:40, 03:15](809 MB) -PASS -- TEST 'regional_noquilt_intel' [05:32, 05:08](1351 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:37, 05:07](817 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 05:08](854 MB) -PASS -- TEST 'regional_wofs_intel' [07:04, 06:36](1887 MB) - -PASS -- COMPILE 'rrfs_intel' [09:38, 09:38] -PASS -- TEST 'rap_control_intel' [08:05, 07:39](1111 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 04:03](1282 MB) -PASS -- TEST 'rap_decomp_intel' [08:26, 08:02](1033 MB) -PASS -- TEST 'rap_2threads_intel' [07:36, 07:12](1172 MB) -PASS -- TEST 'rap_restart_intel' [04:32, 03:59](1091 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:03, 07:37](1076 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:23, 08:02](996 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 05:45](1103 MB) -PASS -- TEST 'hrrr_control_intel' [04:18, 03:56](1027 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:23, 04:03](992 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:57, 03:37](1100 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:25, 02:10](1003 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:00, 07:32](1057 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 09:11](1951 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:03, 08:48](2072 MB) - -PASS -- COMPILE 'csawmg_intel' [09:21, 09:21] -PASS -- TEST 'control_csawmg_intel' [06:19, 05:53](746 MB) -PASS -- TEST 'control_csawmgt_intel' [06:08, 05:42](707 MB) -PASS -- TEST 'control_ras_intel' [03:25, 03:15](736 MB) - -PASS -- COMPILE 'wam_intel' [08:58, 08:57] -PASS -- TEST 'control_wam_intel' [02:14, 02:03](624 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:46, 09:46] -PASS -- TEST 'control_p8_faster_intel' [03:16, 02:38](1603 MB) -PASS -- TEST 'regional_control_faster_intel' [05:04, 04:37](847 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [04:09, 04:09] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:51, 02:37](809 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:54, 02:37](811 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:08, 02:55](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:54, 02:40](810 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:29, 04:04](828 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [04:20, 03:56](859 MB) -PASS -- TEST 'control_ras_debug_intel' [02:55, 02:43](819 MB) -PASS -- TEST 'control_diag_debug_intel' [03:04, 02:43](870 MB) -PASS -- TEST 'control_debug_p8_intel' [03:20, 02:50](1599 MB) -PASS -- TEST 'regional_debug_intel' [16:53, 16:26](834 MB) -PASS -- TEST 'rap_control_debug_intel' [05:01, 04:50](1160 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:46, 04:34](1195 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:56, 04:41](1196 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:50, 04:38](1197 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:58, 04:42](1198 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:26, 05:04](1277 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:06, 04:48](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:03, 04:52](1196 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:02, 04:46](1199 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:01, 04:44](1197 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:58, 04:42](1195 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:03, 04:47](1196 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:50, 07:33](1195 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:57, 04:40](1174 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:58, 05:43](1192 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:01, 04:45](1209 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:32, 08:03](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:06, 03:05] -PASS -- TEST 'control_wam_debug_intel' [04:53, 04:42](483 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:15, 09:14] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:38, 03:49](1147 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:40, 06:19](1029 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:45, 03:23](990 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:34, 06:06](1078 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 03:06](960 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:49, 03:31](913 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:12, 04:47](1037 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:06, 01:49](921 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:20, 11:20] -PASS -- TEST 'conus13km_control_intel' [02:40, 02:03](1199 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:19, 00:51](1115 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:43, 01:12](1070 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:14, 09:14] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:39, 04:11](984 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:14, 03:13] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:56, 04:42](1081 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:47, 04:35](1050 MB) -PASS -- TEST 'conus13km_debug_intel' [14:20, 13:43](1192 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:21, 13:49](920 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 07:58](1119 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:55, 13:24](1290 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:09] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:57, 04:42](1119 MB) - -PASS -- COMPILE 'hafsw_intel' [10:38, 10:38] -PASS -- TEST 'hafs_regional_atm_intel' [05:35, 04:43](739 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:53, 05:36](1077 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:48, 06:44](825 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:40, 12:46](854 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:45, 14:38](881 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:54, 05:14](488 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:25, 06:22](517 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:05, 02:33](361 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:31, 06:57](464 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:56, 03:27](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:54, 03:17](535 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:36, 03:57](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:27, 01:08](395 MB) -PASS -- TEST 'gnv1_nested_intel' [04:24, 03:53](803 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [03:45, 03:44] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:55, 12:16](567 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:56, 10:56] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:05, 08:24](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:09, 08:23](745 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:43, 10:43] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:03, 06:16](703 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:15, 10:14] -PASS -- TEST 'hafs_regional_docn_intel' [07:01, 06:06](825 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:06, 06:10](814 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:27, 15:49](1205 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:18, 06:18] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:57, 02:50](1105 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:40](1067 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:43, 02:37](989 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:44, 02:35](1006 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:44, 02:37](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:50, 02:42](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:46, 02:39](1134 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:37, 02:29](1004 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:17, 06:22](1048 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:20](1030 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:40, 02:34](1125 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:50, 03:42](2429 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:54, 03:45](2481 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [02:58, 02:57] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:10, 06:01](1049 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:03, 06:03] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:51, 02:44](1113 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:08, 01:07] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:00, 00:42](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:56, 00:44](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:40, 00:26](319 MB) - -PASS -- COMPILE 'atml_intel' [10:31, 10:31] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:02, 04:15](1569 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 04:14](1571 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:43, 02:12](882 MB) - -PASS -- COMPILE 'atmw_intel' [09:55, 09:54] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:18, 01:44](1623 MB) - -PASS -- COMPILE 'atmwm_intel' [09:51, 09:51] -PASS -- TEST 'control_atmwav_intel' [01:59, 01:39](660 MB) - -PASS -- COMPILE 'atmaero_intel' [09:39, 09:38] -PASS -- TEST 'atmaero_control_p8_intel' [04:38, 03:54](3013 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:30, 04:46](3028 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:27, 04:58](3108 MB) - -PASS -- COMPILE 'atmaq_intel' [09:19, 09:19] - -PASS -- COMPILE 'atmaq_debug_intel' [03:14, 03:13] -PASS -- TEST 'regional_atmaq_debug_intel' [21:18, 19:48](4486 MB) - -PASS -- COMPILE 'atm_gnu' [03:26, 03:25] -PASS -- TEST 'control_c48_gnu' [11:47, 11:34](793 MB) -PASS -- TEST 'control_stochy_gnu' [04:09, 03:57](549 MB) -PASS -- TEST 'control_ras_gnu' [05:03, 04:51](560 MB) -PASS -- TEST 'control_p8_gnu' [05:34, 04:49](1308 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:19, 04:36](1315 MB) -PASS -- TEST 'control_flake_gnu' [06:04, 05:53](599 MB) - -PASS -- COMPILE 'rrfs_gnu' [03:30, 03:29] -PASS -- TEST 'rap_control_gnu' [11:50, 11:28](902 MB) -PASS -- TEST 'rap_decomp_gnu' [12:07, 11:46](899 MB) -PASS -- TEST 'rap_2threads_gnu' [10:53, 10:27](976 MB) -PASS -- TEST 'rap_restart_gnu' [06:28, 05:56](626 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:58, 11:33](894 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:09, 11:48](863 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:12, 08:43](630 MB) -PASS -- TEST 'hrrr_control_gnu' [06:17, 05:53](892 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:18, 05:58](879 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 05:08](970 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:13, 05:50](896 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 03:14](611 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:24, 03:08](705 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:47, 11:20](893 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:14, 03:14] -PASS -- TEST 'control_diag_debug_gnu' [01:52, 01:34](589 MB) -PASS -- TEST 'regional_debug_gnu' [08:03, 07:31](595 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:42, 02:28](906 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:37, 02:26](902 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:45, 02:34](904 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:43, 02:32](909 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:09, 02:42](992 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:02, 03:50](905 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:44, 02:30](906 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:42, 02:28](899 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:40, 01:30](540 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:14, 02:03](537 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:07, 01:39](1287 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:50, 02:37](906 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:02, 02:50](910 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:30, 04:06](923 MB) - -PASS -- COMPILE 'wam_debug_gnu' [01:37, 01:36] -PASS -- TEST 'control_wam_debug_gnu' [02:37, 02:26](245 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:29, 03:29] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:11, 11:50](749 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:21, 06:02](747 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:01, 10:34](807 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:36, 05:14](798 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:16, 05:58](746 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:21, 08:56](597 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 03:15](582 MB) -PASS -- TEST 'conus13km_control_gnu' [04:53, 04:12](897 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:16, 01:50](931 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:44, 02:14](597 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:01, 05:00] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:25, 06:58](784 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:15, 03:15] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:41, 02:28](759 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:42, 02:30](757 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:40, 07:11](918 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:31, 07:00](632 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:50, 04:22](951 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:36, 07:08](985 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:20, 03:19] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:49, 02:36](789 MB) - -PASS -- COMPILE 's2swa_gnu' [13:45, 13:44] -PASS -- TEST 'cpld_control_p8_gnu' [11:23, 10:34](1514 MB) - -PASS -- COMPILE 's2s_gnu' [13:38, 13:38] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:16, 06:27](1401 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [02:18, 02:17] -PASS -- TEST 'cpld_debug_p8_gnu' [06:54, 06:06](1508 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [13:43, 13:42] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:45, 22:01](1360 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:03, 02:03] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:41, 12:59](1366 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [13:20, 13:19] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:06, 02:59](697 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:06, 13:06] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:28, 05:37](3146 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:57, 15:57] +PASS -- TEST 'cpld_control_gfsv17_intel' [17:49, 17:05](1730 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:50, 17:51](1996 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:58, 08:05](1092 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 19:12](1618 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:55, 04:55] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:30, 22:47](1642 MB) + +PASS -- COMPILE 's2swa_intel' [13:14, 13:14] +PASS -- TEST 'cpld_control_p8_intel' [06:46, 05:54](3192 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:44, 05:49](3199 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:42, 03:26](3244 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [06:46, 05:54](3207 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:43, 03:25](3263 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:16, 05:31](3527 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:40, 05:54](3191 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:31, 04:47](3054 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:41, 05:49](3191 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [11:48, 10:11](3326 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:25, 06:10](3594 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:36, 09:43](4102 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:31, 06:11](4345 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:12, 05:24](3167 MB) + +PASS -- COMPILE 's2sw_intel' [12:42, 12:42] +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:40, 04:48](1716 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:41, 04:49](1709 MB) + +PASS -- COMPILE 's2swa_debug_intel' [04:42, 04:42] +PASS -- TEST 'cpld_debug_p8_intel' [09:34, 08:42](3181 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:20, 04:20] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:49, 05:53](1716 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:43, 11:43] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:30, 04:31](1763 MB) + +PASS -- COMPILE 's2s_intel' [11:41, 11:41] +PASS -- TEST 'cpld_control_c48_intel' [10:19, 09:37](2805 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 16:30] +PASS -- TEST 'cpld_control_p8_faster_intel' [06:25, 05:32](3197 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:31, 15:31] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:55, 17:10](1767 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:11, 08:12](1144 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:33, 19:48](1664 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:44, 04:43] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:59, 25:16](1670 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:53, 11:53] +PASS -- TEST 'control_flake_intel' [03:34, 03:23](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:26](636 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 02:30](636 MB) +PASS -- TEST 'control_latlon_intel' [02:36, 02:27](638 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:58, 02:31](632 MB) +PASS -- TEST 'control_c48_intel' [06:46, 06:23](854 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:46, 06:24](859 MB) +PASS -- TEST 'control_c192_intel' [09:38, 09:13](835 MB) +PASS -- TEST 'control_c384_intel' [10:24, 09:15](1274 MB) +PASS -- TEST 'control_c384gdas_intel' [10:21, 08:03](1373 MB) +PASS -- TEST 'control_stochy_intel' [01:53, 01:39](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:18, 01:00](478 MB) +PASS -- TEST 'control_lndp_intel' [01:46, 01:33](643 MB) +PASS -- TEST 'control_iovr4_intel' [02:38, 02:27](638 MB) +PASS -- TEST 'control_iovr5_intel' [02:42, 02:27](636 MB) +PASS -- TEST 'control_p8_intel' [03:45, 03:02](1606 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:44, 02:59](1605 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:35, 02:56](1600 MB) +PASS -- TEST 'control_restart_p8_intel' [02:13, 01:37](877 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:29, 02:52](1606 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:14, 01:38](919 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:37, 03:02](1586 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:21, 02:46](1701 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:51, 05:19](1594 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:44, 04:01](1670 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:42, 03:00](1623 MB) +PASS -- TEST 'merra2_thompson_intel' [04:08, 03:28](1617 MB) +PASS -- TEST 'regional_control_intel' [05:42, 05:14](826 MB) +PASS -- TEST 'regional_restart_intel' [03:18, 02:50](1005 MB) +PASS -- TEST 'regional_decomp_intel' [06:01, 05:35](826 MB) +PASS -- TEST 'regional_2threads_intel' [03:44, 03:20](827 MB) +PASS -- TEST 'regional_noquilt_intel' [05:37, 05:12](1343 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:47, 05:17](829 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:43, 05:18](830 MB) +PASS -- TEST 'regional_wofs_intel' [07:13, 06:46](1894 MB) + +PASS -- COMPILE 'rrfs_intel' [10:38, 10:37] +PASS -- TEST 'rap_control_intel' [08:23, 07:55](1092 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:08, 04:20](1273 MB) +PASS -- TEST 'rap_decomp_intel' [08:40, 08:17](1015 MB) +PASS -- TEST 'rap_2threads_intel' [08:12, 07:41](1160 MB) +PASS -- TEST 'rap_restart_intel' [04:33, 04:03](1078 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:19, 07:46](1091 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:11](1021 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 05:52](1122 MB) +PASS -- TEST 'hrrr_control_intel' [04:26, 04:01](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:30, 04:07](1017 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 03:41](1094 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:49, 02:30](944 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:09, 07:37](1082 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 09:11](1978 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 09:01](2054 MB) + +PASS -- COMPILE 'csawmg_intel' [10:20, 10:19] +PASS -- TEST 'control_csawmg_intel' [06:32, 06:04](736 MB) +PASS -- TEST 'control_csawmgt_intel' [06:27, 05:59](736 MB) +PASS -- TEST 'control_ras_intel' [03:33, 03:21](725 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:34, 03:34] +PASS -- TEST 'control_csawmg_gnu' [08:48, 08:22](534 MB) +PASS -- TEST 'control_csawmgt_gnu' [08:36, 08:11](533 MB) + +PASS -- COMPILE 'wam_intel' [09:57, 09:56] +PASS -- TEST 'control_wam_intel' [02:16, 02:04](640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:54, 10:54] +PASS -- TEST 'control_p8_faster_intel' [03:21, 02:39](1613 MB) +PASS -- TEST 'regional_control_faster_intel' [05:13, 04:45](837 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [04:55, 04:55] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:58, 02:43](777 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:04, 02:46](777 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:13, 03:01](779 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:56, 02:44](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:38, 04:11](833 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [04:38, 04:09](832 MB) +PASS -- TEST 'control_ras_debug_intel' [02:59, 02:47](791 MB) +PASS -- TEST 'control_diag_debug_intel' [03:09, 02:48](837 MB) +PASS -- TEST 'control_debug_p8_intel' [03:28, 02:58](1596 MB) +PASS -- TEST 'regional_debug_intel' [17:37, 17:08](806 MB) +PASS -- TEST 'rap_control_debug_intel' [05:33, 05:18](1136 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:00, 04:48](1162 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:08, 04:57](1170 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:09, 04:57](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:08, 04:57](1165 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:40, 05:17](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 05:06](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:12, 05:00](1174 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:11, 04:57](1172 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:09, 04:56](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:04, 04:49](1174 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 04:58](1167 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:10, 07:55](1167 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:12, 04:59](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:57, 05:45](1173 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:09, 04:56](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 08:22](1175 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:38, 02:38] +PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 02:09](508 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [02:37, 02:11](504 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:37, 03:36] +PASS -- TEST 'control_wam_debug_intel' [05:02, 04:52](469 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:05, 10:05] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:36, 03:50](1145 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:46, 06:23](1034 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:48, 03:24](971 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:31, 06:06](1077 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 03:08](945 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:55, 03:34](918 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:16, 04:50](1023 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:50](918 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:28, 12:27] +PASS -- TEST 'conus13km_control_intel' [02:45, 02:06](1182 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:21, 00:54](1101 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 01:16](1073 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:16, 10:16] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:41, 04:12](976 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:28, 03:28] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:55, 04:43](1042 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:52, 04:35](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [15:05, 14:27](1172 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:57, 14:16](879 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:30, 08:02](1107 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:09, 14:40](1253 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:28, 03:28] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:06, 04:52](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [11:56, 11:55] +PASS -- TEST 'hafs_regional_atm_intel' [05:53, 04:57](724 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:18, 06:00](1098 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:49, 06:47](803 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:20, 13:27](850 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:09, 15:04](1017 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 05:28](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:46, 06:41](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:12, 02:42](362 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:50, 07:12](466 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:14, 03:44](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:09, 03:30](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:40, 04:01](565 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:33, 01:16](387 MB) +PASS -- TEST 'gnv1_nested_intel' [04:35, 04:04](780 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:05, 04:05] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:25, 12:46](534 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:10, 12:10] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 08:53](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:32, 08:45](687 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:59, 11:58] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:19, 06:29](675 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:25, 11:24] +PASS -- TEST 'hafs_regional_docn_intel' [07:15, 06:21](813 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:17, 06:21](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:38, 16:02](1203 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:02, 06:02] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:49, 02:41](1141 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:43, 01:36](1078 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:40, 02:32](1000 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:41, 02:33](1014 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:45, 02:39](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:43, 02:37](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:46, 02:41](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:42, 02:36](1002 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:19, 06:18](1050 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:19](1038 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:43, 02:38](1143 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:53, 03:46](2482 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:59, 03:51](2484 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:07, 03:07] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:16, 06:10](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 06:12] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:48, 02:41](1142 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:10] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:03, 00:48](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:45](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](316 MB) + +PASS -- COMPILE 'atml_intel' [11:38, 11:38] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:00, 04:17](1584 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:00, 04:15](1592 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:54, 02:21](880 MB) + +PASS -- COMPILE 'atmw_intel' [10:54, 10:54] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:23, 01:46](1659 MB) + +PASS -- COMPILE 'atmwm_intel' [11:00, 11:00] +PASS -- TEST 'control_atmwav_intel' [02:00, 01:40](653 MB) + +PASS -- COMPILE 'atmaero_intel' [10:46, 10:46] +PASS -- TEST 'atmaero_control_p8_intel' [04:45, 04:00](2995 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:36, 04:53](3075 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:36, 05:06](3085 MB) + +PASS -- COMPILE 'atmaq_intel' [10:33, 10:33] + +PASS -- COMPILE 'atmaq_debug_intel' [03:48, 03:48] +PASS -- TEST 'regional_atmaq_debug_intel' [24:29, 22:57](4291 MB) + +PASS -- COMPILE 'atm_gnu' [03:44, 03:44] +PASS -- TEST 'control_c48_gnu' [10:59, 10:48](751 MB) +PASS -- TEST 'control_stochy_gnu' [03:38, 03:26](494 MB) +PASS -- TEST 'control_ras_gnu' [04:58, 04:48](502 MB) +PASS -- TEST 'control_p8_gnu' [05:25, 04:39](1255 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:10, 04:28](1256 MB) +PASS -- TEST 'control_flake_gnu' [11:32, 11:21](536 MB) + +PASS -- COMPILE 'rrfs_gnu' [03:48, 03:48] +PASS -- TEST 'rap_control_gnu' [11:01, 10:41](842 MB) +PASS -- TEST 'rap_decomp_gnu' [11:22, 10:59](852 MB) +PASS -- TEST 'rap_2threads_gnu' [10:19, 09:53](931 MB) +PASS -- TEST 'rap_restart_gnu' [06:01, 05:32](567 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:04, 10:39](842 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:30, 11:05](842 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:39, 08:12](585 MB) +PASS -- TEST 'hrrr_control_gnu' [05:56, 05:33](841 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:03, 05:36](824 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:29, 05:01](924 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:52, 05:33](841 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:09, 02:54](554 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:12, 02:52](652 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:00, 10:30](838 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:37, 03:37] +PASS -- TEST 'control_diag_debug_gnu' [01:55, 01:37](530 MB) +PASS -- TEST 'regional_debug_gnu' [11:54, 11:26](547 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:50, 02:37](849 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:45, 02:34](846 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:47, 02:37](855 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:48, 02:37](850 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:11, 02:48](936 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 04:09](850 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:54, 02:39](851 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:51, 02:39](845 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:33](483 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:58, 01:47](476 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:07, 01:38](1241 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:45, 02:33](847 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:05, 02:52](852 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:44, 04:19](855 MB) + +PASS -- COMPILE 'wam_debug_gnu' [01:54, 01:54] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:44, 03:44] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:35, 09:13](696 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:17, 04:58](697 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:00, 08:37](750 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:52, 04:31](740 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:13](698 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:15, 06:53](545 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:50, 02:35](532 MB) +PASS -- TEST 'conus13km_control_gnu' [03:52, 03:13](870 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:14, 05:45](869 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:18, 01:48](543 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:28, 05:28] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:11, 05:44](725 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:35, 03:35] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:44, 02:32](702 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:44, 02:33](700 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:31, 06:59](871 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:41, 07:12](562 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:55, 07:29](874 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:18, 06:50](937 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:35, 03:35] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:45, 02:33](722 MB) + +PASS -- COMPILE 's2swa_gnu' [14:36, 14:36] + +PASS -- COMPILE 's2s_gnu' [14:25, 14:24] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:20, 11:30](1341 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [02:31, 02:30] + +PASS -- COMPILE 's2sw_pdlib_gnu' [14:30, 14:30] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:37, 21:47](1312 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:20, 02:20] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:27, 16:45](1306 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [13:58, 13:58] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:03, 02:58](699 MB) SYNOPSIS: -Starting Date/Time: 20240309 16:43:42 -Ending Date/Time: 20240309 21:25:17 -Total Time: 04h:42m:03s -Compiles Completed: 53/53 -Tests Completed: 243/243 +Starting Date/Time: 20240404 13:42:06 +Ending Date/Time: 20240404 15:52:22 +Total Time: 02h:10m:48s +Compiles Completed: 55/55 +Tests Completed: 244/244 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index effbb3706c..76ec536f18 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,21 +1,44 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -d4bf6f3ada023864cca106d27994f69b90edba87 +2ec8af0cbe7f0ebcfc8c2211b8102911f510940e Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) + 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars) + 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) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars) + 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) + d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars) + 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) + e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -24,360 +47,462 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240301 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_4129469 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1160764 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:05, 10:59] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:55, 07:49](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:06, 15:43] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:19, 13:25](1769 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:30, 14:39](2227 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:25, 07:08](1180 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:57, 15:16](1693 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:05, 04:23] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 20:22](1732 MB) - -PASS -- COMPILE 's2swa_intel' [12:05, 10:29] -PASS -- TEST 'cpld_control_p8_intel' [09:45, 07:28](2073 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:57, 07:36](2090 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:07, 04:24](1979 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:47, 07:32](1983 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:05, 04:23](1741 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:47, 08:54](2503 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:43, 07:40](2055 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:21](1908 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:57, 07:29](2061 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:42, 15:23](2808 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:26, 05:52](2920 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:48, 08:54](3635 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:48, 06:25](3611 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:49, 04:56](2028 MB) - -PASS -- COMPILE 's2sw_intel' [11:05, 09:58] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 07:03](1768 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:49, 04:04](1816 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:05, 04:58] -PASS -- TEST 'cpld_debug_p8_intel' [09:03, 06:51](2058 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:05, 04:40] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:52, 04:47](1797 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:05, 08:40] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:57, 04:00](1822 MB) - -PASS -- COMPILE 's2s_intel' [10:05, 08:28] -PASS -- TEST 'cpld_control_c48_intel' [09:42, 07:17](2831 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:05, 12:16] -PASS -- TEST 'cpld_control_p8_faster_intel' [10:00, 07:19](2064 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:04] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:04, 14:10](1810 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:16, 06:42](1294 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:01, 15:11](1735 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:07] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:52, 21:42](1768 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:44] -PASS -- TEST 'control_flake_intel' [04:17, 02:53](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:18, 02:06](668 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:23, 02:27](666 MB) -PASS -- TEST 'control_latlon_intel' [04:17, 02:08](660 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:10](656 MB) -PASS -- TEST 'control_c48_intel' [07:23, 05:45](861 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:09](857 MB) -PASS -- TEST 'control_c192_intel' [09:38, 07:53](957 MB) -PASS -- TEST 'control_c384_intel' [11:04, 08:21](1442 MB) -PASS -- TEST 'control_c384gdas_intel' [10:46, 07:24](1523 MB) -PASS -- TEST 'control_stochy_intel' [03:16, 01:29](667 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:51](551 MB) -PASS -- TEST 'control_lndp_intel' [03:16, 01:25](672 MB) -PASS -- TEST 'control_iovr4_intel' [04:17, 02:07](659 MB) -PASS -- TEST 'control_iovr5_intel' [04:15, 02:09](661 MB) -PASS -- TEST 'control_p8_intel' [04:47, 02:36](1646 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:03, 02:32](1628 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:59, 02:26](1641 MB) -PASS -- TEST 'control_restart_p8_intel' [04:13, 01:29](913 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:46, 02:27](1632 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:12, 01:27](983 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:47, 02:32](1627 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:59, 02:20](1735 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:37, 04:36](1632 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 03:27](1705 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:37](1659 MB) -PASS -- TEST 'merra2_thompson_intel' [05:59, 03:13](1656 MB) -PASS -- TEST 'regional_control_intel' [06:24, 04:39](955 MB) -PASS -- TEST 'regional_restart_intel' [04:29, 02:35](1106 MB) -PASS -- TEST 'regional_decomp_intel' [06:22, 05:02](946 MB) -PASS -- TEST 'regional_2threads_intel' [05:28, 03:07](923 MB) -PASS -- TEST 'regional_noquilt_intel' [06:27, 04:31](1483 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:53](958 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:21, 04:48](967 MB) -PASS -- TEST 'regional_wofs_intel' [07:28, 05:54](2096 MB) - -PASS -- COMPILE 'rrfs_intel' [09:06, 07:41] -PASS -- TEST 'rap_control_intel' [08:51, 06:50](1193 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:55, 03:47](1442 MB) -PASS -- TEST 'rap_decomp_intel' [08:36, 07:01](1136 MB) -PASS -- TEST 'rap_2threads_intel' [08:39, 06:19](1358 MB) -PASS -- TEST 'rap_restart_intel' [05:43, 03:33](1129 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:45, 06:38](1195 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:44, 06:59](1145 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:54, 05:13](1196 MB) -PASS -- TEST 'hrrr_control_intel' [05:41, 03:30](1072 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:31](1039 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 03:23](1115 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:54](1037 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:36](1215 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:25, 07:57](2020 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:23, 07:41](2177 MB) - -PASS -- COMPILE 'csawmg_intel' [09:06, 07:19] -PASS -- TEST 'control_csawmg_intel' [07:27, 05:13](815 MB) -PASS -- TEST 'control_csawmgt_intel' [07:30, 05:09](839 MB) -PASS -- TEST 'control_ras_intel' [04:14, 02:55](811 MB) - -PASS -- COMPILE 'wam_intel' [08:06, 06:37] -PASS -- TEST 'control_wam_intel' [03:22, 01:49](784 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:25] -PASS -- TEST 'control_p8_faster_intel' [04:55, 02:17](1655 MB) -PASS -- TEST 'regional_control_faster_intel' [06:29, 04:07](960 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:50] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:13](820 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:14](824 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:30](832 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:14, 02:18](831 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:30, 03:31](882 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:22, 03:21](872 MB) -PASS -- TEST 'control_ras_debug_intel' [04:14, 02:17](843 MB) -PASS -- TEST 'control_diag_debug_intel' [04:22, 02:48](888 MB) -PASS -- TEST 'control_debug_p8_intel' [04:29, 02:37](1648 MB) -PASS -- TEST 'regional_debug_intel' [16:29, 14:18](896 MB) -PASS -- TEST 'rap_control_debug_intel' [05:18, 04:02](1220 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:16, 04:04](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:11](1216 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:05](1220 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:07](1222 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 04:27](1293 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:18](1220 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:15, 04:16](1221 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:15](1220 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:08](1219 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:03](1224 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:03](1223 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 06:33](1215 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 04:00](1225 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:54](1222 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:16, 04:03](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:51, 06:47](1220 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:06, 02:42] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:05, 06:30] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:41, 03:34](1274 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:39, 05:31](1133 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:46, 03:00](1009 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:35, 05:22](1284 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:54](1046 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:01](979 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 04:02](1091 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:24, 01:35](952 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:06, 09:12] -PASS -- TEST 'conus13km_control_intel' [03:40, 01:52](1304 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:29, 00:42](1204 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:22, 01:04](1162 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 07:22] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:54](1091 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:39] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 03:57](1092 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:50](1096 MB) -PASS -- TEST 'conus13km_debug_intel' [13:39, 11:33](1345 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:31, 11:52](1000 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:32, 06:36](1230 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:33, 11:37](1390 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:41] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 03:55](1163 MB) - -PASS -- COMPILE 'hafsw_intel' [12:06, 10:17] -PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:34](880 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:17, 05:04](1281 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:12, 06:20](953 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:01, 14:09](975 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:12, 15:48](1007 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:34](608 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:18, 06:59](616 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:40, 02:48](438 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 07:48](540 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:51](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:44, 03:48](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 04:46](669 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:22, 01:28](451 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:36] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:43, 11:23](639 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:06, 11:21] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:50, 16:50](722 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:53, 17:25](815 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:18] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:51, 10:27](798 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:06, 09:30] -PASS -- TEST 'hafs_regional_docn_intel' [08:02, 05:25](958 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:00, 05:23](937 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:27](1342 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:05, 04:50] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:12, 02:08](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:19](1103 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:10, 02:05](1010 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:07](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:07](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:07](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:08](1147 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:10, 02:04](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:49, 04:55](1152 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:49, 04:56](1152 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:09](1139 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 03:02](2380 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 03:02](2380 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 02:55] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:09, 05:02](1083 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:05, 06:26] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:05](1142 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:06] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:56](336 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:51](563 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:32](560 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:05, 11:13] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:12, 07:43](1892 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:06, 15:52] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:12, 13:18](1772 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:28, 13:59](2177 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:25, 06:25](1165 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:57, 14:55](1691 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:05, 05:24] +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:14, 20:07](1736 MB) + +PASS -- COMPILE 's2swa_intel' [13:05, 11:20] +PASS -- TEST 'cpld_control_p8_intel' [10:00, 07:43](2066 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:12, 07:39](2055 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:06, 04:15](1978 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:00, 07:45](1990 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:06, 04:18](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:05, 08:51](2492 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:54, 07:40](2074 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:02, 06:27](1895 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:12, 07:35](2065 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:31, 14:57](2804 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:57, 05:40](2932 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:26, 08:27](3634 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:17, 04:56](3615 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:59, 05:00](2052 MB) + +PASS -- COMPILE 's2sw_intel' [13:05, 11:19] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:58, 07:11](1770 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:08](1822 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:05, 05:22] +PASS -- TEST 'cpld_debug_p8_intel' [09:06, 06:49](2070 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:05, 05:14] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:53, 04:42](1786 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:05] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:53, 03:54](1828 MB) + +PASS -- COMPILE 's2s_intel' [11:05, 09:10] +PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:15](2831 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:06, 12:50] +PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 07:20](2069 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:31, 17:44] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:04, 13:49](1813 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:08, 06:32](1294 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:14](1739 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:37] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:50, 22:03](1776 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:48] +PASS -- TEST 'control_flake_intel' [04:29, 02:49](726 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:03](664 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:34, 02:10](663 MB) +PASS -- TEST 'control_latlon_intel' [04:29, 02:05](668 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:36, 02:07](659 MB) +PASS -- TEST 'control_c48_intel' [07:35, 05:42](856 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:44](858 MB) +PASS -- TEST 'control_c192_intel' [09:37, 07:47](947 MB) +PASS -- TEST 'control_c384_intel' [11:10, 08:07](1450 MB) +PASS -- TEST 'control_c384gdas_intel' [10:44, 07:15](1531 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:26](667 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:52](548 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:22](669 MB) +PASS -- TEST 'control_iovr4_intel' [03:44, 02:04](671 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:05](665 MB) +PASS -- TEST 'control_p8_intel' [04:49, 02:30](1632 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:48, 02:32](1632 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:48, 02:26](1637 MB) +PASS -- TEST 'control_restart_p8_intel' [03:44, 01:23](923 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:39, 02:31](1629 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:24](988 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:34](1622 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:35, 02:23](1725 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:27, 04:26](1647 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:24](1720 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:49, 02:32](1646 MB) +PASS -- TEST 'merra2_thompson_intel' [04:58, 02:57](1646 MB) +PASS -- TEST 'regional_control_intel' [06:25, 04:31](962 MB) +PASS -- TEST 'regional_restart_intel' [04:23, 02:30](1105 MB) +PASS -- TEST 'regional_decomp_intel' [06:27, 04:47](952 MB) +PASS -- TEST 'regional_2threads_intel' [04:23, 02:53](923 MB) +PASS -- TEST 'regional_noquilt_intel' [06:30, 04:23](1487 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 04:25](957 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:30](962 MB) +PASS -- TEST 'regional_wofs_intel' [07:25, 05:35](2101 MB) + +PASS -- COMPILE 'rrfs_intel' [09:31, 07:36] +PASS -- TEST 'rap_control_intel' [08:49, 06:32](1189 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:40, 03:25](1446 MB) +PASS -- TEST 'rap_decomp_intel' [08:37, 06:53](1127 MB) +PASS -- TEST 'rap_2threads_intel' [08:36, 06:12](1376 MB) +PASS -- TEST 'rap_restart_intel' [06:40, 03:25](1162 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:29](1192 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 06:56](1133 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:00, 04:56](1194 MB) +PASS -- TEST 'hrrr_control_intel' [05:46, 03:25](1065 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:28](1054 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:09](1125 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:15, 01:50](1037 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:26](1193 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:14, 07:37](2021 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 07:27](2165 MB) + +PASS -- COMPILE 'csawmg_intel' [09:31, 07:12] +PASS -- TEST 'control_csawmg_intel' [07:24, 05:21](822 MB) +PASS -- TEST 'control_csawmgt_intel' [07:28, 05:16](825 MB) +PASS -- TEST 'control_ras_intel' [04:14, 02:52](828 MB) + +PASS -- COMPILE 'csawmg_gnu' [07:30, 06:06] +PASS -- TEST 'control_csawmg_gnu' [08:26, 06:28](810 MB) +PASS -- TEST 'control_csawmgt_gnu' [08:22, 06:27](812 MB) + +PASS -- COMPILE 'wam_intel' [09:30, 07:58] +PASS -- TEST 'control_wam_intel' [03:17, 01:50](781 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:30, 10:39] +PASS -- TEST 'control_p8_faster_intel' [04:48, 02:14](1641 MB) +PASS -- TEST 'regional_control_faster_intel' [06:24, 04:07](958 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:25, 05:25] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:11](822 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:11](827 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:12, 02:25](836 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:14, 02:10](830 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:26, 03:23](880 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:22, 03:23](867 MB) +PASS -- TEST 'control_ras_debug_intel' [04:12, 02:18](831 MB) +PASS -- TEST 'control_diag_debug_intel' [04:19, 02:21](882 MB) +PASS -- TEST 'control_debug_p8_intel' [04:30, 02:20](1657 MB) +PASS -- TEST 'regional_debug_intel' [15:41, 14:15](890 MB) +PASS -- TEST 'rap_control_debug_intel' [05:50, 03:53](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:39, 03:52](1215 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:20, 03:58](1215 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 03:59](1214 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:57](1222 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:58, 04:08](1295 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:45, 04:05](1224 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 04:04](1225 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:35, 04:02](1225 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:30, 04:00](1222 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:56](1210 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:57](1220 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:13, 06:23](1222 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:44, 03:53](1221 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:40, 04:46](1214 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:20, 03:58](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:58, 06:50](1225 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:31, 05:28] +PASS -- TEST 'control_csawmg_debug_gnu' [03:47, 01:42](791 MB) +PASS -- TEST 'control_csawmgt_debug_gnu' [03:46, 01:39](790 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:25, 04:09] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:31, 08:25] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:54, 03:23](1275 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:22](1140 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:59, 02:52](1023 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:46, 05:07](1287 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:39](1039 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 03:02](984 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:51, 04:03](1135 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:36, 01:36](950 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:06, 09:55] +PASS -- TEST 'conus13km_control_intel' [03:36, 01:45](1281 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:28, 00:42](1200 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:26, 01:01](1153 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 06:54] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 03:48](1079 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:55] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:14, 03:55](1093 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:53](1090 MB) +PASS -- TEST 'conus13km_debug_intel' [13:33, 11:34](1345 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:32, 11:49](987 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:26, 06:37](1240 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:29, 11:32](1401 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:50] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 03:58](1153 MB) + +PASS -- COMPILE 'hafsw_intel' [11:06, 09:25] +PASS -- TEST 'hafs_regional_atm_intel' [08:00, 05:21](875 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:00](1282 MB) +FAIL TO COMPARE -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:08, 14:36](995 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:10, 15:21](998 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:47, 05:39](602 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:11, 06:57](617 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:43](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:58, 07:46](541 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:51](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:38, 03:42](623 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:52](679 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 01:24](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:06, 03:01] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:47, 11:17](638 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:12] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:48, 16:26](730 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:49, 16:18](817 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:07, 10:13] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:51, 09:59](796 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:06, 10:27] +FAIL TO COMPARE -- TEST 'hafs_regional_docn_intel' [, ]( MB) +FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:36](1338 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:41] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:08](1141 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:14](1075 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:03](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:05](1009 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:09, 01:56](1016 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:08](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:11, 02:08](1146 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:12, 02:04](1009 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 04:57](1162 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:39, 04:55](1157 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1153 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 03:00](2389 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:04](2431 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:56] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:10](1069 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:45] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:10, 02:06](1150 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:48] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:59](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 00:52](562 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:34](560 MB) PASS -- COMPILE 'atml_intel' [10:06, 08:23] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 06:23](1637 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:03, 06:15](1634 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:37, 03:12](961 MB) - -PASS -- COMPILE 'atmw_intel' [10:05, 08:48] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:30](1706 MB) - -PASS -- COMPILE 'atmwm_intel' [10:05, 09:04] -PASS -- TEST 'control_atmwav_intel' [03:37, 01:30](707 MB) - -PASS -- COMPILE 'atmaero_intel' [09:06, 07:24] -PASS -- TEST 'atmaero_control_p8_intel' [05:49, 03:29](1785 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:14](1799 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:47, 04:26](1826 MB) - -PASS -- COMPILE 'atmaq_intel' [08:06, 06:54] - -PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:56] -PASS -- TEST 'regional_atmaq_debug_intel' [19:24, 16:09](4588 MB) - -PASS -- COMPILE 'atm_gnu' [06:05, 04:34] -PASS -- TEST 'control_c48_gnu' [11:24, 09:51](882 MB) -PASS -- TEST 'control_stochy_gnu' [04:16, 02:16](729 MB) -PASS -- TEST 'control_ras_gnu' [05:13, 03:44](732 MB) -PASS -- TEST 'control_p8_gnu' [05:49, 03:33](1515 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:44, 03:27](1514 MB) -PASS -- TEST 'control_flake_gnu' [06:13, 04:23](811 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:06, 04:41] -PASS -- TEST 'rap_control_gnu' [09:42, 07:43](1086 MB) -PASS -- TEST 'rap_decomp_gnu' [09:33, 07:54](1083 MB) -PASS -- TEST 'rap_2threads_gnu' [09:31, 07:11](1123 MB) -PASS -- TEST 'rap_restart_gnu' [05:51, 04:02](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:34, 08:04](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:47, 07:53](1084 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:54, 05:56](885 MB) -PASS -- TEST 'hrrr_control_gnu' [05:38, 03:58](1070 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:32, 04:04](1137 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:30, 03:39](1026 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:34, 04:08](1070 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:16, 02:04](884 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:02](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:49, 07:43](1090 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:06, 08:06] -PASS -- TEST 'control_diag_debug_gnu' [03:23, 01:11](775 MB) -PASS -- TEST 'regional_debug_gnu' [08:27, 06:25](925 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:56](1101 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:17, 02:05](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:15, 02:05](1093 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 02:03](1096 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:08](1270 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:11](1097 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:10](1096 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:17, 02:07](1093 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:12, 01:21](729 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:22](727 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:19](1503 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:02](1096 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:09](1101 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:14](1100 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:05, 03:20] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:10, 06:49] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:26](967 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:50, 03:55](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:46, 06:51](969 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:38, 03:27](894 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:36, 03:50](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:58, 05:39](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:16, 02:03](856 MB) -PASS -- TEST 'conus13km_control_gnu' [04:41, 02:35](1266 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:31, 01:05](1175 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:27](946 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:06, 13:45] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:28](995 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:06, 13:42] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 01:55](978 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:58](973 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:33, 05:24](1279 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:39](950 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:26, 03:14](1189 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:22](1349 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:10, 13:49] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:15, 01:59](1005 MB) - -PASS -- COMPILE 's2swa_gnu' [18:10, 16:14] - -PASS -- COMPILE 's2s_gnu' [18:06, 16:05] - -PASS -- COMPILE 's2swa_debug_gnu' [15:10, 13:43] - -PASS -- COMPILE 's2sw_pdlib_gnu' [19:06, 17:23] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:09, 12:48] - -PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 16:06] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:58, 05:33](1631 MB) +FAIL TO COMPARE -- TEST 'control_p8_atmlnd_intel' [, ]( MB) +MISSING -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB) + +PASS -- COMPILE 'atmw_intel' [10:05, 08:45] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:28](1710 MB) + +PASS -- COMPILE 'atmwm_intel' [11:05, 09:19] +PASS -- TEST 'control_atmwav_intel' [03:37, 01:30](704 MB) + +PASS -- COMPILE 'atmaero_intel' [08:05, 07:03] +PASS -- TEST 'atmaero_control_p8_intel' [05:50, 03:35](1802 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:54, 04:18](1813 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:27](1824 MB) + +PASS -- COMPILE 'atmaq_intel' [08:05, 06:45] + +PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:37] +PASS -- TEST 'regional_atmaq_debug_intel' [19:15, 16:58](4598 MB) + +PASS -- COMPILE 'atm_gnu' [05:05, 04:01] +PASS -- TEST 'control_c48_gnu' [11:23, 09:31](868 MB) +PASS -- TEST 'control_stochy_gnu' [04:21, 02:12](728 MB) +PASS -- TEST 'control_ras_gnu' [05:16, 03:43](751 MB) +PASS -- TEST 'control_p8_gnu' [05:49, 03:41](1515 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:44, 03:32](1516 MB) +PASS -- TEST 'control_flake_gnu' [06:14, 04:32](811 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:05, 03:57] +PASS -- TEST 'rap_control_gnu' [09:45, 07:41](1090 MB) +PASS -- TEST 'rap_decomp_gnu' [09:32, 07:50](1085 MB) +PASS -- TEST 'rap_2threads_gnu' [09:28, 07:14](1124 MB) +PASS -- TEST 'rap_restart_gnu' [05:50, 03:58](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:38, 07:51](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 07:57](1083 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:50, 05:46](884 MB) +PASS -- TEST 'hrrr_control_gnu' [05:48, 03:59](1074 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:29, 04:04](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:38, 03:44](1040 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 03:59](1072 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:24, 02:04](878 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:00](934 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:51, 07:48](1081 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:06, 07:21] +PASS -- TEST 'control_diag_debug_gnu' [03:17, 01:15](780 MB) +PASS -- TEST 'regional_debug_gnu' [08:27, 06:18](926 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:00](1100 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:15, 01:57](1090 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:14, 01:59](1097 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:15, 02:05](1098 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:02](1273 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:14, 03:03](1097 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 01:56](1098 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:14, 01:55](1096 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:12](726 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:15](726 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:29, 01:16](1506 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:18, 01:57](1100 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:15, 02:10](1104 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:48, 03:14](1106 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:06, 02:23] +PASS -- TEST 'control_wam_debug_gnu' [03:19, 01:56](501 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:06, 05:21] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:30, 07:13](964 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:41, 03:48](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:33, 06:44](998 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 03:35](873 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:46](961 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:57, 05:32](859 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:15, 02:06](856 MB) +PASS -- TEST 'conus13km_control_gnu' [04:34, 02:29](1265 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:30, 01:04](1172 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:27, 01:27](920 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:05, 11:05] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:26, 04:21](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:05, 08:33] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:00](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:57](968 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:26, 05:22](1283 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:24, 05:32](973 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:23, 03:20](1189 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:29](1348 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:06, 10:29] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 02:00](1002 MB) + +PASS -- COMPILE 's2swa_gnu' [18:07, 16:50] + +PASS -- COMPILE 's2s_gnu' [17:07, 16:01] + +PASS -- COMPILE 's2swa_debug_gnu' [11:06, 09:44] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:08, 17:00] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:06, 08:46] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:07, 14:09] + +SYNOPSIS: +Starting Date/Time: 20240402 08:21:18 +Ending Date/Time: 20240402 09:43:48 +Total Time: 01h:22m:55s +Compiles Completed: 55/55 +Tests Completed: 234/239 +Failed Tests: +* TEST hafs_regional_atm_ocn_intel: FAIL TO COMPARE +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_hafs_regional_atm_ocn_intel.log +* TEST hafs_regional_docn_intel: FAIL TO COMPARE +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_hafs_regional_docn_intel.log +* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_hafs_regional_docn_oisst_intel.log +* TEST control_p8_atmlnd_intel: FAIL TO COMPARE +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_control_p8_atmlnd_intel.log +* TEST control_restart_p8_atmlnd_intel: MISSING +-- LOG: N/A + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERCULES REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +2ec8af0cbe7f0ebcfc8c2211b8102911f510940e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars) + 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) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars) + 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) + d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars) + 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) + e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2394229 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'hafsw_intel' [12:06, 10:33] +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:13, 06:27](932 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:06, 10:19] +PASS -- TEST 'hafs_regional_docn_intel' [08:02, 05:30](954 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:03, 05:31](917 MB) + +PASS -- COMPILE 'atml_intel' [11:06, 09:36] +PASS -- TEST 'control_p8_atmlnd_intel' [08:04, 05:30](1635 MB) SYNOPSIS: -Starting Date/Time: 20240307 12:40:39 -Ending Date/Time: 20240307 14:01:16 -Total Time: 01h:21m:01s -Compiles Completed: 53/53 -Tests Completed: 234/234 +Starting Date/Time: 20240402 10:33:35 +Ending Date/Time: 20240402 10:56:19 +Total Time: 00h:22m:59s +Compiles Completed: 3/3 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 212c002f65..5fcdcf3580 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,21 +1,44 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -d4bf6f3ada023864cca106d27994f69b90edba87 +7cc39e3287638afc5817eeb7c57e1279250a7dcc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) + 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) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -24,245 +47,245 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240301 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3482337 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_2701044 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [39:17, 37:43] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:41, 06:56](1791 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:22, 49:10] -PASS -- TEST 'cpld_control_gfsv17_intel' [24:02, 20:47](1648 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:17, 22:16](1878 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:20, 10:27](998 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:28, 23:50](1623 MB) - -PASS -- COMPILE 's2swa_intel' [38:16, 36:56] -PASS -- TEST 'cpld_control_p8_intel' [13:24, 07:39](1831 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:42, 07:50](1813 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:26](1705 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:23, 07:30](1867 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:45, 04:39](1729 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:19, 07:01](2263 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:24, 07:43](1813 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:45, 06:37](1789 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:45, 07:55](1820 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:36, 07:19](1798 MB) - -PASS -- COMPILE 's2sw_intel' [37:16, 35:54] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:12, 06:00](1657 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:25, 05:48](1706 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:07, 05:03] -PASS -- TEST 'cpld_debug_p8_intel' [13:43, 10:47](1854 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:45] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:08, 07:23](1677 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:15, 32:01] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:22, 05:48](1707 MB) - -PASS -- COMPILE 's2s_intel' [33:17, 32:02] -PASS -- TEST 'cpld_control_c48_intel' [15:01, 12:40](2795 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:41, 33:07] -PASS -- TEST 'cpld_control_p8_faster_intel' [10:38, 07:08](1831 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [51:24, 47:24] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:18, 21:04](1679 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:31, 10:36](1034 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:14, 24:19](1659 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 04:49] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:28, 32:17](1692 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [36:19, 34:35] -PASS -- TEST 'control_flake_intel' [06:28, 04:24](649 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:28, 04:05](601 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:33, 03:49](601 MB) -PASS -- TEST 'control_latlon_intel' [05:25, 03:19](595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:25](595 MB) -PASS -- TEST 'control_c48_intel' [11:36, 10:07](840 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:10](843 MB) -PASS -- TEST 'control_c192_intel' [14:47, 12:27](730 MB) -PASS -- TEST 'control_c384_intel' [19:37, 16:26](892 MB) -PASS -- TEST 'control_c384gdas_intel' [18:10, 14:07](1015 MB) -PASS -- TEST 'control_stochy_intel' [04:25, 02:15](599 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:21, 01:18](432 MB) -PASS -- TEST 'control_lndp_intel' [04:25, 02:15](608 MB) -PASS -- TEST 'control_iovr4_intel' [05:29, 03:21](597 MB) -PASS -- TEST 'control_iovr5_intel' [05:28, 03:23](601 MB) -PASS -- TEST 'control_p8_intel' [07:17, 04:11](1575 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:30, 04:12](1574 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:52](1575 MB) -PASS -- TEST 'control_restart_p8_intel' [05:17, 02:10](813 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:26, 04:11](1565 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:08, 02:07](843 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:22, 04:07](1564 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:35, 03:58](1663 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:03, 07:15](1575 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:46, 05:19](1638 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:44, 04:03](1580 MB) -PASS -- TEST 'merra2_thompson_intel' [08:01, 04:45](1581 MB) -PASS -- TEST 'regional_control_intel' [09:53, 07:10](763 MB) -PASS -- TEST 'regional_restart_intel' [05:37, 03:50](935 MB) -PASS -- TEST 'regional_decomp_intel' [09:53, 07:43](760 MB) -PASS -- TEST 'regional_2threads_intel' [06:53, 04:36](758 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:53, 07:06](770 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:34, 07:07](760 MB) - -PASS -- COMPILE 'rrfs_intel' [34:16, 32:41] -PASS -- TEST 'rap_control_intel' [12:59, 10:07](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:06, 05:43](1213 MB) -PASS -- TEST 'rap_decomp_intel' [12:56, 10:36](987 MB) -PASS -- TEST 'rap_2threads_intel' [12:32, 09:44](1085 MB) -PASS -- TEST 'rap_restart_intel' [08:26, 05:18](995 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:31, 10:05](989 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:14, 10:47](981 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:28, 07:37](999 MB) -PASS -- TEST 'hrrr_control_intel' [07:55, 05:14](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 05:22](984 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:28, 04:47](1054 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:55](914 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:19, 10:01](988 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:28, 12:22](1946 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:26, 11:59](1937 MB) - -PASS -- COMPILE 'csawmg_intel' [32:16, 31:08] -PASS -- TEST 'control_csawmg_intel' [09:47, 07:55](691 MB) -PASS -- TEST 'control_csawmgt_intel' [09:48, 07:49](696 MB) -PASS -- TEST 'control_ras_intel' [06:23, 04:22](670 MB) - -PASS -- COMPILE 'wam_intel' [31:17, 29:58] -PASS -- TEST 'control_wam_intel' [04:18, 02:42](495 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [33:16, 31:48] -PASS -- TEST 'control_p8_faster_intel' [06:30, 03:45](1582 MB) -PASS -- TEST 'regional_control_faster_intel' [08:39, 06:37](762 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 05:44] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 03:21](767 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:22](767 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:45](780 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:23](770 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:17](811 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:41, 05:10](814 MB) -PASS -- TEST 'control_ras_debug_intel' [05:20, 03:28](776 MB) -PASS -- TEST 'control_diag_debug_intel' [05:32, 03:29](826 MB) -PASS -- TEST 'control_debug_p8_intel' [05:43, 03:37](1606 MB) -PASS -- TEST 'regional_debug_intel' [23:50, 21:41](783 MB) -PASS -- TEST 'rap_control_debug_intel' [07:25, 06:00](1156 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:23, 05:53](1149 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:59](1150 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:19, 06:01](1154 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 06:00](1154 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:23](1242 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:26, 06:08](1155 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:20, 06:07](1156 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:24, 06:04](1154 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 06:04](1159 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:04](1155 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 06:01](1155 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:22, 09:50](1153 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:21, 05:58](1152 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:22, 07:24](1159 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:22, 06:03](1155 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:32, 10:23](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:07, 03:45] -PASS -- TEST 'control_wam_debug_intel' [08:21, 06:11](443 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:17, 30:06] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:04, 05:08](1075 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:54, 08:17](901 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:04, 04:25](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:25, 07:53](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:45, 04:01](910 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:05, 04:39](853 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:26, 06:17](907 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:21, 02:22](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:20, 42:33] -PASS -- TEST 'conus13km_control_intel' [04:59, 02:57](1106 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:25](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:35](1026 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:16, 30:23] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:43, 05:33](903 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:09, 04:10] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:55](1030 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:20, 05:49](1034 MB) -PASS -- TEST 'conus13km_debug_intel' [21:04, 18:25](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:05, 18:32](854 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:38](1090 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:59, 18:20](1208 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:46] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 06:05](1071 MB) - -PASS -- COMPILE 'hafsw_intel' [36:17, 34:53] -PASS -- TEST 'hafs_regional_atm_intel' [10:19, 07:10](714 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 06:35](1083 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:35, 09:33](767 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:25, 16:23](804 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:38, 18:24](824 MB) -PASS -- TEST 'gnv1_nested_intel' [08:04, 05:47](774 MB) - -PASS -- COMPILE 'hafs_all_intel' [33:15, 31:36] -PASS -- TEST 'hafs_regional_docn_intel' [11:23, 08:45](768 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:24, 08:44](757 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:08, 08:05] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:36](1058 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:17, 02:15](1032 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:19, 03:31](920 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:19, 03:37](927 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 03:31](922 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:38](1076 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:37](1061 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:19, 03:34](930 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:14, 07:50](885 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:14, 07:44](840 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:35](1068 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:57](2402 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 05:03](2400 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:13] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:16, 08:03](993 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 07:59] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:15, 03:36](1057 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:52] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 01:38](227 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 01:28](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:49](248 MB) - -PASS -- COMPILE 'atml_intel' [40:18, 38:37] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:38, 09:06](1598 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:39, 08:46](1597 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:40, 04:16](874 MB) - -PASS -- COMPILE 'atmw_intel' [33:18, 31:29] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 02:20](1591 MB) - -PASS -- COMPILE 'atmwm_intel' [33:19, 31:31] -PASS -- TEST 'control_atmwav_intel' [05:13, 02:18](610 MB) - -PASS -- COMPILE 'atmaero_intel' [32:18, 30:57] -PASS -- TEST 'atmaero_control_p8_intel' [08:23, 05:16](1699 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:23](1720 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:40](1730 MB) +PASS -- COMPILE 's2swa_32bit_intel' [40:24, 38:30] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:48, 06:53](1793 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:32, 53:55] +PASS -- TEST 'cpld_control_gfsv17_intel' [23:56, 20:29](1664 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:23, 23:17](1880 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:22, 11:10](997 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:31, 23:41](1624 MB) + +PASS -- COMPILE 's2swa_intel' [40:24, 38:30] +PASS -- TEST 'cpld_control_p8_intel' [10:25, 07:33](1820 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:48, 07:30](1824 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:47, 04:23](1708 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:25, 07:39](1843 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:26](1718 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:18, 07:12](2264 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:19, 07:35](1826 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:42, 06:26](1759 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:47, 07:31](1833 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:36, 07:08](1780 MB) + +PASS -- COMPILE 's2sw_intel' [38:23, 37:08] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:25, 05:50](1649 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:40](1717 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:09, 06:38] +PASS -- TEST 'cpld_debug_p8_intel' [13:58, 10:27](1849 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:09, 04:44] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 07:11](1670 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:19, 32:14] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:37](1709 MB) + +PASS -- COMPILE 's2s_intel' [33:22, 32:14] +PASS -- TEST 'cpld_control_c48_intel' [16:37, 13:20](2802 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:50, 32:49] +PASS -- TEST 'cpld_control_p8_faster_intel' [12:52, 07:11](1832 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:28, 47:36] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:13, 21:07](1674 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:47, 10:35](1040 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:26, 24:06](1661 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 04:56] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:24, 32:10](1686 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [36:21, 35:19] +PASS -- TEST 'control_flake_intel' [06:30, 04:26](644 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:34, 03:17](600 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:38, 03:35](601 MB) +PASS -- TEST 'control_latlon_intel' [05:31, 03:20](600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:39, 03:22](600 MB) +PASS -- TEST 'control_c48_intel' [11:43, 10:05](843 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:49, 10:04](846 MB) +PASS -- TEST 'control_c192_intel' [14:52, 12:33](728 MB) +PASS -- TEST 'control_c384_intel' [18:57, 15:49](892 MB) +PASS -- TEST 'control_c384gdas_intel' [18:48, 13:31](1015 MB) +PASS -- TEST 'control_stochy_intel' [04:31, 02:16](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:29, 01:18](434 MB) +PASS -- TEST 'control_lndp_intel' [04:30, 02:10](603 MB) +PASS -- TEST 'control_iovr4_intel' [05:35, 03:20](595 MB) +PASS -- TEST 'control_iovr5_intel' [05:34, 03:22](597 MB) +PASS -- TEST 'control_p8_intel' [06:35, 03:58](1573 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 03:59](1575 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 03:50](1584 MB) +PASS -- TEST 'control_restart_p8_intel' [05:15, 02:09](813 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:40, 03:55](1571 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:12, 02:05](837 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:39, 04:04](1567 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:40, 03:45](1657 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:22, 06:59](1581 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:59, 05:09](1639 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:51, 04:02](1576 MB) +PASS -- TEST 'merra2_thompson_intel' [08:12, 04:35](1591 MB) +PASS -- TEST 'regional_control_intel' [10:10, 07:08](758 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 03:46](932 MB) +PASS -- TEST 'regional_decomp_intel' [10:10, 07:30](761 MB) +PASS -- TEST 'regional_2threads_intel' [07:08, 04:15](756 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:57, 07:09](758 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 07:01](766 MB) + +PASS -- COMPILE 'rrfs_intel' [35:21, 33:27] +PASS -- TEST 'rap_control_intel' [12:06, 09:58](994 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:36](1214 MB) +PASS -- TEST 'rap_decomp_intel' [12:53, 10:37](987 MB) +PASS -- TEST 'rap_2threads_intel' [12:01, 09:35](1084 MB) +PASS -- TEST 'rap_restart_intel' [08:28, 05:20](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:21, 09:58](991 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:50, 10:36](985 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:24, 07:41](1002 MB) +PASS -- TEST 'hrrr_control_intel' [07:52, 05:11](993 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 05:31](979 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:24, 04:44](1055 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:47](925 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:35, 09:59](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:40, 12:21](1941 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 12:04](1937 MB) + +PASS -- COMPILE 'csawmg_intel' [33:21, 31:30] +PASS -- TEST 'control_csawmg_intel' [10:47, 08:17](699 MB) +PASS -- TEST 'control_csawmgt_intel' [10:50, 08:10](691 MB) +PASS -- TEST 'control_ras_intel' [06:29, 04:26](664 MB) + +PASS -- COMPILE 'wam_intel' [31:17, 29:31] +PASS -- TEST 'control_wam_intel' [04:27, 02:48](501 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [33:22, 32:12] +PASS -- TEST 'control_p8_faster_intel' [06:41, 03:34](1571 MB) +PASS -- TEST 'regional_control_faster_intel' [08:48, 06:29](763 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:09, 06:03] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:26, 03:20](763 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:28, 03:22](759 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:44](765 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:30](766 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:45, 05:16](812 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [07:42, 05:16](805 MB) +PASS -- TEST 'control_ras_debug_intel' [05:30, 03:24](772 MB) +PASS -- TEST 'control_diag_debug_intel' [05:29, 03:28](816 MB) +PASS -- TEST 'control_debug_p8_intel' [05:52, 03:44](1591 MB) +PASS -- TEST 'regional_debug_intel' [23:52, 21:51](774 MB) +PASS -- TEST 'rap_control_debug_intel' [07:22, 05:59](1153 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:23, 05:54](1143 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 06:02](1144 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:02](1152 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 06:02](1149 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:33, 06:19](1235 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:22, 06:09](1155 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:25, 06:23](1155 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:36, 06:18](1153 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:04](1151 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:25, 06:00](1153 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:21, 06:09](1152 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:36, 09:50](1147 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:31, 05:57](1148 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:23](1150 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:28, 06:05](1152 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:43, 10:30](1153 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:07, 04:09] +PASS -- TEST 'control_wam_debug_intel' [08:25, 06:08](435 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:20, 29:57] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:12](1077 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:23, 08:10](897 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:02, 04:39](869 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:20, 07:51](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:46, 04:00](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:03, 04:59](852 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:22, 06:31](897 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 02:36](843 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:31, 43:40] +PASS -- TEST 'conus13km_control_intel' [05:09, 02:54](1105 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:28](1050 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:36](1025 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:22, 30:08] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 05:33](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:08, 04:02] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:54](1029 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:46](1030 MB) +PASS -- TEST 'conus13km_debug_intel' [21:38, 18:23](1138 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:39, 18:51](849 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:34](1086 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:17, 18:27](1205 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:08, 04:13] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:30, 06:15](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [38:26, 36:42] +PASS -- TEST 'hafs_regional_atm_intel' [09:17, 06:57](714 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:19](1088 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:45, 09:23](778 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:30, 16:09](807 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:51, 18:13](820 MB) +PASS -- TEST 'gnv1_nested_intel' [08:25, 05:40](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:23, 31:32] +PASS -- TEST 'hafs_regional_docn_intel' [11:33, 08:38](773 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:35, 08:49](748 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:53] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:35, 04:18](1073 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:14](1032 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:35, 04:23](930 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:36, 04:18](926 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:35, 04:18](918 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:35, 04:33](1078 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:36, 04:23](1064 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:36, 04:24](946 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:04, 09:05](889 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:04, 09:03](846 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:33, 04:24](1047 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:38, 06:51](2353 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:38, 06:21](2402 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:07] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:19, 07:55](1002 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:09] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:35](1062 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:38] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:33](231 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 01:19](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:48](251 MB) + +PASS -- COMPILE 'atml_intel' [36:20, 34:16] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:38, 08:04](1604 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:37, 08:06](1606 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:53, 04:06](871 MB) + +PASS -- COMPILE 'atmw_intel' [33:19, 31:28] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:42, 02:17](1594 MB) + +PASS -- COMPILE 'atmwm_intel' [33:22, 32:01] +PASS -- TEST 'control_atmwav_intel' [05:12, 02:15](608 MB) + +PASS -- COMPILE 'atmaero_intel' [32:19, 30:20] +PASS -- TEST 'atmaero_control_p8_intel' [08:29, 05:15](1694 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:27, 06:30](1719 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:13, 06:38](1734 MB) SYNOPSIS: -Starting Date/Time: 20240308 14:58:48 -Ending Date/Time: 20240308 18:29:17 -Total Time: 03h:31m:04s +Starting Date/Time: 20240404 13:46:55 +Ending Date/Time: 20240404 17:20:28 +Total Time: 03h:34m:21s Compiles Completed: 33/33 Tests Completed: 161/161 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index f82c2e41f7..7893a3140f 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,44 +1,44 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -6865423137e59e6b2343fada23bfe5582e2fedfa +7cc39e3287638afc5817eeb7c57e1279250a7dcc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) - 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47) - cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -47,285 +47,291 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301 -COMPARISON DIRECTORY: /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_11060 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_107796 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:08, 15:39] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:01, 05:21](3182 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:10, 21:30] -PASS -- TEST 'cpld_control_gfsv17_intel' [20:18, 16:26](1747 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:08, 17:16](2025 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:05, 08:07](1063 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:58, 18:37](1649 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:07, 06:23] -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:52, 22:49](1690 MB) - -PASS -- COMPILE 's2swa_intel' [17:08, 15:35] -PASS -- TEST 'cpld_control_p8_intel' [08:40, 05:44](3208 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:02, 05:45](3206 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:06, 03:33](3254 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:40, 05:46](3237 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:03, 03:21](3273 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:57, 06:11](3558 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:40, 05:45](3204 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:56, 04:46](3068 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:03, 05:49](3213 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:01, 09:54](3345 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:32, 06:12](3623 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:42, 11:41](4114 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:50, 06:54](4353 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:52, 05:20](3175 MB) - -PASS -- COMPILE 's2sw_intel' [16:08, 14:31] -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:30, 04:30](1736 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 04:25](1778 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:07, 06:22] -PASS -- TEST 'cpld_debug_p8_intel' [12:35, 08:36](3240 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:07, 05:27] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:21, 06:10](1752 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:08, 13:40] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:35, 04:21](1778 MB) - -PASS -- COMPILE 's2s_intel' [15:08, 13:30] -FAIL TO COMPARE -- TEST 'cpld_control_c48_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:09, 20:05] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:44, 05:41](3209 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:08] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:20, 16:34](1774 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:36, 08:01](1175 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:24, 18:28](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:45] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:08, 24:45](1714 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:28] -PASS -- TEST 'control_flake_intel' [06:24, 03:52](697 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:25, 02:39](655 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 02:44](659 MB) -PASS -- TEST 'control_latlon_intel' [05:25, 02:47](652 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:30, 02:57](649 MB) -PASS -- TEST 'control_c48_intel' [08:28, 06:09](876 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:42, 06:03](872 MB) -PASS -- TEST 'control_c192_intel' [11:37, 09:30](858 MB) -PASS -- TEST 'control_c384_intel' [14:46, 10:31](1246 MB) -PASS -- TEST 'control_c384gdas_intel' [14:12, 09:50](1358 MB) -PASS -- TEST 'control_stochy_intel' [04:24, 01:58](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:23, 01:00](503 MB) -PASS -- TEST 'control_lndp_intel' [04:24, 01:50](656 MB) -PASS -- TEST 'control_iovr4_intel' [05:29, 02:50](646 MB) -PASS -- TEST 'control_iovr5_intel' [05:29, 02:32](648 MB) -PASS -- TEST 'control_p8_intel' [06:24, 02:57](1632 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:30, 03:08](1632 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:46, 02:53](1634 MB) -PASS -- TEST 'control_restart_p8_intel' [04:29, 01:36](893 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:18, 02:53](1620 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:29, 01:38](934 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:15, 03:04](1620 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:21, 03:01](1718 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:49, 05:16](1636 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:37, 03:58](1698 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:30, 03:01](1640 MB) -PASS -- TEST 'merra2_thompson_intel' [07:48, 03:27](1633 MB) -PASS -- TEST 'regional_control_intel' [07:41, 05:12](858 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 02:43](1024 MB) -PASS -- TEST 'regional_decomp_intel' [07:40, 05:35](850 MB) -PASS -- TEST 'regional_2threads_intel' [06:30, 03:41](848 MB) -PASS -- TEST 'regional_noquilt_intel' [07:41, 05:10](1370 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:09](855 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:42, 05:07](857 MB) -PASS -- TEST 'regional_wofs_intel' [09:39, 06:40](1921 MB) - -PASS -- COMPILE 'rrfs_intel' [13:07, 12:03] -PASS -- TEST 'rap_control_intel' [11:34, 07:42](1101 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 04:40](1299 MB) -PASS -- TEST 'rap_decomp_intel' [11:09, 08:08](1035 MB) -PASS -- TEST 'rap_2threads_intel' [11:07, 07:54](1181 MB) -PASS -- TEST 'rap_restart_intel' [07:27, 04:02](1095 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:35, 07:43](1103 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:29, 08:08](1029 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:32, 05:48](1128 MB) -PASS -- TEST 'hrrr_control_intel' [07:05, 03:59](1046 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:53, 04:04](1020 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:57, 03:22](1111 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:23, 02:12](988 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:26, 07:35](1099 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:26, 09:10](1997 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:25, 08:55](2073 MB) - -PASS -- COMPILE 'csawmg_intel' [14:06, 12:12] -PASS -- TEST 'control_csawmg_intel' [08:52, 05:55](750 MB) -PASS -- TEST 'control_csawmgt_intel' [08:45, 05:51](747 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:17](739 MB) - -PASS -- COMPILE 'wam_intel' [13:06, 11:47] -PASS -- TEST 'control_wam_intel' [04:20, 02:02](658 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:06, 11:47] -PASS -- TEST 'control_p8_faster_intel' [06:38, 02:37](1630 MB) -PASS -- TEST 'regional_control_faster_intel' [06:45, 04:35](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:42] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:24, 02:45](812 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 02:49](811 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:06](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:19, 02:48](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:06](863 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:41, 04:10](862 MB) -PASS -- TEST 'control_ras_debug_intel' [04:19, 02:45](823 MB) -PASS -- TEST 'control_diag_debug_intel' [04:27, 02:50](872 MB) -PASS -- TEST 'control_debug_p8_intel' [05:46, 02:54](1642 MB) -PASS -- TEST 'regional_debug_intel' [19:43, 17:09](841 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:49](1205 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:32, 04:45](1208 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 04:48](1199 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 04:52](1201 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 04:55](1203 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:06](1279 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 04:57](1191 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:00](1198 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:56](1197 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:54](1207 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:25, 04:49](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 04:51](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:57](1194 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:59](1195 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 05:45](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 04:51](1197 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:25](1206 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:05, 03:52] -PASS -- TEST 'control_wam_debug_intel' [07:19, 05:03](514 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:07, 11:32] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:58, 04:25](1165 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:23, 06:32](1006 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:40, 03:22](985 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:25, 06:41](1096 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:48, 03:17](965 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:08, 03:35](921 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 04:48](1028 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:22, 01:52](923 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:09, 14:15] -PASS -- TEST 'conus13km_control_intel' [04:58, 02:05](1202 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:05](1122 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:15](1109 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:09, 10:51] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:56, 04:11](993 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:37] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:58](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:48](1075 MB) -PASS -- TEST 'conus13km_debug_intel' [17:01, 14:22](1228 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:55, 14:28](925 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:26](1154 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:21](1298 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:06, 03:30] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:22, 05:01](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [16:07, 13:39] -PASS -- TEST 'hafs_regional_atm_intel' [08:13, 05:36](747 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 06:04](1121 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:28, 07:48](832 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 12:50](974 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:26, 14:33](882 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:01, 06:07](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:29, 07:23](517 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:51, 03:16](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:45, 08:14](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 04:07](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:52, 04:02](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 05:21](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:30](402 MB) -PASS -- TEST 'gnv1_nested_intel' [15:02, 04:31](805 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:08] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:52, 13:46](615 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:43] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 09:30](675 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:10, 09:33](741 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:07, 13:12] -FAIL TO COMPARE -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB) - -PASS -- COMPILE 'hafs_all_intel' [15:07, 13:00] -PASS -- TEST 'hafs_regional_docn_intel' [09:11, 06:15](830 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:20, 06:18](813 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:07](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:06, 06:34] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:38](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:18, 01:40](1089 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:30](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:16, 02:44](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:41](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:43](1137 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:46](1135 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:38](1011 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:15, 05:56](1051 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:09, 05:56](1031 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [15:14, 02:42](1132 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:17, 03:30](2447 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [15:17, 03:38](2437 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:06, 03:55] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [17:17, 06:16](1067 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:06, 07:38] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:15, 02:43](1129 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:57] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:47](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:24, 00:48](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:31](320 MB) - -PASS -- COMPILE 'atml_intel' [14:07, 12:15] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:43, 04:13](1613 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [14:35, 04:16](1604 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 02:24](896 MB) - -PASS -- COMPILE 'atmw_intel' [14:07, 11:45] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:24, 01:41](1663 MB) - -PASS -- COMPILE 'atmwm_intel' [14:07, 12:04] -PASS -- TEST 'control_atmwav_intel' [12:07, 01:39](671 MB) - -PASS -- COMPILE 'atmaero_intel' [14:06, 12:07] -PASS -- TEST 'atmaero_control_p8_intel' [13:31, 03:52](3029 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:29, 04:47](3087 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:11, 05:00](3110 MB) - -PASS -- COMPILE 'atmaq_intel' [13:06, 10:48] - -PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:13] -PASS -- TEST 'regional_atmaq_debug_intel' [29:56, 21:02](4579 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:07, 16:39] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:36, 05:18](3180 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:09, 23:08] +PASS -- TEST 'cpld_control_gfsv17_intel' [27:51, 16:25](1741 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:07, 17:28](2054 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:58, 08:06](1122 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:46, 18:30](1654 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:34] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:44, 22:41](1686 MB) + +PASS -- COMPILE 's2swa_intel' [16:06, 14:13] +PASS -- TEST 'cpld_control_p8_intel' [08:21, 05:34](3207 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:46, 05:39](3202 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:39, 03:19](3257 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:21, 05:37](3230 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:43, 03:21](3276 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:26, 06:04](3548 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:33, 05:37](3202 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:33, 04:39](3069 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:45, 05:37](3173 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:39, 09:53](3347 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:16, 06:10](3622 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:40, 10:54](4162 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:13, 06:54](4370 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:30, 05:17](3172 MB) + +PASS -- COMPILE 's2sw_intel' [16:07, 14:57] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:16, 04:21](1736 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:34, 04:17](1780 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:20] +PASS -- TEST 'cpld_debug_p8_intel' [12:23, 08:46](3188 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:17] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 05:59](1738 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:06, 12:42] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:12, 04:16](1779 MB) + +PASS -- COMPILE 's2s_intel' [15:06, 13:15] +PASS -- TEST 'cpld_control_c48_intel' [13:46, 08:01](2835 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:08, 18:06] +PASS -- TEST 'cpld_control_p8_faster_intel' [17:39, 05:16](3203 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:08, 18:37] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:09, 16:41](1767 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:20, 08:06](1172 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:10, 18:35](1676 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:39] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:50](1715 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:06, 13:42] +PASS -- TEST 'control_flake_intel' [14:25, 03:27](700 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [13:26, 02:24](656 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:29, 02:35](653 MB) +PASS -- TEST 'control_latlon_intel' [13:23, 02:25](655 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:31, 02:33](649 MB) +PASS -- TEST 'control_c48_intel' [16:35, 05:56](872 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:42, 05:56](872 MB) +PASS -- TEST 'control_c192_intel' [19:35, 09:01](852 MB) +PASS -- TEST 'control_c384_intel' [21:42, 10:04](1246 MB) +PASS -- TEST 'control_c384gdas_intel' [25:04, 11:49](1354 MB) +PASS -- TEST 'control_stochy_intel' [12:22, 01:42](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:22, 01:04](503 MB) +PASS -- TEST 'control_lndp_intel' [12:23, 01:37](650 MB) +PASS -- TEST 'control_iovr4_intel' [12:26, 02:28](653 MB) +PASS -- TEST 'control_iovr5_intel' [12:24, 02:32](645 MB) +PASS -- TEST 'control_p8_intel' [13:15, 03:02](1633 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:19, 02:58](1639 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:38, 02:52](1638 MB) +PASS -- TEST 'control_restart_p8_intel' [04:11, 01:38](893 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:11, 02:54](1619 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:18, 01:41](929 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:11, 03:03](1611 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:11, 03:06](1723 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:45, 05:09](1636 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 03:55](1695 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:01](1641 MB) +PASS -- TEST 'merra2_thompson_intel' [06:45, 03:29](1647 MB) +PASS -- TEST 'regional_control_intel' [07:42, 05:05](851 MB) +PASS -- TEST 'regional_restart_intel' [04:39, 02:45](1023 MB) +PASS -- TEST 'regional_decomp_intel' [07:40, 05:24](844 MB) +PASS -- TEST 'regional_2threads_intel' [05:38, 03:37](844 MB) +PASS -- TEST 'regional_noquilt_intel' [06:40, 05:03](1365 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:04](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:03](854 MB) +PASS -- TEST 'regional_wofs_intel' [08:37, 06:37](1917 MB) + +PASS -- COMPILE 'rrfs_intel' [13:08, 11:36] +PASS -- TEST 'rap_control_intel' [10:26, 07:46](1105 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:50, 04:46](1288 MB) +PASS -- TEST 'rap_decomp_intel' [10:53, 08:06](1032 MB) +PASS -- TEST 'rap_2threads_intel' [09:56, 07:55](1180 MB) +PASS -- TEST 'rap_restart_intel' [06:26, 04:03](1097 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:23, 07:43](1099 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:10, 08:07](1026 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:23, 05:50](1132 MB) +PASS -- TEST 'hrrr_control_intel' [06:12, 04:01](1036 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 04:07](1023 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:58, 03:23](1110 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:23, 02:10](997 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:16, 07:36](1100 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:15](1994 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:22, 08:56](2074 MB) + +PASS -- COMPILE 'csawmg_intel' [12:06, 10:57] +PASS -- TEST 'control_csawmg_intel' [08:38, 06:06](744 MB) +PASS -- TEST 'control_csawmgt_intel' [07:36, 06:02](752 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:19](733 MB) + +PASS -- COMPILE 'wam_intel' [15:07, 10:45] +PASS -- TEST 'control_wam_intel' [04:16, 02:07](658 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:07, 11:35] +PASS -- TEST 'control_p8_faster_intel' [05:36, 02:39](1625 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 04:41](852 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:06, 04:27] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:45](814 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:37](815 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:58](813 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:47](816 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:15](857 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:44, 04:05](856 MB) +PASS -- TEST 'control_ras_debug_intel' [04:19, 02:47](826 MB) +PASS -- TEST 'control_diag_debug_intel' [04:26, 02:50](872 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:52](1646 MB) +PASS -- TEST 'regional_debug_intel' [19:42, 17:28](841 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 04:54](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:58](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:54](1201 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:49](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 05:08](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:11](1288 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:57](1199 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:06](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:57](1200 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:19, 04:58](1200 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 04:52](1207 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 04:56](1200 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:55](1199 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:56](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 05:53](1198 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:18, 05:15](1204 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 08:37](1199 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:06, 03:34] +PASS -- TEST 'control_wam_debug_intel' [07:17, 05:13](515 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:08, 11:27] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:57, 04:27](1169 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:24, 06:30](1065 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 03:24](974 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:01, 06:42](1097 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:05, 03:03](967 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:54, 03:33](943 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:14, 04:58](1033 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 01:59](937 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:11] +PASS -- TEST 'conus13km_control_intel' [04:56, 02:08](1207 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:42, 01:06](1125 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:41, 01:18](1114 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:07, 11:55] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:46, 04:12](1000 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:06, 03:32] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 04:52](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:17, 04:49](1090 MB) +PASS -- TEST 'conus13km_debug_intel' [15:51, 13:57](1229 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 14:37](932 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:22](1152 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:43, 14:06](1319 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:06, 03:51] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:20, 04:55](1128 MB) + +PASS -- COMPILE 'hafsw_intel' [16:06, 12:43] +PASS -- TEST 'hafs_regional_atm_intel' [08:12, 05:28](741 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:54](1124 MB) +FAIL TO COMPARE -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:08, 12:47](865 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:18, 14:33](878 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:55, 06:11](499 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:18, 07:27](516 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:47, 03:06](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:26, 07:56](473 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:43, 04:07](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:53, 03:56](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:49, 05:15](592 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:23, 01:22](397 MB) +PASS -- TEST 'gnv1_nested_intel' [07:50, 04:36](806 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:06, 05:22] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:46, 13:10](566 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:07, 14:18] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 09:38](669 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:57, 09:37](696 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:07, 13:08] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:02, 06:57](732 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:07, 13:33] +FAIL TO COMPARE -- TEST 'hafs_regional_docn_intel' [, ]( MB) +FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 15:57](1203 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:06, 08:08] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:36](1141 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:14, 01:42](1080 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:31](1004 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:34](1010 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:40](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:43](1139 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:39](1139 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:34](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 05:58](1052 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 05:58](1025 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 02:36](1138 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:34](2437 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:37](2487 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:06, 03:51] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:12, 06:14](1066 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:06, 08:08] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:39](1138 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:19] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:25, 00:52](248 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:21, 00:51](326 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:32](324 MB) + +PASS -- COMPILE 'atml_intel' [15:06, 13:29] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:16](1601 MB) +FAIL TO COMPARE -- TEST 'control_p8_atmlnd_intel' [, ]( MB) +MISSING -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB) + +PASS -- COMPILE 'atmw_intel' [14:06, 12:28] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 01:45](1668 MB) + +PASS -- COMPILE 'atmwm_intel' [14:06, 12:52] +PASS -- TEST 'control_atmwav_intel' [04:04, 01:41](678 MB) + +PASS -- COMPILE 'atmaero_intel' [13:06, 11:17] +PASS -- TEST 'atmaero_control_p8_intel' [07:17, 03:59](3033 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:50](3092 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:05](3113 MB) + +PASS -- COMPILE 'atmaq_intel' [12:06, 10:46] + +PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:51] +PASS -- TEST 'regional_atmaq_debug_intel' [25:46, 20:56](4578 MB) SYNOPSIS: -Starting Date/Time: 20240308 10:08:28 -Ending Date/Time: 20240308 11:48:33 -Total Time: 01h:40m:51s +Starting Date/Time: 20240404 08:42:36 +Ending Date/Time: 20240404 10:22:54 +Total Time: 01h:41m:03s Compiles Completed: 39/39 -Tests Completed: 180/182 +Tests Completed: 177/182 Failed Tests: -* TEST cpld_control_c48_intel: FAIL TO COMPARE --- LOG: /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2164/tests/logs/log_orion/rt_cpld_control_c48_intel.log -* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAIL TO COMPARE --- LOG: /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2164/tests/logs/log_orion/rt_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log +* TEST hafs_regional_atm_ocn_intel: FAIL TO COMPARE +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_hafs_regional_atm_ocn_intel.log +* TEST hafs_regional_docn_intel: FAIL TO COMPARE +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_hafs_regional_docn_intel.log +* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_hafs_regional_docn_oisst_intel.log +* TEST control_p8_atmlnd_intel: FAIL TO COMPARE +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_control_p8_atmlnd_intel.log +* TEST control_restart_p8_atmlnd_intel: MISSING +-- LOG: N/A NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -338,44 +344,44 @@ Result: FAILURE ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -8eee1bc778ec0b6d8a357341c859edb8799367da +7cc39e3287638afc5817eeb7c57e1279250a7dcc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) - 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47) - cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -384,25 +390,30 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221010 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_156392 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'hafsw_intel' [15:06, 13:24] +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:08, 06:58](842 MB) -PASS -- COMPILE 's2s_intel' [14:06, 12:08] -PASS -- TEST 'cpld_control_c48_intel' [10:46, 08:07](2823 MB) +PASS -- COMPILE 'hafs_all_intel' [15:06, 13:16] +PASS -- TEST 'hafs_regional_docn_intel' [09:04, 06:24](828 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:05, 06:30](817 MB) -PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:21] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:53, 07:13](731 MB) +PASS -- COMPILE 'atml_intel' [15:06, 13:26] +PASS -- TEST 'control_p8_atmlnd_intel' [08:07, 04:16](1593 MB) SYNOPSIS: -Starting Date/Time: 20240308 14:10:08 -Ending Date/Time: 20240308 15:01:01 -Total Time: 00h:51m:04s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Starting Date/Time: 20240404 13:06:07 +Ending Date/Time: 20240404 13:32:43 +Total Time: 00h:26m:41s +Compiles Completed: 3/3 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 6724076365..7184495c81 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,44 +1,44 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -84a930a976683e48188f3c0bede701116a9971f6 +616a1599842de8f07db974c54438bb9b9fa996b9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) - 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459) - c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47) - cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) + f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85) + 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f) + 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de) + 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness) + 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2) + 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b) NOTES: @@ -47,236 +47,236 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240301 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178951 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240401 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_152070 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:01, 14:49] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:11, 01:59](2976 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:45, 11:13] -PASS -- TEST 'cpld_control_gfsv17_intel' [27:28, 02:14](1592 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [08:07, 01:31](1717 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:07, 01:40](845 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:29, 01:17](1576 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [23:12, 18:53] -PASS -- TEST 'cpld_debug_gfsv17_intel' [20:01, 01:26](1606 MB) - -PASS -- COMPILE 's2swa_intel' [31:24, 27:02] -PASS -- TEST 'cpld_control_p8_intel' [11:49, 01:35](3015 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:49, 01:49](3003 MB) -PASS -- TEST 'cpld_restart_p8_intel' [01:53, 01:43](3061 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:49, 01:19](3026 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [01:51, 01:37](3080 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:49, 01:59](3314 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:49, 01:30](3002 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:50, 01:58](2927 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:49, 01:56](3002 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [11:58, 03:49](3951 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [51:39, 04:12](4251 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:49, 02:00](2970 MB) - -PASS -- COMPILE 's2sw_intel' [14:43, 10:35] -PASS -- TEST 'cpld_control_noaero_p8_intel' [28:30, 01:11](1586 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [28:30, 01:20](1635 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [23:07, 19:25] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:04, 01:23](1631 MB) - -PASS -- COMPILE 's2s_intel' [13:41, 09:43] -PASS -- TEST 'cpld_control_c48_intel' [29:31, 01:04](2645 MB) - -PASS -- COMPILE 's2swa_faster_intel' [31:28, 27:03] -PASS -- TEST 'cpld_control_p8_faster_intel' [11:44, 02:12](3003 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:11, 21:31] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:01, 01:48](1605 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [58:52, 00:54](899 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [55:13, 01:01](1582 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:28, 04:14] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:45, 01:06](1616 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [32:34, 28:33] -PASS -- TEST 'control_flake_intel' [01:56, 00:38](573 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [01:56, 00:49](523 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:37, 00:47](531 MB) -PASS -- TEST 'control_latlon_intel' [01:30, 00:53](523 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:30, 01:05](523 MB) -PASS -- TEST 'control_c48_intel' [01:27, 01:08](714 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [01:19, 01:22](715 MB) -PASS -- TEST 'control_c192_intel' [01:07, 01:04](639 MB) -PASS -- TEST 'control_c384_intel' [55:01, 01:45](955 MB) -PASS -- TEST 'control_c384gdas_intel' [54:59, 02:10](1092 MB) -PASS -- TEST 'control_stochy_intel' [54:54, 01:11](529 MB) -PASS -- TEST 'control_stochy_restart_intel' [50:09, 00:30](333 MB) -PASS -- TEST 'control_lndp_intel' [54:41, 00:17](528 MB) -PASS -- TEST 'control_iovr4_intel' [54:41, 00:27](522 MB) -PASS -- TEST 'control_iovr5_intel' [54:21, 01:20](522 MB) -PASS -- TEST 'control_p8_intel' [54:21, 01:15](1500 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [54:03, 02:00](1499 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [53:46, 01:34](1500 MB) -PASS -- TEST 'control_restart_p8_intel' [46:40, 01:10](687 MB) -PASS -- TEST 'control_noqr_p8_intel' [53:41, 01:08](1489 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [45:28, 01:29](700 MB) -PASS -- TEST 'control_decomp_p8_intel' [53:35, 01:09](1500 MB) -PASS -- TEST 'control_2threads_p8_intel' [53:10, 00:51](1591 MB) -PASS -- TEST 'control_p8_lndp_intel' [52:23, 00:59](1500 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [52:22, 01:58](1564 MB) -PASS -- TEST 'control_p8_mynn_intel' [51:32, 00:59](1515 MB) -PASS -- TEST 'merra2_thompson_intel' [51:19, 01:56](1514 MB) -PASS -- TEST 'regional_control_intel' [51:12, 00:45](608 MB) -PASS -- TEST 'regional_restart_intel' [41:07, 00:54](778 MB) -PASS -- TEST 'regional_decomp_intel' [50:54, 01:08](608 MB) -PASS -- TEST 'regional_2threads_intel' [50:33, 00:23](663 MB) -PASS -- TEST 'regional_noquilt_intel' [50:32, 00:50](1145 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [50:28, 00:52](608 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [50:14, 00:47](611 MB) -PASS -- TEST 'regional_wofs_intel' [49:48, 00:46](1577 MB) - -PASS -- COMPILE 'rrfs_intel' [26:11, 22:04] -PASS -- TEST 'rap_control_intel' [03:19, 01:26](921 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:20, 00:48](1091 MB) -PASS -- TEST 'rap_decomp_intel' [03:19, 01:07](917 MB) -PASS -- TEST 'rap_2threads_intel' [03:18, 01:26](1005 MB) -PASS -- TEST 'rap_restart_intel' [49:11, 01:21](786 MB) -PASS -- TEST 'rap_sfcdiff_intel' [03:19, 01:43](917 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [02:27, 02:14](913 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [48:41, 01:54](787 MB) -PASS -- TEST 'hrrr_control_intel' [02:21, 01:24](911 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [47:52, 01:39](916 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [47:14, 01:27](994 MB) -PASS -- TEST 'hrrr_control_restart_intel' [45:24, 00:41](742 MB) -PASS -- TEST 'rrfs_v1beta_intel' [45:20, 02:06](911 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [45:19, 00:57](1877 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:04, 01:13](1861 MB) - -PASS -- COMPILE 'csawmg_intel' [17:50, 14:56] -PASS -- TEST 'control_csawmg_intel' [10:40, 00:54](602 MB) -PASS -- TEST 'control_csawmgt_intel' [10:40, 01:02](593 MB) -PASS -- TEST 'control_ras_intel' [10:40, 00:33](559 MB) - -PASS -- COMPILE 'wam_intel' [14:43, 13:04] -PASS -- TEST 'control_wam_intel' [12:45, 00:13](272 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:06, 19:16] -PASS -- TEST 'control_p8_faster_intel' [04:05, 02:01](1508 MB) -PASS -- TEST 'regional_control_faster_intel' [04:04, 00:33](610 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:02, 16:42] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:52, 00:21](689 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:24, 00:31](692 MB) -PASS -- TEST 'control_stochy_debug_intel' [44:05, 00:53](689 MB) -PASS -- TEST 'control_lndp_debug_intel' [44:00, 01:15](691 MB) -PASS -- TEST 'control_csawmg_debug_intel' [44:00, 00:45](733 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [42:55, 00:22](729 MB) -PASS -- TEST 'control_ras_debug_intel' [42:36, 00:47](705 MB) -PASS -- TEST 'control_diag_debug_intel' [41:27, 00:48](747 MB) -PASS -- TEST 'control_debug_p8_intel' [41:23, 00:43](1525 MB) -PASS -- TEST 'regional_debug_intel' [41:03, 00:59](631 MB) -PASS -- TEST 'rap_control_debug_intel' [41:03, 00:34](1080 MB) -PASS -- TEST 'hrrr_control_debug_intel' [40:52, 00:39](1068 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [40:32, 00:39](1072 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [40:26, 00:50](1077 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:12, 01:02](1076 MB) -PASS -- TEST 'rap_diag_debug_intel' [39:56, 01:13](1158 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [39:20, 00:31](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [39:00, 00:56](1074 MB) -PASS -- TEST 'rap_lndp_debug_intel' [38:45, 00:32](1077 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [38:16, 00:46](1075 MB) -PASS -- TEST 'rap_noah_debug_intel' [38:15, 00:51](1070 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [38:08, 00:58](1070 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:03, 01:05](1074 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [37:40, 01:11](1072 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [37:34, 01:14](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [37:01, 01:20](1074 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [36:29, 01:50](1077 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:43, 08:13] -PASS -- TEST 'control_wam_debug_intel' [10:17, 00:34](297 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:07, 18:36] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [36:27, 00:52](952 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [36:03, 01:26](791 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [35:47, 01:57](788 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [35:33, 01:39](851 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [35:21, 01:14](840 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [35:08, 02:10](788 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:54, 01:50](685 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:57, 00:56](668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:14, 22:23] -PASS -- TEST 'conus13km_control_intel' [35:06, 00:54](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [30:46, 00:38](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [30:37, 00:20](882 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:46, 14:00] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:57, 01:02](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:35, 05:59] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:08, 00:56](949 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:08, 00:57](952 MB) -PASS -- TEST 'conus13km_debug_intel' [04:08, 00:45](1035 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [04:08, 00:27](712 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [04:09, 00:18](1039 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [04:08, 00:42](1103 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:41, 08:58] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [33:17, 01:08](982 MB) - -PASS -- COMPILE 'hafsw_intel' [12:40, 10:40] -PASS -- TEST 'hafs_regional_atm_intel' [33:10, 02:10](624 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:00, 00:34](966 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:45, 02:08](667 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:36, 01:22](700 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:32, 02:03](706 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [32:13, 01:04](390 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [32:04, 02:16](403 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [31:59, 01:21](278 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [31:44, 02:40](372 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:16, 01:21](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [30:55, 00:53](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:40, 01:28](491 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:36, 01:17](312 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:26, 03:46] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [30:28, 00:48](501 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:59, 14:24] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [30:13, 01:37](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [30:00, 01:05](709 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:47, 12:56] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:52, 01:11](711 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:56, 09:53] -PASS -- TEST 'hafs_regional_docn_intel' [29:18, 01:39](659 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:46, 01:37](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:32, 00:56](881 MB) - -PASS -- COMPILE 'atml_intel' [13:51, 10:01] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [28:01, 01:26](1546 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [28:00, 01:31](1545 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [20:00, 01:09](740 MB) - -PASS -- COMPILE 'atmaero_intel' [20:07, 17:38] -PASS -- TEST 'atmaero_control_p8_intel' [27:56, 01:45](2854 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [27:54, 01:08](2913 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:06, 01:11](2920 MB) - -PASS -- COMPILE 'atmaq_intel' [15:58, 13:23] - -PASS -- COMPILE 'atmaq_debug_intel' [11:42, 08:57] -PASS -- TEST 'regional_atmaq_debug_intel' [26:58, 00:52](4434 MB) +PASS -- COMPILE 's2swa_32bit_intel' [28:12, 27:38] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:55, 01:12](2975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:40, 11:38] +PASS -- TEST 'cpld_control_gfsv17_intel' [32:27, 02:28](1596 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:55, 01:32](1717 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:07, 01:45](848 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [32:28, 02:06](1572 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:21, 04:23] +PASS -- TEST 'cpld_debug_gfsv17_intel' [39:47, 02:36](1604 MB) + +PASS -- COMPILE 's2swa_intel' [27:10, 25:57] +PASS -- TEST 'cpld_control_p8_intel' [17:58, 01:23](3004 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:58, 01:16](3006 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:11, 01:33](3060 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:58, 00:59](3027 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:09, 01:38](3077 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:58, 01:04](3318 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:58, 01:19](3001 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:59, 01:09](2924 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:58, 01:24](3004 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:07, 05:18](3953 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [52:04, 05:47](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [17:58, 02:04](2970 MB) + +PASS -- COMPILE 's2sw_intel' [11:38, 10:27] +PASS -- TEST 'cpld_control_noaero_p8_intel' [33:29, 01:46](1588 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [33:29, 00:57](1634 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:36, 09:54] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [34:31, 01:55](1631 MB) + +PASS -- COMPILE 's2s_intel' [15:46, 15:00] +PASS -- TEST 'cpld_control_c48_intel' [29:20, 00:50](2659 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:48, 15:34] +PASS -- TEST 'cpld_control_p8_faster_intel' [28:19, 01:42](3004 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:03, 23:14] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:04, 01:23](1601 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:18, 00:46](901 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [03:14, 01:06](1582 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:46, 15:16] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:22, 01:10](1613 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [30:27, 29:35] +PASS -- TEST 'control_flake_intel' [08:02, 01:40](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:02, 01:04](522 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:56, 00:55](528 MB) +PASS -- TEST 'control_latlon_intel' [07:56, 00:52](525 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:55, 01:01](522 MB) +PASS -- TEST 'control_c48_intel' [07:50, 01:00](714 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:48, 00:55](715 MB) +PASS -- TEST 'control_c192_intel' [07:46, 01:14](641 MB) +PASS -- TEST 'control_c384_intel' [07:40, 02:06](954 MB) +PASS -- TEST 'control_c384gdas_intel' [07:16, 02:21](1095 MB) +PASS -- TEST 'control_stochy_intel' [06:59, 00:41](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:18, 00:34](333 MB) +PASS -- TEST 'control_lndp_intel' [06:51, 00:35](526 MB) +PASS -- TEST 'control_iovr4_intel' [06:49, 00:50](522 MB) +PASS -- TEST 'control_iovr5_intel' [06:32, 00:42](524 MB) +PASS -- TEST 'control_p8_intel' [05:54, 01:45](1500 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:50, 01:41](1506 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 01:43](1503 MB) +PASS -- TEST 'control_restart_p8_intel' [00:22, 01:37](692 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:48, 01:26](1489 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [00:22, 01:33](697 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:30, 01:23](1497 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:49, 01:39](1588 MB) +PASS -- TEST 'control_p8_lndp_intel' [04:19, 01:28](1499 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:17, 02:05](1555 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:14, 02:04](1515 MB) +PASS -- TEST 'merra2_thompson_intel' [04:13, 01:33](1510 MB) +PASS -- TEST 'regional_control_intel' [04:07, 00:48](611 MB) +PASS -- TEST 'regional_restart_intel' [56:10, 01:00](783 MB) +PASS -- TEST 'regional_decomp_intel' [03:00, 00:59](609 MB) +PASS -- TEST 'regional_2threads_intel' [02:19, 00:27](660 MB) +PASS -- TEST 'regional_noquilt_intel' [02:17, 01:29](1148 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [02:08, 01:17](609 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [01:38, 00:23](609 MB) +PASS -- TEST 'regional_wofs_intel' [00:57, 00:52](1578 MB) + +PASS -- COMPILE 'rrfs_intel' [20:04, 18:35] +PASS -- TEST 'rap_control_intel' [12:49, 01:31](921 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:00, 00:37](1099 MB) +PASS -- TEST 'rap_decomp_intel' [11:52, 01:45](916 MB) +PASS -- TEST 'rap_2threads_intel' [00:57, 01:19](1010 MB) +PASS -- TEST 'rap_restart_intel' [00:50, 02:32](787 MB) +PASS -- TEST 'rap_sfcdiff_intel' [00:48, 02:00](916 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [00:23, 01:26](914 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [51:06, 01:55](783 MB) +PASS -- TEST 'hrrr_control_intel' [00:23, 01:42](912 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [00:22, 01:51](915 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [00:23, 01:23](992 MB) +PASS -- TEST 'hrrr_control_restart_intel' [54:09, 01:05](741 MB) +PASS -- TEST 'rrfs_v1beta_intel' [00:19, 02:09](908 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [59:40, 01:31](1878 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:24, 01:22](1863 MB) + +PASS -- COMPILE 'csawmg_intel' [22:05, 20:59] +PASS -- TEST 'control_csawmg_intel' [57:21, 01:08](599 MB) +PASS -- TEST 'control_csawmgt_intel' [56:45, 00:24](601 MB) +PASS -- TEST 'control_ras_intel' [56:31, 00:42](558 MB) + +PASS -- COMPILE 'wam_intel' [18:00, 17:07] +PASS -- TEST 'control_wam_intel' [56:16, 00:54](272 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:50] +PASS -- TEST 'control_p8_faster_intel' [19:49, 01:26](1510 MB) +PASS -- TEST 'regional_control_faster_intel' [19:48, 00:56](611 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:41, 12:44] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:39, 00:48](689 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:39, 00:55](690 MB) +PASS -- TEST 'control_stochy_debug_intel' [15:39, 00:28](695 MB) +PASS -- TEST 'control_lndp_debug_intel' [15:39, 00:47](691 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:39, 01:22](729 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [15:39, 00:24](732 MB) +PASS -- TEST 'control_ras_debug_intel' [15:39, 00:39](704 MB) +PASS -- TEST 'control_diag_debug_intel' [15:39, 00:39](748 MB) +PASS -- TEST 'control_debug_p8_intel' [15:39, 00:35](1523 MB) +PASS -- TEST 'regional_debug_intel' [15:38, 00:55](630 MB) +PASS -- TEST 'rap_control_debug_intel' [15:39, 00:19](1073 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:39, 00:26](1071 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [15:39, 00:21](1072 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [55:55, 00:56](1075 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [55:55, 00:57](1074 MB) +PASS -- TEST 'rap_diag_debug_intel' [55:19, 01:28](1160 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [55:05, 00:28](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [54:47, 00:57](1080 MB) +PASS -- TEST 'rap_lndp_debug_intel' [54:17, 00:55](1076 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [54:09, 00:59](1074 MB) +PASS -- TEST 'rap_noah_debug_intel' [54:09, 01:07](1070 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [54:02, 01:00](1075 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [53:28, 00:52](1075 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [52:59, 01:06](1068 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [52:58, 01:09](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [52:41, 00:33](1080 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [52:32, 01:59](1081 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:49, 13:28] +PASS -- TEST 'control_wam_debug_intel' [52:28, 00:43](301 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:51, 13:45] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [52:28, 01:31](959 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [51:58, 02:29](791 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [51:38, 02:13](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [51:07, 02:11](850 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [50:58, 02:01](844 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [50:49, 01:36](785 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:16, 01:33](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:48, 00:22](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:43, 12:46] +PASS -- TEST 'conus13km_control_intel' [50:45, 01:19](1001 MB) +PASS -- TEST 'conus13km_2threads_intel' [46:38, 00:53](1006 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [46:19, 00:48](879 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:51, 12:23] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [50:30, 01:38](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:39, 04:35] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [48:30, 01:14](956 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [48:14, 00:31](950 MB) +PASS -- TEST 'conus13km_debug_intel' [48:13, 01:33](1041 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [47:59, 01:02](713 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [47:51, 01:13](1039 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [47:42, 00:25](1105 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:48, 09:01] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [47:38, 00:27](979 MB) + +PASS -- COMPILE 'hafsw_intel' [16:51, 12:40] +PASS -- TEST 'hafs_regional_atm_intel' [47:37, 01:46](617 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [47:34, 00:59](970 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [47:31, 01:44](660 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [47:24, 02:24](694 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [47:07, 02:22](714 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [46:10, 01:08](394 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [46:08, 02:07](403 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [45:51, 01:26](285 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [45:48, 02:45](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [45:37, 01:36](412 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [45:23, 00:50](415 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [45:19, 00:58](497 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [44:27, 00:26](312 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:38, 06:59] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:47, 01:29](499 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:45, 10:17] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [43:38, 01:04](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [43:29, 01:48](716 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:55, 17:39] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [43:25, 01:09](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:58, 19:40] +PASS -- TEST 'hafs_regional_docn_intel' [43:17, 01:58](664 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [43:13, 01:40](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [42:19, 00:46](881 MB) + +PASS -- COMPILE 'atml_intel' [14:48, 14:18] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [41:41, 02:22](1546 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [41:02, 02:07](1543 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [32:02, 01:21](748 MB) + +PASS -- COMPILE 'atmaero_intel' [12:42, 12:19] +PASS -- TEST 'atmaero_control_p8_intel' [40:51, 01:19](2853 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [40:49, 01:46](2912 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [40:48, 01:23](2922 MB) + +PASS -- COMPILE 'atmaq_intel' [13:48, 12:38] + +PASS -- COMPILE 'atmaq_debug_intel' [12:42, 10:38] +PASS -- TEST 'regional_atmaq_debug_intel' [40:45, 01:47](4435 MB) SYNOPSIS: -Starting Date/Time: 20240307 21:16:31 -Ending Date/Time: 20240307 22:59:22 -Total Time: 01h:43m:27s +Starting Date/Time: 20240404 18:14:35 +Ending Date/Time: 20240404 19:47:06 +Total Time: 01h:33m:18s Compiles Completed: 31/31 Tests Completed: 157/157 diff --git a/tests/parm/control_csawmg.nml.IN b/tests/parm/control_csawmg.nml.IN index 373c25683d..6729ed1031 100644 --- a/tests/parm/control_csawmg.nml.IN +++ b/tests/parm/control_csawmg.nml.IN @@ -69,11 +69,11 @@ mountain = @[MOUNTAIN] ncep_ic = .false. d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. do_sat_adj = .false. diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index a2b5b0b71b..b01ba5f205 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -73,11 +73,11 @@ mountain = @[MOUNTAIN] ncep_ic = .false. d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. consv_am = .false. diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index 75927577b9..3f77e6fd0f 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -73,11 +73,11 @@ mountain = @[MOUNTAIN] ncep_ic = .false. d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. consv_am = .false. diff --git a/tests/parm/ufs.configure.atm.IN b/tests/parm/ufs.configure.atm.IN index 8eb7b94dc7..3b6a305247 100644 --- a/tests/parm/ufs.configure.atm.IN +++ b/tests/parm/ufs.configure.atm.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: true +globalResourceControl: false # EARTH # EARTH_component_list: ATM @@ -15,7 +15,6 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 Diagnostic = 0 diff --git a/tests/parm/ufs.configure.atm_esmf.IN b/tests/parm/ufs.configure.atm_esmf.IN new file mode 100644 index 0000000000..8eb7b94dc7 --- /dev/null +++ b/tests/parm/ufs.configure.atm_esmf.IN @@ -0,0 +1,27 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# EARTH # +EARTH_component_list: ATM +EARTH_attributes:: + Verbosity = 0 +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 +:: + +# Run Sequence # +runSeq:: + ATM +:: diff --git a/tests/parm/ufs.configure.atm_lnd.IN b/tests/parm/ufs.configure.atm_lnd.IN index 586e873c15..de2991fcac 100644 --- a/tests/parm/ufs.configure.atm_lnd.IN +++ b/tests/parm/ufs.configure.atm_lnd.IN @@ -45,7 +45,7 @@ LND_attributes:: Verbosity = 1 Diagnostic = 0 mosaic_file = @[mosaic_file] - input_dir = @[lnd_input_dir] + input_dir = @[lnd_input_dir] ic_type = @[lnd_ic_type] layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs num_soil_levels = 4 @@ -67,7 +67,7 @@ LND_attributes:: surface_evap_resistance_option = 1 # not used, it is fixed to 4 in sfc_noahmp_drv.F90 glacier_option = 1 surface_thermal_roughness_option = 2 - output_freq = 3600 + output_freq = 3600 restart_freq = -1 calc_snet = @[CALC_SNET] initial_albedo = @[initial_albedo] @@ -96,10 +96,11 @@ DRIVER_attributes:: :: ALLCOMP_attributes:: - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 # required for data atmosphere configurations + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 # required for data atmosphere configurations ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.atmaero.IN b/tests/parm/ufs.configure.atmaero.IN index 0c20f20905..6c60333e07 100644 --- a/tests/parm/ufs.configure.atmaero.IN +++ b/tests/parm/ufs.configure.atmaero.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: true +globalResourceControl: false # EARTH # EARTH_component_list: ATM CHM @@ -15,7 +15,6 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 :: @@ -23,7 +22,6 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: diff --git a/tests/parm/ufs.configure.atmaero_esmf.IN b/tests/parm/ufs.configure.atmaero_esmf.IN new file mode 100644 index 0000000000..0c20f20905 --- /dev/null +++ b/tests/parm/ufs.configure.atmaero_esmf.IN @@ -0,0 +1,40 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# EARTH # +EARTH_component_list: ATM CHM +EARTH_attributes:: + Verbosity = 0 +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] +CHM_attributes:: + Verbosity = 0 +:: + +# Run Sequence # +runSeq:: + @@[coupling_interval_sec] + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + @ +:: diff --git a/tests/parm/ufs.configure.atmw.IN b/tests/parm/ufs.configure.atmw.IN index 8434d5a7cb..bd1c554ecc 100644 --- a/tests/parm/ufs.configure.atmw.IN +++ b/tests/parm/ufs.configure.atmw.IN @@ -66,14 +66,14 @@ MED_attributes:: ATM_model = @[atm_model] WAV_model = @[wav_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.hafs_atm_docn.IN b/tests/parm/ufs.configure.hafs_atm_docn.IN index 9a0cd26b3e..5f5aebefc0 100644 --- a/tests/parm/ufs.configure.hafs_atm_docn.IN +++ b/tests/parm/ufs.configure.hafs_atm_docn.IN @@ -80,10 +80,11 @@ ALLCOMP_attributes:: ATM_model = @[atm_model] OCN_model = @[ocn_model] MED_model = cmeps - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs diff --git a/tests/parm/ufs.configure.hafs_atm_ocn.IN b/tests/parm/ufs.configure.hafs_atm_ocn.IN index 955b0c6bd2..04404e63a4 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn.IN @@ -109,10 +109,11 @@ ALLCOMP_attributes:: ATM_model = @[atm_model] OCN_model = @[ocn_model] MED_model = cmeps - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN index 20ae2f0ae5..a4398c369b 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN @@ -122,10 +122,11 @@ ALLCOMP_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] MED_model = cmeps - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN index 894f510fb1..dd24683169 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN @@ -126,10 +126,11 @@ ALLCOMP_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] MED_model = cmeps - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN index 1ca0848395..673d864573 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -113,9 +113,10 @@ ALLCOMP_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] MED_model = cmeps - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs diff --git a/tests/parm/ufs.configure.hafs_atm_wav.IN b/tests/parm/ufs.configure.hafs_atm_wav.IN index e925a53478..b57d6c685d 100644 --- a/tests/parm/ufs.configure.hafs_atm_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_wav.IN @@ -84,10 +84,11 @@ ALLCOMP_attributes:: ATM_model = @[atm_model] WAV_model = @[wav_model] MED_model = cmeps - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs diff --git a/tests/parm/ufs.configure.leapfrog_atm_wav.IN b/tests/parm/ufs.configure.leapfrog_atm_wav.IN index c4b6055fd1..fe33f5da9f 100644 --- a/tests/parm/ufs.configure.leapfrog_atm_wav.IN +++ b/tests/parm/ufs.configure.leapfrog_atm_wav.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: true +globalResourceControl: false # EARTH # EARTH_component_list: ATM WAV @@ -15,7 +15,6 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -24,7 +23,6 @@ ATM_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] -WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 :: diff --git a/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN b/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN new file mode 100644 index 0000000000..c4b6055fd1 --- /dev/null +++ b/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN @@ -0,0 +1,41 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# EARTH # +EARTH_component_list: ATM WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 +:: + + + +# Run Sequence # +runSeq:: + @@[coupling_interval_sec] + ATM + ATM -> WAV + WAV + @ +:: diff --git a/tests/parm/ufs.configure.s2s.IN b/tests/parm/ufs.configure.s2s.IN index 995d3bd750..3efa42e6fe 100644 --- a/tests/parm/ufs.configure.s2s.IN +++ b/tests/parm/ufs.configure.s2s.IN @@ -91,15 +91,15 @@ MED_attributes:: ICE_model = @[ice_model] OCN_model = @[ocn_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.s2s_aoflux_esmf.IN b/tests/parm/ufs.configure.s2s_aoflux_esmf.IN index 3b71b40aee..d1be7c7b86 100644 --- a/tests/parm/ufs.configure.s2s_aoflux_esmf.IN +++ b/tests/parm/ufs.configure.s2s_aoflux_esmf.IN @@ -96,7 +96,6 @@ MED_attributes:: ICE_model = @[ice_model] OCN_model = @[ocn_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] aoflux_grid = 'agrid' aoflux_code = 'ccpp' aoflux_ccpp_suite = 'FV3_sfc_ocean' @@ -112,9 +111,10 @@ MED_attributes:: :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.s2s_esmf.IN b/tests/parm/ufs.configure.s2s_esmf.IN index 6a0234e120..bf17be2a5e 100644 --- a/tests/parm/ufs.configure.s2s_esmf.IN +++ b/tests/parm/ufs.configure.s2s_esmf.IN @@ -95,15 +95,15 @@ MED_attributes:: ICE_model = @[ice_model] OCN_model = @[ocn_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.s2sa.IN b/tests/parm/ufs.configure.s2sa.IN index 0d3d3f313f..419a11f6c5 100644 --- a/tests/parm/ufs.configure.s2sa.IN +++ b/tests/parm/ufs.configure.s2sa.IN @@ -102,15 +102,15 @@ MED_attributes:: ICE_model = @[ice_model] OCN_model = @[ocn_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.s2sa_esmf.IN b/tests/parm/ufs.configure.s2sa_esmf.IN index 1cfe5047e9..bac867307e 100644 --- a/tests/parm/ufs.configure.s2sa_esmf.IN +++ b/tests/parm/ufs.configure.s2sa_esmf.IN @@ -107,15 +107,15 @@ MED_attributes:: ICE_model = @[ice_model] OCN_model = @[ocn_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.s2sw.IN b/tests/parm/ufs.configure.s2sw.IN index 885e8c3f22..95f35864bf 100644 --- a/tests/parm/ufs.configure.s2sw.IN +++ b/tests/parm/ufs.configure.s2sw.IN @@ -108,15 +108,15 @@ MED_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.s2sw_esmf.IN b/tests/parm/ufs.configure.s2sw_esmf.IN index 47c08442dd..e62fca65af 100644 --- a/tests/parm/ufs.configure.s2sw_esmf.IN +++ b/tests/parm/ufs.configure.s2sw_esmf.IN @@ -112,14 +112,14 @@ MED_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.s2sw_fast_esmf.IN b/tests/parm/ufs.configure.s2sw_fast_esmf.IN index 5c4c17a2a6..6338a000c8 100644 --- a/tests/parm/ufs.configure.s2sw_fast_esmf.IN +++ b/tests/parm/ufs.configure.s2sw_fast_esmf.IN @@ -112,14 +112,14 @@ MED_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.s2swa.IN b/tests/parm/ufs.configure.s2swa.IN index 5960da0118..7f6627ca37 100644 --- a/tests/parm/ufs.configure.s2swa.IN +++ b/tests/parm/ufs.configure.s2swa.IN @@ -118,14 +118,14 @@ MED_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.s2swa_esmf.IN b/tests/parm/ufs.configure.s2swa_esmf.IN index 69a4851dec..69156317e3 100644 --- a/tests/parm/ufs.configure.s2swa_esmf.IN +++ b/tests/parm/ufs.configure.s2swa_esmf.IN @@ -124,14 +124,14 @@ MED_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/parm/ufs.configure.s2swa_fast_esmf.IN b/tests/parm/ufs.configure.s2swa_fast_esmf.IN index cba72ec139..ce8c6607d3 100644 --- a/tests/parm/ufs.configure.s2swa_fast_esmf.IN +++ b/tests/parm/ufs.configure.s2swa_fast_esmf.IN @@ -124,15 +124,15 @@ MED_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] diff --git a/tests/rt.conf b/tests/rt.conf index 854c935c7a..0f99745539 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -148,6 +148,10 @@ RUN | control_csawmg | - noaacloud RUN | control_csawmgt | - noaacloud | baseline | RUN | control_ras | - noaacloud acorn | baseline | +COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | + hera hercules | fv3 | +RUN | control_csawmg | + hera hercules | baseline | +RUN | control_csawmgt | + hera hercules | baseline | + # Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 | RUN | control_wam | - noaacloud | baseline | @@ -185,6 +189,11 @@ RUN | rrfs_v1beta_debug | - noaacloud RUN | rap_clm_lake_debug | - noaacloud | baseline | RUN | rap_flake_debug | - noaacloud | baseline | RUN | gnv1_c96_no_nest_debug | - noaacloud | baseline | +### DEBUG ATM tests ### +COMPILE | atm_debug_dyn32 | gnu | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | + hera hercules | fv3 | +RUN | control_csawmg_debug | + hera hercules | baseline | +RUN | control_csawmgt_debug | + hera hercules | baseline | + COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 | RUN | control_wam_debug | - noaacloud hercules | baseline | @@ -365,7 +374,7 @@ RUN | gnv1_c96_no_nest_debug | + hera hercules COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | control_wam_debug | + hera | baseline | +RUN | control_wam_debug | + hercules | baseline | ### 32-bit physics tests ### @@ -404,13 +413,13 @@ RUN | rap_control_dyn64_phy32_debug | + hera hercules ### S2S tests ### COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -RUN | cpld_control_p8 | + hera | baseline | +# RUN | cpld_control_p8 | + hera | baseline | COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | RUN | cpld_control_nowave_noaero_p8 | + hera | baseline | COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -RUN | cpld_debug_p8 | + hera | baseline | +# RUN | cpld_debug_p8 | + hera | baseline | # Unstructured WW3 COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera hercules | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index fd6464c60f..e05e8d4636 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -87,7 +87,7 @@ update_rtconf() { RT_COMPILER_IN=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') if [[ ${MACHINES} == '' ]]; then compile_line=$line - COMPILE_LINE_USED=false + COMPILE_LINE_USED=false elif [[ ${MACHINES} == -* ]]; then [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line; COMPILE_LINE_USED=false elif [[ ${MACHINES} == +* ]]; then @@ -112,7 +112,7 @@ update_rtconf() { if [[ $TEST_IDX != -1 ]]; then if [[ $COMPILE_LINE_USED == false ]]; then - echo -en '\n' >> $RT_TEMP_CONF + echo -en '\n' >> $RT_TEMP_CONF echo "$compile_line" >> $RT_TEMP_CONF COMPILE_LINE_USED=true fi @@ -135,7 +135,7 @@ update_rtconf() { fi fi echo "$line" >> $RT_TEMP_CONF - fi + fi fi fi done < "$TESTS_FILE" @@ -610,20 +610,26 @@ echo "Machine: " $MACHINE_ID " Account: " $ACCNR if [[ $MACHINE_ID = wcoss2 ]]; then - module load ecflow/5.6.0.13 + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.6.0.13 + fi module load intel/19.1.3.304 python/3.8.6 - ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh - export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir - export ECF_COMDIR=${PATHRT}/ecf_comdir - rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR} - mkdir -p ${ECF_OUTPUTDIR} - mkdir -p ${ECF_COMDIR} + if [[ "${ECFLOW:-false}" == true ]] ; then + ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh + export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir + export ECF_COMDIR=${PATHRT}/ecf_comdir + rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR} + mkdir -p ${ECF_OUTPUTDIR} + mkdir -p ${ECF_COMDIR} + fi export colonifnco=":output" # hack DISKNM=/lfs/h2/emc/nems/noscrub/emc.nems/RT QUEUE=dev COMPILE_QUEUE=dev - ROCOTO_SCHEDULER=pbs + if [[ "${ROCOTO:-false}" == true ]] ; then + ROCOTO_SCHEDULER=pbs + fi PARTITION= STMP=/lfs/h2/emc/ptmp PTMP=/lfs/h2/emc/ptmp @@ -631,20 +637,26 @@ if [[ $MACHINE_ID = wcoss2 ]]; then elif [[ $MACHINE_ID = acorn ]]; then - module load ecflow/5.6.0.13 + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.6.0.13 + fi module load intel/19.1.3.304 python/3.8.6 - ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh - export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir - export ECF_COMDIR=${PATHRT}/ecf_comdir - rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR} - mkdir -p ${ECF_OUTPUTDIR} - mkdir -p ${ECF_COMDIR} + if [[ "${ECFLOW:-false}" == true ]] ; then + ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh + export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir + export ECF_COMDIR=${PATHRT}/ecf_comdir + rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR} + mkdir -p ${ECF_OUTPUTDIR} + mkdir -p ${ECF_COMDIR} + fi export colonifnco=":output" # hack DISKNM=/lfs/h1/emc/nems/noscrub/emc.nems/RT QUEUE=dev COMPILE_QUEUE=dev - ROCOTO_SCHEDULER=pbs + if [[ "${ROCOTO:-false}" == true ]] ; then + ROCOTO_SCHEDULER=pbs + fi PARTITION= STMP=/lfs/h2/emc/ptmp PTMP=/lfs/h2/emc/ptmp @@ -652,13 +664,14 @@ elif [[ $MACHINE_ID = acorn ]]; then elif [[ $MACHINE_ID = gaea ]]; then - module use /ncrc/proj/epic/rocoto/modulefiles - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - + if [[ "${ROCOTO:-false}" == true ]] ; then + module use /ncrc/proj/epic/rocoto/modulefiles + module load rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi module load PrgEnv-intel/8.3.3 module load intel-classic/2023.1.0 @@ -666,29 +679,36 @@ elif [[ $MACHINE_ID = gaea ]]; then module load python/3.9.12 module use /ncrc/proj/epic/spack-stack/modulefiles module load gcc/12.2.0 - module load ecflow/5.8.4 - ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + fi DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT QUEUE=normal COMPILE_QUEUE=normal PARTITION=c5 - STMP=/gpfs/f5/epic/scratch - PTMP=/gpfs/f5/epic/scratch + dprefix=${dprefix:-/gpfs/f5/$ACCNR/scratch/$USER} + STMP=${STMP:-$dprefix/RT_BASELINE} + PTMP=${PTMP:-$dprefix/RT_RUNDIRS} SCHEDULER=slurm elif [[ $MACHINE_ID = hera ]]; then - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi - module load ecflow/5.5.3 - ECFLOW_START=ecflow_start.sh + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.11.4 + ECFLOW_START=ecflow_start.sh + fi QUEUE=batch COMPILE_QUEUE=batch @@ -707,16 +727,20 @@ elif [[ $MACHINE_ID = orion ]]; then module load gcc/10.2.0 module load python/3.9.2 - module load contrib rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm + if [[ "${ROCOTO:-false}" == true ]] ; then + module load contrib rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles - module load ecflow/5.8.4 - ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + fi QUEUE=batch COMPILE_QUEUE=batch @@ -730,16 +754,20 @@ elif [[ $MACHINE_ID = orion ]]; then elif [[ $MACHINE_ID = hercules ]]; then - module load contrib rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm + if [[ "${ROCOTO:-false}" == true ]] ; then + module load contrib rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles - module load ecflow/5.8.4 - ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + fi QUEUE=batch COMPILE_QUEUE=batch @@ -762,14 +790,18 @@ elif [[ $MACHINE_ID = jet ]]; then exit 1 fi - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi - module load ecflow/5.11.4 - ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.11.4 + ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh + fi module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core module load stack-intel/2021.5.0 @@ -787,18 +819,24 @@ elif [[ $MACHINE_ID = jet ]]; then elif [[ $MACHINE_ID = s4 ]]; then - module load rocoto/1.3.2 - module load ecflow/5.6.0 + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto/1.3.2 + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.6.0 + fi module load miniconda/3.8-s4 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm module use /data/prod/jedi/spack-stack/modulefiles - module load ecflow/5.8.4 - ECFLOW_START=/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + ECFLOW_START=/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + fi QUEUE=s4 COMPILE_QUEUE=s4 @@ -813,17 +851,23 @@ elif [[ $MACHINE_ID = s4 ]]; then elif [[ $MACHINE_ID = derecho ]]; then - module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles - module load rocoto + if [[ "${ROCOTO:-false}" == true ]] ; then + module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles + module load rocoto + fi module use /glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles - module load ecflow/5.8.4 + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + fi module unload ncarcompilers module use /glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core module load stack-intel/2021.10.0 module load stack-python/3.10.8 # export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages - ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) + if [[ "${ECFLOW:-false}" == true ]] ; then + ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + fi QUEUE=main COMPILE_QUEUE=main @@ -836,15 +880,19 @@ elif [[ $MACHINE_ID = derecho ]]; then cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=pbspro + if [[ "${ROCOTO:-false}" == true ]] ; then + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=pbspro + fi elif [[ $MACHINE_ID = stampede ]]; then export PYTHONPATH= - ECFLOW_START= + if [[ "${ECFLOW:-false}" == true ]] ; then + ECFLOW_START= + fi QUEUE=skx-normal COMPILE_QUEUE=skx-dev PARTITION= @@ -859,7 +907,9 @@ elif [[ $MACHINE_ID = stampede ]]; then elif [[ $MACHINE_ID = expanse ]]; then export PYTHONPATH= - ECFLOW_START= + if [[ "${ECFLOW:-false}" == true ]] ; then + ECFLOW_START= + fi QUEUE=compute COMPILE_QUEUE=shared PARTITION= @@ -873,12 +923,14 @@ elif [[ $MACHINE_ID = expanse ]]; then export PATH=/contrib/EPIC/bin:$PATH module use /apps/modules/modulefiles - module load rocoto/1.3.3 + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto/1.3.3 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + fi QUEUE=batch COMPILE_QUEUE=batch @@ -935,7 +987,7 @@ if [[ "$CREATE_BASELINE" == false ]] ; then fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101} -INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624 +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} shift $((OPTIND-1)) diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 238f8ed695..a8fb423529 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -438,7 +438,7 @@ rocoto_create_compile_task() { cat << EOF >> $ROCOTO_XML - &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} > &LOG;/compile_${COMPILE_ID}.log + &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} 2>&1 | tee &LOG;/compile_${COMPILE_ID}.log compile_${COMPILE_ID} ${ACCNR} ${COMPILE_QUEUE} @@ -449,7 +449,7 @@ EOF --clusters=es eslogin_c5 EOF - else + elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then cat << EOF >> $ROCOTO_XML ${PARTITION} EOF @@ -482,7 +482,7 @@ rocoto_create_run_task() { cat << EOF >> $ROCOTO_XML $DEP_STRING - &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > &LOG;/run_${TEST_ID}${RT_SUFFIX}.log + &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} 2>&1 | tee &LOG;/run_${TEST_ID}${RT_SUFFIX}.log ${TEST_ID}${RT_SUFFIX} ${ACCNR} ${ROCOTO_NODESIZE:+$ROCOTO_NODESIZE} @@ -493,7 +493,7 @@ EOF --clusters=${PARTITION} --partition=batch EOF - else + elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then cat << EOF >> $ROCOTO_XML ${QUEUE} ${PARTITION} @@ -503,8 +503,7 @@ EOF cat << EOF >> $ROCOTO_XML ${NODES}:ppn=${TPN} 00:${WLCLK}:00 - &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.out - &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.err + &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.log ${NATIVE} EOF diff --git a/tests/test_changes.list b/tests/test_changes.list index e9271bd81c..25c9209077 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,2 +1,5 @@ -cpld_control_c48 intel -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel +hafs_regional_atm_ocn intel +hafs_regional_docn intel +hafs_regional_docn_oisst intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index 3c33bc75f7..f9e0a09b1e 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -66,7 +66,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export UFS_CONFIGURE=ufs.configure.atmaero.IN +export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN export atm_model='fv3' export chm_model='gocart' diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad index 0c57cc52e0..05ac7156b7 100644 --- a/tests/tests/atmaero_control_p8_rad +++ b/tests/tests/atmaero_control_p8_rad @@ -65,7 +65,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export UFS_CONFIGURE=ufs.configure.atmaero.IN +export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN export atm_model='fv3' export chm_model='gocart' diff --git a/tests/tests/atmaero_control_p8_rad_micro b/tests/tests/atmaero_control_p8_rad_micro index f3908676ff..c2a4171008 100644 --- a/tests/tests/atmaero_control_p8_rad_micro +++ b/tests/tests/atmaero_control_p8_rad_micro @@ -65,7 +65,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export UFS_CONFIGURE=ufs.configure.atmaero.IN +export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN export atm_model='fv3' export chm_model='gocart' diff --git a/tests/tests/atmwav_control_noaero_p8 b/tests/tests/atmwav_control_noaero_p8 index 2dde79ca1a..9924a60ff9 100644 --- a/tests/tests/atmwav_control_noaero_p8 +++ b/tests/tests/atmwav_control_noaero_p8 @@ -77,7 +77,6 @@ export med_model=cmeps export atm_model=fv3 export wav_model=ww3 -export ATMTILESIZE=`expr $NPX - 1` export WW3_MULTIGRID=false export WW3_MODDEF=mod_def.glo_1deg export MESH_WAV=mesh.glo_1deg.nc diff --git a/tests/tests/control_c384gdas_wav b/tests/tests/control_c384gdas_wav index c6f768ae95..3669edccb0 100644 --- a/tests/tests/control_c384gdas_wav +++ b/tests/tests/control_c384gdas_wav @@ -97,7 +97,7 @@ export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export CPL=.true. export CPLWAV=.true. -export UFS_CONFIGURE="ufs.configure.leapfrog_atm_wav.IN" +export UFS_CONFIGURE="ufs.configure.leapfrog_atm_wav_esmf.IN" export atm_model='fv3' export wav_model='ww3' export WW3OUTPUTTYPE=' 1' diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 810ea89113..722fa03662 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -93,7 +93,6 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=025 export ICERES=0.25 diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d index 47324a0cb8..6aa2ce2f5f 100644 --- a/tests/tests/cpld_bmark_p8_35d +++ b/tests/tests/cpld_bmark_p8_35d @@ -49,7 +49,6 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=025 export ICERES=0.25 diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 5dc87183b2..1aec6e3e71 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -87,7 +87,6 @@ export NPX=193 export NPY=193 export IMO=768 export JMO=384 -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=050 export ICERES=0.50 @@ -142,4 +141,3 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi - diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index 1b8fd090af..cf1484d37e 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -76,7 +76,6 @@ export NPX=49 export NPY=49 export IMO=192 export JMO=94 -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=500 export ICERES=5.00 diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index fcede8710c..fa7be3c086 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -96,5 +96,5 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera && $RT_COMPILER = gnu ]] || [[ $MACHINE_ID = jet ]]; then - WLCLK=40 + WLCLK=50 fi diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index 2ae3534b78..0d71a41f5c 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -97,7 +97,6 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=025 export ICERES=0.25 diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index 57f9459c64..54415221ac 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -89,7 +89,6 @@ export NPX=193 export NPY=193 export IMO=768 export JMO=384 -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=050 export ICERES=0.50 diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index eeb2626a8f..a9e891519d 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -91,7 +91,6 @@ export NPX=49 export NPY=49 export IMO=192 export JMO=94 -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=500 export ICERES=5.00 diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index ea963defc4..94aa503d8f 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -88,7 +88,6 @@ export NPX=49 export NPY=49 export IMO=192 export JMO=94 -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=500 export ICERES=5.00 diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 666598c1e7..17fcea688a 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -97,6 +97,7 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 + WLCLK=45 elif [[ $MACHINE_ID = gaea ]]; then TPN=16 fi